File size: 487 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { recipe } from '@vanilla-extract/recipes'
import { BREAKPOINTS } from '../styles/breakpoints.css'

export const svg = recipe({
  base: {
    touchAction: 'none',
  },

  variants: {
    large: {
      false: {
        width: '48px',
        height: '48px',

        '@media': {
          [`screen and ${BREAKPOINTS.tabletUp}`]: {
            height: '64px',
            width: '64px',
          },
        },
      },
      true: {
        width: '100%',
      },
    },
  },
})