You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SmallIcon.tsx 460B

123456789101112131415161718192021222324252627
  1. import { styled } from '~styles'
  2. export const SmallIcon = styled('div', {
  3. height: '100%',
  4. borderRadius: '4px',
  5. marginRight: '1px',
  6. width: 'fit-content',
  7. display: 'grid',
  8. alignItems: 'center',
  9. justifyContent: 'center',
  10. outline: 'none',
  11. border: 'none',
  12. pointerEvents: 'all',
  13. cursor: 'pointer',
  14. color: '$text',
  15. '& svg': {
  16. height: 16,
  17. width: 16,
  18. strokeWidth: 1,
  19. },
  20. '& > *': {
  21. gridRow: 1,
  22. gridColumn: 1,
  23. },
  24. })