@nurl/panda-preset
Version:
Official Panda-CSS preset for the Ganglion Design System.
28 lines • 515 B
JavaScript
// src/recipes/textarea.ts
import { defineRecipe } from "@pandacss/dev";
import { inputControl } from "./shared/input.base.js";
var 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"
}
});
export {
textarea
};
//# sourceMappingURL=textarea.js.map