Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
487 Bytes
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%',
},
},
},
})