({ className, ...props })
| 7 | type Props = ComponentProps<'textarea'>; |
| 8 | |
| 9 | export const Textarea: FC<Props> = ({ className, ...props }) => ( |
| 10 | <textarea className={variants('textarea', { className })} {...props} /> |
| 11 | ); |
nothing calls this directly
no outgoing calls
no test coverage detected