react-feather#AlertTriangle TypeScript Examples
The following examples show how to use
react-feather#AlertTriangle.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.tsx From cuiswap with GNU General Public License v3.0 | 6 votes |
export function TransactionErrorContent({ message, onDismiss }: { message: string; onDismiss: () => void }) {
const theme = useContext(ThemeContext)
return (
<Wrapper>
<Section>
<RowBetween>
<Text fontWeight={500} fontSize={20}>
Error
</Text>
<CloseIcon onClick={onDismiss} />
</RowBetween>
<AutoColumn style={{ marginTop: 20, padding: '2rem 0' }} gap="24px" justify="center">
<AlertTriangle color={theme.red1} style={{ strokeWidth: 1.5 }} size={64} />
<Text fontWeight={500} fontSize={16} color={theme.red1} style={{ textAlign: 'center', width: '85%' }}>
{message}
</Text>
</AutoColumn>
</Section>
<BottomSection gap="12px">
<ButtonPrimary onClick={onDismiss}>Dismiss</ButtonPrimary>
</BottomSection>
</Wrapper>
)
}
Example #2
Source File: styleds.tsx From panther-frontend-dex with GNU General Public License v3.0 | 6 votes |
export function SwapCallbackError({ error }: { error: string }) {
return (
<SwapCallbackErrorInner>
<SwapCallbackErrorInnerAlertTriangle>
<AlertTriangle size={24} />
</SwapCallbackErrorInnerAlertTriangle>
<p>{error}</p>
</SwapCallbackErrorInner>
)
}
Example #3
Source File: styleds.tsx From pancake-swap-testnet with MIT License | 6 votes |
export function SwapCallbackError({ error }: { error: string }) {
return (
<SwapCallbackErrorInner>
<SwapCallbackErrorInnerAlertTriangle>
<AlertTriangle size={24} />
</SwapCallbackErrorInnerAlertTriangle>
<p>{error}</p>
</SwapCallbackErrorInner>
)
}
Example #4
Source File: styleds.tsx From forward.swaps with GNU General Public License v3.0 | 6 votes |
export function SwapCallbackError({ error }: { error: string }) {
return (
<SwapCallbackErrorInner>
<SwapCallbackErrorInnerAlertTriangle>
<AlertTriangle size={24} />
</SwapCallbackErrorInnerAlertTriangle>
<p>{error}</p>
</SwapCallbackErrorInner>
)
}
Example #5
Source File: styleds.tsx From pancake-swap-exchange-testnet with GNU General Public License v3.0 | 6 votes |
export function SwapCallbackError({ error }: { error: string }) {
return (
<SwapCallbackErrorInner>
<SwapCallbackErrorInnerAlertTriangle>
<AlertTriangle size={24} />
</SwapCallbackErrorInnerAlertTriangle>
<p>{error}</p>
</SwapCallbackErrorInner>
)
}
Example #6
Source File: index.tsx From sushiswap-exchange with GNU General Public License v3.0 | 6 votes |
export function TransactionErrorContent({ message, onDismiss }: { message: string; onDismiss: () => void }) {
const theme = useContext(ThemeContext)
return (
<Wrapper>
<Section>
<RowBetween>
<Text fontWeight={500} fontSize={20}>
Error
</Text>
<CloseIcon onClick={onDismiss} />
</RowBetween>
<AutoColumn style={{ marginTop: 20, padding: '2rem 0' }} gap="24px" justify="center">
<AlertTriangle color={theme.red1} style={{ strokeWidth: 1.5 }} size={64} />
<Text fontWeight={500} fontSize={16} color={theme.red1} style={{ textAlign: 'center', width: '85%' }}>
{message}
</Text>
</AutoColumn>
</Section>
<BottomSection gap="12px">
<ButtonPrimary onClick={onDismiss}>Dismiss</ButtonPrimary>
</BottomSection>
</Wrapper>
)
}
Example #7
Source File: TransactionErrorContent.tsx From pancake-swap-exchange-testnet with GNU General Public License v3.0 | 6 votes |
TransactionErrorContent = ({ message, onDismiss }: TransactionErrorContentProps) => {
const theme = useContext(ThemeContext)
return (
<Wrapper>
<Section>
<ContentHeader onDismiss={onDismiss}>Error</ContentHeader>
<AutoColumn style={{ marginTop: 20, padding: '2rem 0' }} gap="24px" justify="center">
<AlertTriangle color={theme.colors.failure} style={{ strokeWidth: 1.5 }} size={64} />
<Text fontSize="16px" color="failure" style={{ textAlign: 'center', width: '85%' }}>
{message}
</Text>
</AutoColumn>
</Section>
<BottomSection gap="12px">
<Button onClick={onDismiss}>Dismiss</Button>
</BottomSection>
</Wrapper>
)
}
Example #8
Source File: styleds.tsx From mozartfinance-swap-interface with GNU General Public License v3.0 | 6 votes |
export function SwapCallbackError({ error }: { error: string }) {
return (
<SwapCallbackErrorInner>
<SwapCallbackErrorInnerAlertTriangle>
<AlertTriangle size={24} />
</SwapCallbackErrorInnerAlertTriangle>
<p>{error}</p>
</SwapCallbackErrorInner>
)
}
Example #9
Source File: URLWarning.tsx From luaswap-interface with GNU General Public License v3.0 | 6 votes |
export default function URLWarning() {
const toggleURLWarning = useURLWarningToggle()
const showURLWarning = useURLWarningVisible()
return isMobile ? (
<PhishAlert isActive={showURLWarning}>
<div style={{ display: 'flex' }}>
<AlertTriangle style={{ marginRight: 6 }} size={12} /> Make sure the URL is
<code style={{ padding: '0 4px', display: 'inline', fontWeight: 'bold' }}>app.luaswap.org</code>
</div>
<StyledClose size={12} onClick={toggleURLWarning} />
</PhishAlert>
) : window.location.hostname === 'app.luaswap.org' ? (
<PhishAlert isActive={showURLWarning}>
<div style={{ display: 'flex' }}>
<AlertTriangle style={{ marginRight: 6 }} size={12} /> Always make sure the URL is
<code style={{ padding: '0 4px', display: 'inline', fontWeight: 'bold' }}>app.luaswap.org</code> - bookmark it
to be safe.
</div>
<StyledClose size={12} onClick={toggleURLWarning} />
</PhishAlert>
) : null
}
Example #10
Source File: TransactionErrorContent.tsx From mozartfinance-swap-interface with GNU General Public License v3.0 | 6 votes |
TransactionErrorContent = ({ message, onDismiss }: TransactionErrorContentProps) => {
const theme = useContext(ThemeContext)
return (
<Wrapper>
<Section>
<ContentHeader onDismiss={onDismiss}>Error</ContentHeader>
<AutoColumn style={{ marginTop: 20, padding: '2rem 0' }} gap="24px" justify="center">
<AlertTriangle color={theme.colors.failure} style={{ strokeWidth: 1.5 }} size={64} />
<Text fontSize="16px" color="failure" style={{ textAlign: 'center', width: '85%' }}>
{message}
</Text>
</AutoColumn>
</Section>
<BottomSection gap="12px">
<Button onClick={onDismiss}>Dismiss</Button>
</BottomSection>
</Wrapper>
)
}
Example #11
Source File: styleds.tsx From goose-frontend-amm with GNU General Public License v3.0 | 6 votes |
export function SwapCallbackError({ error }: { error: string }) {
return (
<SwapCallbackErrorInner>
<SwapCallbackErrorInnerAlertTriangle>
<AlertTriangle size={24} />
</SwapCallbackErrorInnerAlertTriangle>
<p>{error}</p>
</SwapCallbackErrorInner>
)
}
Example #12
Source File: styleds.tsx From limit-orders-lib with GNU General Public License v3.0 | 6 votes |
export function SwapCallbackError({ error }: { error: string }) {
return (
<SwapCallbackErrorInner>
<SwapCallbackErrorInnerAlertTriangle>
<AlertTriangle size={24} />
</SwapCallbackErrorInnerAlertTriangle>
<p style={{ wordBreak: "break-word" }}>{error}</p>
</SwapCallbackErrorInner>
);
}
Example #13
Source File: index.tsx From luaswap-interface with GNU General Public License v3.0 | 6 votes |
export function TransactionErrorContent({ message, onDismiss }: { message: string; onDismiss: () => void }) {
const theme = useContext(ThemeContext)
return (
<Wrapper>
<Section>
<RowBetween>
<Text fontWeight={500} fontSize={20}>
Error
</Text>
<CloseIcon onClick={onDismiss} />
</RowBetween>
<AutoColumn style={{ marginTop: 20, padding: '2rem 0' }} gap="24px" justify="center">
<AlertTriangle color={theme.red1} style={{ strokeWidth: 1.5 }} size={64} />
<Text fontWeight={500} fontSize={16} color={theme.red1} style={{ textAlign: 'center', width: '85%' }}>
{message}
</Text>
</AutoColumn>
</Section>
<BottomSection gap="12px">
<ButtonPrimary onClick={onDismiss}>Dismiss</ButtonPrimary>
</BottomSection>
</Wrapper>
)
}
Example #14
Source File: styleds.tsx From dyp with Do What The F*ck You Want To Public License | 6 votes |
export function SwapCallbackError({ error }: { error: string }) {
return (
<SwapCallbackErrorInner>
<SwapCallbackErrorInnerAlertTriangle>
<AlertTriangle size={24} />
</SwapCallbackErrorInnerAlertTriangle>
<p>{error}</p>
</SwapCallbackErrorInner>
)
}
Example #15
Source File: BetaWarningBanner.tsx From interface-v2 with GNU General Public License v3.0 | 6 votes |
BetaWarningBanner: React.FC = () => {
const classes = useStyles();
const [showBanner, setShowBanner] = useState(true);
return (
<>
{showBanner && (
<Box className={classes.warningBanner}>
<AlertTriangle size={20} />
<Typography variant='caption'>
This site is in beta. By using this software, you understand,
acknowledge and accept that Quickswap and/or the underlying software
are provided “as is” and “as available” basis and without warranties
or representations of any kind either expressed or implied
</Typography>
<Box
onClick={() => setShowBanner(false)}
className={classes.closeBanner}
>
<XCircle size={20} />
</Box>
</Box>
)}
</>
);
}
Example #16
Source File: URLWarning.tsx From sybil-interface with GNU General Public License v3.0 | 6 votes |
export default function URLWarning() {
const toggleURLWarning = useURLWarningToggle()
const showURLWarning = useURLWarningVisible()
return isMobile ? (
<PhishAlert isActive={showURLWarning}>
<div style={{ display: 'flex' }}>
<AlertTriangle style={{ marginRight: 6 }} size={12} /> Make sure the URL is
<code style={{ padding: '0 4px', display: 'inline', fontWeight: 'bold' }}>app.uniswap.org</code>
</div>
<StyledClose size={12} onClick={toggleURLWarning} />
</PhishAlert>
) : window.location.hostname === 'app.uniswap.org' ? (
<PhishAlert isActive={showURLWarning}>
<div style={{ display: 'flex' }}>
<AlertTriangle style={{ marginRight: 6 }} size={12} /> Always make sure the URL is
<code style={{ padding: '0 4px', display: 'inline', fontWeight: 'bold' }}>app.uniswap.org</code> - bookmark it
to be safe.
</div>
<StyledClose size={12} onClick={toggleURLWarning} />
</PhishAlert>
) : null
}
Example #17
Source File: index.tsx From dyp with Do What The F*ck You Want To Public License | 6 votes |
export function TransactionErrorContent({ message, onDismiss }: { message: string; onDismiss: () => void }) {
const theme = useContext(ThemeContext)
return (
<Wrapper>
<Section>
<RowBetween>
<Text fontWeight={500} fontSize={20}>
Error
</Text>
<CloseIcon onClick={onDismiss} />
</RowBetween>
<AutoColumn style={{ marginTop: 20, padding: '2rem 0' }} gap="24px" justify="center">
<AlertTriangle color={theme.red1} style={{ strokeWidth: 1.5 }} size={64} />
<Text fontWeight={500} fontSize={16} color={theme.red1} style={{ textAlign: 'center', width: '85%' }}>
{message}
</Text>
</AutoColumn>
</Section>
<BottomSection gap="12px">
<ButtonPrimary onClick={onDismiss}>Dismiss</ButtonPrimary>
</BottomSection>
</Wrapper>
)
}
Example #18
Source File: index.tsx From sybil-interface with GNU General Public License v3.0 | 6 votes |
export function TransactionErrorContent({
message,
onDismiss,
}: {
message: string
onDismiss: () => void
}): JSX.Element {
const theme = useContext(ThemeContext)
return (
<Wrapper>
<Section>
<RowBetween>
<Text fontWeight={500} fontSize={20}>
Error
</Text>
<CloseIcon onClick={onDismiss} />
</RowBetween>
<AutoColumn style={{ marginTop: 20, padding: '2rem 0' }} gap="24px" justify="center">
<AlertTriangle color={theme.red1} style={{ strokeWidth: 1.5 }} size={64} />
<Text fontWeight={500} fontSize={16} color={theme.red1} style={{ textAlign: 'center', width: '85%' }}>
{message}
</Text>
</AutoColumn>
</Section>
<BottomSection gap="12px">
<ButtonPrimary onClick={onDismiss}>Dismiss</ButtonPrimary>
</BottomSection>
</Wrapper>
)
}
Example #19
Source File: index.tsx From cheeseswap-interface with GNU General Public License v3.0 | 6 votes |
export function TransactionErrorContent({ message, onDismiss }: { message: string; onDismiss: () => void }) {
const theme = useContext(ThemeContext)
return (
<Wrapper>
<Section>
<RowBetween>
<Text fontWeight={700} fontSize={18}>
Error
</Text>
<CloseIcon onClick={onDismiss} />
</RowBetween>
<AutoColumn style={{ marginTop: 20, padding: '2rem 0' }} gap="24px" justify="center">
<AlertTriangle color={theme.colors.red1} style={{ strokeWidth: 1.5 }} size={64} />
<Text fontWeight={700} fontSize={14} color={theme.colors.red1} style={{ textAlign: 'center', width: '85%' }}>
{message}
</Text>
</AutoColumn>
</Section>
<BottomSection gap="12px">
<ButtonPrimary onClick={onDismiss}>Dismiss</ButtonPrimary>
</BottomSection>
</Wrapper>
)
}
Example #20
Source File: styleds.tsx From luaswap-interface with GNU General Public License v3.0 | 6 votes |
export function SwapCallbackError({ error }: { error: string }) {
return (
<SwapCallbackErrorInner>
<SwapCallbackErrorInnerAlertTriangle>
<AlertTriangle size={24} />
</SwapCallbackErrorInnerAlertTriangle>
<p>{error}</p>
</SwapCallbackErrorInner>
)
}
Example #21
Source File: styleds.tsx From cuiswap with GNU General Public License v3.0 | 6 votes |
export function SwapCallbackError({ error }: { error: string }) {
return (
<SwapCallbackErrorInner>
<SwapCallbackErrorInnerAlertTriangle>
<AlertTriangle size={24} />
</SwapCallbackErrorInnerAlertTriangle>
<p>{error}</p>
</SwapCallbackErrorInner>
)
}
Example #22
Source File: styleds.tsx From cheeseswap-interface with GNU General Public License v3.0 | 6 votes |
export function SwapCallbackError({ error }: { error: string }) {
return (
<SwapCallbackErrorInner>
<SwapCallbackErrorInnerAlertTriangle>
<AlertTriangle size={24} />
</SwapCallbackErrorInnerAlertTriangle>
<p>{error}</p>
</SwapCallbackErrorInner>
)
}
Example #23
Source File: URLWarning.tsx From dyp with Do What The F*ck You Want To Public License | 6 votes |
export default function URLWarning() {
const toggleURLWarning = useURLWarningToggle()
const showURLWarning = useURLWarningVisible()
return isMobile ? (
<PhishAlert isActive={showURLWarning}>
<div style={{ display: 'flex' }}>
<AlertTriangle style={{ marginRight: 6 }} size={12} /> Make sure the URL is
<code style={{ padding: '0 4px', display: 'inline', fontWeight: 'bold' }}>dyp.finance</code>
</div>
<StyledClose size={12} onClick={toggleURLWarning} />
</PhishAlert>
) : window.location.hostname === 'app.uniswap.org' ? (
<PhishAlert isActive={showURLWarning}>
<div style={{ display: 'flex' }}>
<AlertTriangle style={{ marginRight: 6 }} size={12} /> Always make sure the URL is
<code style={{ padding: '0 4px', display: 'inline', fontWeight: 'bold' }}>dyp.finance</code> - bookmark it to be
safe.
</div>
<StyledClose size={12} onClick={toggleURLWarning} />
</PhishAlert>
) : null
}
Example #24
Source File: index.tsx From panther-frontend-dex with GNU General Public License v3.0 | 5 votes |
StyledWarningIcon = styled(AlertTriangle)`
stroke: ${({ theme }) => theme.colors.failure};
`
Example #25
Source File: index.tsx From pancake-swap-exchange-testnet with GNU General Public License v3.0 | 5 votes |
StyledWarningIcon = styled(AlertTriangle)`
stroke: ${({ theme }) => theme.colors.binance};
`
Example #26
Source File: index.tsx From pancake-swap-testnet with MIT License | 5 votes |
StyledWarningIcon = styled(AlertTriangle)`
stroke: ${({ theme }) => theme.colors.failure};
`
Example #27
Source File: index.tsx From pancakeswap-testnet with GNU General Public License v3.0 | 5 votes |
StyledWarningIcon = styled(AlertTriangle)`
stroke: ${({ theme }) => theme.colors.failure};
`
Example #28
Source File: index.tsx From panther-frontend-dex with GNU General Public License v3.0 | 5 votes |
StyledWarningIcon = styled(AlertTriangle)`
stroke: ${({ theme }) => theme.colors.failure};
`
Example #29
Source File: index.tsx From cuiswap with GNU General Public License v3.0 | 5 votes |
StyledWarningIcon = styled(AlertTriangle)`
stroke: ${({ theme }) => theme.red2};
`