@smart-react-components/ui
Version:
SRC UI includes React and Styled components.
11 lines (10 loc) • 444 B
TypeScript
import { Property, Resize } from '@smart-react-components/core/styled-props/css-properties';
import React from 'react';
import { Props as InputProps } from '../Input';
export interface Props extends Omit<InputProps, 'type'> {
areaMaxHeight?: number;
areaMinHeight?: number;
resize?: Property<Resize>;
}
declare const Textarea: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLInputElement>>;
export default Textarea;