@kopexa/sight
Version:
Kopexa Sight Design System — React component library for GRC applications
9 lines (6 loc) • 346 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { TextareaVariantProps } from '@kopexa/theme';
import { ComponentProps } from 'react';
type TextareaProps = ComponentProps<"textarea"> & TextareaVariantProps;
declare const Textarea: (props: TextareaProps) => react_jsx_runtime.JSX.Element;
export { Textarea, type TextareaProps };