@mgoodfellow/park-ui-panda-preset
Version:
Panda CSS Preset for Park UI
29 lines (27 loc) • 445 B
text/typescript
import { defineRecipe } from '@pandacss/dev'
export const formLabel = defineRecipe({
className: 'formLabel',
base: {
color: 'fg.default',
fontWeight: 'medium',
},
defaultVariants: {
size: 'md',
},
variants: {
size: {
sm: {
textStyle: 'sm',
},
md: {
textStyle: 'sm',
},
lg: {
textStyle: 'sm',
},
xl: {
textStyle: 'md',
},
},
},
})