Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
613 Bytes
import { defineRecipe } from "../def"
export const iconRecipe = defineRecipe({
className: "icon",
base: {
display: "inline-block",
lineHeight: "1em",
flexShrink: "0",
color: "currentcolor",
verticalAlign: "middle",
},
variants: {
size: {
inherit: {},
xs: {
boxSize: "3",
},
sm: {
boxSize: "4",
},
md: {
boxSize: "5",
},
lg: {
boxSize: "6",
},
xl: {
boxSize: "7",
},
"2xl": {
boxSize: "8",
},
},
},
defaultVariants: {
size: "inherit",
},
})