@conductionnl/nl-design-system
Version:
NL design system components created by Conduction
28 lines (27 loc) • 606 B
TypeScript
/// <reference types="react" />
interface TextAreaProps {
id: string;
data?: string | number;
name: string;
nameOverride?: string;
required?: boolean;
cols?: null | number;
rows?: null | number;
disabled?: boolean;
}
/**
* This component generates a input element with the specified type.
*
* @returns Jsx of the generated form.
*/
export declare const TextAreaComponent: {
(props: TextAreaProps): JSX.Element;
defaultProps: {
data: null;
disabled: boolean;
required: boolean;
rows: null;
cols: null;
};
};
export {};