diff --git a/src/components/helpers/ButtonWithIcon.tsx b/src/components/helpers/ButtonWithIcon.tsx index 3ed3b00..2cb9ef3 100644 --- a/src/components/helpers/ButtonWithIcon.tsx +++ b/src/components/helpers/ButtonWithIcon.tsx @@ -1,4 +1,4 @@ -import { Box } from '@0xsequence/design-system' +import { Box, Button } from '@0xsequence/design-system' import React from 'react' export const ButtonWithIcon = ({ @@ -11,20 +11,19 @@ export const ButtonWithIcon = ({ disabled?: boolean }) => { return ( - { if (!disabled) onClick() }} - > - {icon} - + label={ + + {icon} + + } + style={{ height: '40px', width: '40px', background: 'rgba(255, 255, 255, 0.05)' }} + /> ) }