@ygor-ui/presets
Version:
Panda CSS presets for Ark UI components
30 lines (28 loc) • 472 B
text/typescript
import { defineRecipe } from '@pandacss/dev'
export const label = defineRecipe({
className: 'label',
description: 'A label style',
base: {
color: 'fg.emphasized',
fontWeight: 'medium',
},
defaultVariants: {
size: 'md',
},
variants: {
size: {
sm: {
textStyle: 'sm',
},
md: {
textStyle: 'sm',
},
lg: {
textStyle: 'sm',
},
xl: {
textStyle: 'md',
},
},
},
})