UNPKG

@gear-js/vara-ui

Version:

React UI components used across Vara applications

7 lines (6 loc) 391 B
import { ComponentPropsWithRef } from 'react'; import { LabelContainerProps } from '../label-container'; type Props = Omit<ComponentPropsWithRef<'textarea'>, 'id' | 'size'> & LabelContainerProps; declare const Textarea: ({ className, label, error, size, rows, block, ...attrs }: Props) => import("react/jsx-runtime").JSX.Element; export { Textarea }; export type { Props as TextareaProps };