1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-28 17:01:02 +00:00

center add token info message

This commit is contained in:
slowbackspace 2019-01-24 23:22:28 +01:00
parent f57acdde46
commit c6edc8a4af

View File

@ -16,6 +16,10 @@ const StyledSVG = styled.svg`
margin-bottom: 24px;
`;
const StyledP = styled(P)`
text-align: center;
`;
const AddTokenMessage = () => (
<Wrapper>
<StyledSVG width="84px" height="76px" viewBox="0 0 84 76">
@ -51,7 +55,7 @@ const AddTokenMessage = () => (
</g>
</StyledSVG>
<H2>Add your tokens</H2>
<P isSmaller>Search for the token or add them manually by pasting token address into search input.</P>
<StyledP isSmaller>Search for the token or add them manually by pasting token address into search input.</StyledP>
</Wrapper>
);
export default AddTokenMessage;