Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. import { styled } from '~styles'
  2. export const IconButton = styled('button', {
  3. position: 'relative',
  4. height: '32px',
  5. width: '32px',
  6. backgroundColor: '$panel',
  7. borderRadius: '4px',
  8. padding: '0',
  9. margin: '0',
  10. outline: 'none',
  11. border: 'none',
  12. pointerEvents: 'all',
  13. fontSize: '$0',
  14. color: '$text',
  15. cursor: 'pointer',
  16. display: 'grid',
  17. alignItems: 'center',
  18. justifyContent: 'center',
  19. '& > *': {
  20. gridRow: 1,
  21. gridColumn: 1,
  22. },
  23. '&:disabled': {
  24. opacity: '0.5',
  25. },
  26. '& > span': {
  27. width: '100%',
  28. height: '100%',
  29. display: 'flex',
  30. alignItems: 'center',
  31. },
  32. variants: {
  33. bp: {
  34. mobile: {
  35. backgroundColor: 'transparent',
  36. },
  37. small: {
  38. '&:hover:not(:disabled)': {
  39. backgroundColor: '$hover',
  40. },
  41. },
  42. },
  43. size: {
  44. small: {
  45. height: 32,
  46. width: 32,
  47. '& svg:nth-of-type(1)': {
  48. height: '16px',
  49. width: '16px',
  50. },
  51. },
  52. medium: {
  53. height: 44,
  54. width: 44,
  55. '& svg:nth-of-type(1)': {
  56. height: '18px',
  57. width: '18px',
  58. },
  59. },
  60. large: {
  61. height: 44,
  62. width: 44,
  63. '& svg:nth-of-type(1)': {
  64. height: '20px',
  65. width: '20px',
  66. },
  67. },
  68. },
  69. isActive: {
  70. true: {
  71. color: '$selected',
  72. },
  73. },
  74. },
  75. })