feat(Textarea): add resize-none class with autoresize prop

This commit is contained in:
Benjamin Canac
2025-04-01 12:44:50 +02:00
parent 06414d344b
commit ffafd81e1e
5 changed files with 21 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ describe('Textarea', () => {
['with required', { props: { required: true } }],
['with disabled', { props: { disabled: true } }],
['with rows', { props: { rows: 5 } }],
['with autoresize', { props: { autoresize: true } }],
['with icon', { props: { icon: 'i-lucide-search' } }],
['with leading and icon', { props: { leading: true, icon: 'i-lucide-arrow-left' } }],
['with leadingIcon', { props: { leadingIcon: 'i-lucide-arrow-left' } }],