UNPKG

cherry-styled-components

Version:

Cherry is a design system for the modern web. Designed in Figma, built in React using Typescript.

14 lines (13 loc) 492 B
import { default as React } from 'react'; interface TextareaProps extends Omit<React.InputHTMLAttributes<HTMLTextAreaElement>, "size"> { children?: React.ReactNode; $wrapperClassName?: string; $label?: string; $size?: "default" | "big" | "small"; $error?: boolean; $success?: boolean; $fullWidth?: boolean; rows?: number; } declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>; export { Textarea };