feat(icon): add `tooltipicon`
This commit is contained in:
parent
ac791e7f38
commit
a36b59a828
Binary file not shown.
After Width: | Height: | Size: 409 B |
|
@ -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
|
Loading…
Reference in New Issue