feat(icon): add `tooltipicon`

This commit is contained in:
Hristo Nedelkov 2024-03-06 15:30:33 +02:00 committed by Emil Ivanichkov
parent ac791e7f38
commit a36b59a828
2 changed files with 0 additions and 31 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 409 B

View File

@ -1,31 +0,0 @@
import { Text } from '@status-im/components'
import { XStack, YStack } from 'tamagui'
import { AddSmallIcon } from '@status-im/icons'
const AddValidatorButton = () => {
return (
<YStack
backgroundColor={'#757e8c'}
style={{
padding: '8px 12px',
borderRadius: '16px',
flexGrow: '1',
height: 'max-fit',
}}
>
<XStack
style={{ marginBottom: '8px' }}
alignContent="center"
alignItems="center"
justifyContent="center"
space="$2"
>
<AddSmallIcon size={20} color="#fff"></AddSmallIcon>
<Text size={19} color={'#FFF'}>
Add Validator
</Text>
</XStack>
</YStack>
)
}
export default AddValidatorButton