react-feather#AlertCircle TypeScript Examples
The following examples show how to use
react-feather#AlertCircle.
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: TransactionPopup.tsx From cuiswap with GNU General Public License v3.0 | 6 votes |
export default function TransactionPopup({
hash,
success,
summary
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? <CheckCircle color={theme.green1} size={24} /> : <AlertCircle color={theme.red1} size={24} />}
</div>
<AutoColumn gap="8px">
<TYPE.body fontWeight={500}>{summary ?? 'Hash: ' + hash.slice(0, 8) + '...' + hash.slice(58, 65)}</TYPE.body>
<ExternalLink href={getEtherscanLink(chainId, hash, 'transaction')}>View on Etherscan</ExternalLink>
</AutoColumn>
</RowNoFlex>
)
}
Example #2
Source File: TransactionPopup.tsx From sybil-interface with GNU General Public License v3.0 | 6 votes |
export default function TransactionPopup({
hash,
success,
summary,
}: {
hash: string
success?: boolean
summary?: string
}): JSX.Element {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? <CheckCircle color={theme.green1} size={24} /> : <AlertCircle color={theme.red1} size={24} />}
</div>
<AutoColumn gap="8px">
<TYPE.body fontWeight={500}>{summary ?? 'Hash: ' + hash.slice(0, 8) + '...' + hash.slice(58, 65)}</TYPE.body>
{chainId && (
<ExternalLink href={getEtherscanLink(chainId, hash, 'transaction')}>View on Etherscan</ExternalLink>
)}
</AutoColumn>
</RowNoFlex>
)
}
Example #3
Source File: TransactionPopup.tsx From cheeseswap-interface with GNU General Public License v3.0 | 6 votes |
export default function TransactionPopup({
hash,
success,
summary
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? (
<CheckCircle color={theme.colors.green1} size={24} />
) : (
<AlertCircle color={theme.colors.red1} size={24} />
)}
</div>
<AutoColumn gap="8px">
<TYPE.body fontWeight={700}>{summary ?? 'Hash: ' + hash.slice(0, 8) + '...' + hash.slice(58, 65)}</TYPE.body>
{chainId && <ExternalLink href={getEtherscanLink(chainId, hash, 'transaction')}>View on bscscan</ExternalLink>}
</AutoColumn>
</RowNoFlex>
)
}
Example #4
Source File: TransactionPopup.tsx From dyp with Do What The F*ck You Want To Public License | 6 votes |
export default function TransactionPopup({
hash,
success,
summary
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? <CheckCircle color={theme.green1} size={24} /> : <AlertCircle color={theme.red1} size={24} />}
</div>
<AutoColumn gap="8px">
<TYPE.body fontWeight={500}>{summary ?? 'Hash: ' + hash.slice(0, 8) + '...' + hash.slice(58, 65)}</TYPE.body>
{chainId && (
<ExternalLink href={getEtherscanLink(chainId, hash, 'transaction')}>View on Etherscan</ExternalLink>
)}
</AutoColumn>
</RowNoFlex>
)
}
Example #5
Source File: TransactionPopup.tsx From goose-frontend-amm with GNU General Public License v3.0 | 6 votes |
export default function TransactionPopup({
hash,
success,
summary,
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? (
<CheckCircle color={theme.colors.success} size={24} />
) : (
<AlertCircle color={theme.colors.failure} size={24} />
)}
</div>
<AutoColumn gap="8px">
<Body fontWeight={500}>{summary ?? `Hash: ${hash.slice(0, 8)}...${hash.slice(58, 65)}`}</Body>
{chainId && <ExternalLink href={getEtherscanLink(chainId, hash, 'transaction')}>View on bscscan</ExternalLink>}
</AutoColumn>
</RowNoFlex>
)
}
Example #6
Source File: TransactionPopup.tsx From mozartfinance-swap-interface with GNU General Public License v3.0 | 6 votes |
export default function TransactionPopup({
hash,
success,
summary,
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? (
<CheckCircle color={theme.colors.success} size={24} />
) : (
<AlertCircle color={theme.colors.failure} size={24} />
)}
</div>
<AutoColumn gap="8px">
<Text>{summary ?? `Hash: ${hash.slice(0, 8)}...${hash.slice(58, 65)}`}</Text>
{chainId && <ExternalLink href={getBscScanLink(chainId, hash, 'transaction')}>View on bscscan</ExternalLink>}
</AutoColumn>
</RowNoFlex>
)
}
Example #7
Source File: TransactionPopup.tsx From pancake-swap-exchange-testnet with GNU General Public License v3.0 | 6 votes |
export default function TransactionPopup({
hash,
success,
summary,
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? (
<CheckCircle color={theme.colors.success} size={24} />
) : (
<AlertCircle color={theme.colors.failure} size={24} />
)}
</div>
<AutoColumn gap="8px">
<Text>{summary ?? `Hash: ${hash.slice(0, 8)}...${hash.slice(58, 65)}`}</Text>
{chainId && <ExternalLink href={getBscScanLink(chainId, hash, 'transaction')}>View on bscscan</ExternalLink>}
</AutoColumn>
</RowNoFlex>
)
}
Example #8
Source File: TransactionPopup.tsx From pancake-swap-testnet with MIT License | 6 votes |
export default function TransactionPopup({
hash,
success,
summary,
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? (
<CheckCircle color={theme.colors.success} size={24} />
) : (
<AlertCircle color={theme.colors.failure} size={24} />
)}
</div>
<AutoColumn gap="8px">
<Text>{summary ?? `Hash: ${hash.slice(0, 8)}...${hash.slice(58, 65)}`}</Text>
{chainId && <ExternalLink href={getBscScanLink(chainId, hash, 'transaction')}>View on bscscan</ExternalLink>}
</AutoColumn>
</RowNoFlex>
)
}
Example #9
Source File: TransactionPopup.tsx From panther-frontend-dex with GNU General Public License v3.0 | 6 votes |
export default function TransactionPopup({
hash,
success,
summary,
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? (
<CheckCircle color={theme.colors.success} size={24} />
) : (
<AlertCircle color={theme.colors.failure} size={24} />
)}
</div>
<AutoColumn gap="8px">
<Body fontWeight={500}>{summary ?? `Hash: ${hash.slice(0, 8)}...${hash.slice(58, 65)}`}</Body>
{chainId && <ExternalLink href={getBscScanLink(chainId, hash, 'transaction')}>View on BscScan</ExternalLink>}
</AutoColumn>
</RowNoFlex>
)
}
Example #10
Source File: TransactionPopup.tsx From luaswap-interface with GNU General Public License v3.0 | 6 votes |
export default function TransactionPopup({
hash,
success,
summary
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? <CheckCircle color={theme.green1} size={24} /> : <AlertCircle color={theme.red1} size={24} />}
</div>
<AutoColumn gap="8px">
<TYPE.body fontWeight={500}>{summary ?? 'Hash: ' + hash.slice(0, 8) + '...' + hash.slice(58, 65)}</TYPE.body>
{chainId && (
<ExternalLink href={getEtherscanLink(chainId, hash, 'transaction')}>{NETWORK_SCAN[chainId]}</ExternalLink>
)}
</AutoColumn>
</RowNoFlex>
)
}
Example #11
Source File: ListUpdatePopup.tsx From cuiswap with GNU General Public License v3.0 | 5 votes |
export default function ListUpdatePopup({
popKey,
listUrl,
oldList,
newList,
auto
}: {
popKey: string
listUrl: string
oldList: TokenList
newList: TokenList
auto: boolean
}) {
const removePopup = useRemovePopup()
const removeThisPopup = useCallback(() => removePopup(popKey), [popKey, removePopup])
const dispatch = useDispatch<AppDispatch>()
const theme = useContext(ThemeContext)
const updateList = useCallback(() => {
if (auto) return
dispatch(acceptListUpdate(listUrl))
removeThisPopup()
}, [auto, dispatch, listUrl, removeThisPopup])
return (
<AutoRow>
<div style={{ paddingRight: 16 }}>
{auto ? <Info color={theme.text2} size={24} /> : <AlertCircle color={theme.red1} size={24} />}{' '}
</div>
<AutoColumn style={{ flex: '1' }} gap="8px">
{auto ? (
<TYPE.body fontWeight={500}>
The token list "{oldList.name}" has been updated to{' '}
<strong>{versionLabel(newList.version)}</strong>.
</TYPE.body>
) : (
<>
<div>
A token list update is available for the list "{oldList.name}" ({versionLabel(oldList.version)}{' '}
to {versionLabel(newList.version)}).
</div>
<AutoRow>
<div style={{ flexGrow: 1, marginRight: 6 }}>
<ButtonPrimary onClick={updateList}>Update list</ButtonPrimary>
</div>
<div style={{ flexGrow: 1 }}>
<ButtonSecondary onClick={removeThisPopup}>Dismiss</ButtonSecondary>
</div>
</AutoRow>
</>
)}
</AutoColumn>
</AutoRow>
)
}
Example #12
Source File: MessagesBlock.tsx From ke with MIT License | 5 votes |
messageIconMapping: { [key: string]: Icon } = {
success: CheckCircle,
warning: AlertCircle,
error: AlertCircle,
info: HelpCircle,
}
Example #13
Source File: ImportToken.tsx From limit-orders-lib with GNU General Public License v3.0 | 4 votes |
export function ImportToken({
tokens,
list,
onBack,
onDismiss,
handleCurrencySelect,
}: ImportProps) {
const theme = useTheme();
const { chainId } = useWeb3();
const addToken = useAddUserToken();
return (
<Wrapper>
<PaddedColumn gap="14px" style={{ width: "100%", flex: "1 1" }}>
<RowBetween>
{onBack ? (
<ArrowLeft style={{ cursor: "pointer" }} onClick={onBack} />
) : (
<div />
)}
<TYPE.mediumHeader>
Import {tokens.length > 1 ? "Tokens" : "Token"}
</TYPE.mediumHeader>
{onDismiss ? <CloseIcon onClick={onDismiss} /> : <div />}
</RowBetween>
</PaddedColumn>
<SectionBreak />
<AutoColumn gap="md" style={{ marginBottom: "32px", padding: "1rem" }}>
<AutoColumn
justify="center"
style={{ textAlign: "center", gap: "16px", padding: "1rem" }}
>
<AlertCircle size={48} stroke={theme.text2} strokeWidth={1} />
<TYPE.body fontWeight={400} fontSize={16}>
{
"This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
}
</TYPE.body>
</AutoColumn>
{tokens.map((token) => {
return (
<Card
backgroundColor={theme.bg2}
key={"import" + token.address}
className=".token-warning-container"
padding="2rem"
>
<AutoColumn gap="10px" justify="center">
<CurrencyLogo currency={token} size={"32px"} />
<AutoColumn gap="4px" justify="center">
<TYPE.body ml="8px" mr="8px" fontWeight={500} fontSize={20}>
{token.symbol}
</TYPE.body>
<TYPE.darkGray fontWeight={400} fontSize={14}>
{token.name}
</TYPE.darkGray>
</AutoColumn>
{chainId && (
<ExternalLink
href={getExplorerLink(
chainId,
token.address,
ExplorerDataType.ADDRESS
)}
>
<AddressText fontSize={12}>{token.address}</AddressText>
</ExternalLink>
)}
{list !== undefined ? (
<RowFixed>
{list.logoURI && (
<ListLogo logoURI={list.logoURI} size="16px" />
)}
<TYPE.small ml="6px" fontSize={14} color={theme.text3}>
via {list.name} token list
</TYPE.small>
</RowFixed>
) : (
<WarningWrapper
borderRadius="4px"
padding="4px"
highWarning={true}
>
<RowFixed>
<AlertCircle stroke={theme.red1} size="10px" />
<TYPE.body
color={theme.red1}
ml="4px"
fontSize="10px"
fontWeight={500}
>
Unknown Source
</TYPE.body>
</RowFixed>
</WarningWrapper>
)}
</AutoColumn>
</Card>
);
})}
<ButtonPrimary
altDisabledStyle={true}
borderRadius="20px"
padding="10px 1rem"
onClick={() => {
tokens.map((token) => addToken(token));
handleCurrencySelect && handleCurrencySelect(tokens[0]);
}}
className=".token-dismiss-button"
>
Import
</ButtonPrimary>
</AutoColumn>
</Wrapper>
);
}