@denali-design/react
Version:
React.JS component library for the Denali CSS Framework
27 lines • 830 B
TypeScript
/**
* Copyright 2020, Verizon Media
* Licensed under the terms of the MIT license. See accompanying LICENSE.md file for terms.
*/
export declare const DnInputTextArea: {
({ className, isActive, isDisabled, isError, isInverse, errorMessage, placeholderText, id, ...rest }: DnInputTextAreaProps): JSX.Element;
defaultProps: {
isActive: boolean;
isDisabled: boolean;
isError: boolean;
isInverse: boolean;
errorMessage: undefined;
placeholderText: undefined;
id: undefined;
};
};
export interface DnInputTextAreaProps {
className?: string;
isActive?: boolean;
isDisabled?: boolean;
isError?: boolean;
isInverse?: boolean;
errorMessage?: string;
placeholderText?: string;
id?: string;
}
//# sourceMappingURL=DnInputTextArea.d.ts.map