diff --git a/apps/www/src/content/docs/components/textarea/demo.ts b/apps/www/src/content/docs/components/textarea/demo.ts index 9d0a9f683..4a30dd098 100644 --- a/apps/www/src/content/docs/components/textarea/demo.ts +++ b/apps/www/src/content/docs/components/textarea/demo.ts @@ -13,6 +13,16 @@ export const playground = { type: 'checkbox', defaultValue: false }, + size: { + type: 'select', + options: ['large', 'small'], + defaultValue: 'large' + }, + variant: { + type: 'select', + options: ['default', 'borderless'], + defaultValue: 'default' + }, width: { type: 'text', defaultValue: '400px' @@ -55,6 +65,30 @@ export const controlledDemo = { }` }; +export const sizeDemo = { + type: 'code', + code: ` +