carbon-react
Version:
A library of reusable React components for easily building user interfaces.
13 lines (12 loc) • 507 B
TypeScript
import { TextareaProps } from "./textarea.component";
export declare const DEFAULT_MIN_HEIGHT = 64;
export interface StyledTextAreaProps extends Pick<TextareaProps, "minHeight"> {
/** When true, label is placed in line an input */
labelInline?: boolean;
/** When true, adjusts padding for icon */
hasIcon?: boolean;
}
declare const StyledTextarea: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & StyledTextAreaProps, "theme">;
export default StyledTextarea;