UNPKG

@nurl/panda-preset

Version:

Official Panda-CSS preset for the Ganglion Design System.

28 lines (23 loc) 443 B
import { defineRecipe } from '@pandacss/dev' import { inputControl } from './shared/input.base' export const textarea = defineRecipe({ className: 'text-area', description: 'The styles for the TextArea component', base: { ...inputControl, py: '2', }, variants: { size: { md: { fontSize: 'sm', }, lg: { fontSize: 'lg', }, }, }, defaultVariants: { size: 'lg', }, })