UNPKG

@itgold/grandbazar-ui-kit

Version:

Grandbazar.io UI component library: React, Typescript, Tailwind, Rollup, Storybook, Jest.

10 lines (9 loc) 318 B
import { ChangeEventHandler, ReactElement } from 'react'; type TTextareaProps = { onChange: ChangeEventHandler; placeholder?: string; disabled?: boolean; theme?: 'light' | 'dark'; }; export declare function Textarea({ onChange, placeholder, disabled, theme }: TTextareaProps): ReactElement; export {};