UNPKG

@conductionnl/nl-design-system

Version:

NL design system components created by Conduction

22 lines (21 loc) 541 B
import * as React from "react"; interface IInfoTooltip { content: JSX.Element; placement?: "top" | "right" | "bottom" | "left"; } interface TextareaGroupProps { id: string; name: string; defaultValue?: string; label: string | JSX.Element; required?: boolean; disabled?: boolean; infoTooltip?: IInfoTooltip; } /** * This component generates a input element with the specified type. * * @returns Jsx of the generated form. */ export declare const TextareaGroup: React.FC<TextareaGroupProps>; export {};