export const Textarea: FC<
  Omit<ComponentProps<"textarea">, keyof Props> & Props
> = ({ color, size, rounded, className, ...props }) => (
  <textarea
    {...props}