shineout
Version:
A components library for React
8 lines (7 loc) • 352 B
TypeScript
import { TextareaProps as UnsStyledTextareaProps } from '@sheinx/base';
import { GetWithFieldProps } from '../hooks/use-field-common';
export type BaseTextareaProps = Omit<UnsStyledTextareaProps, 'jssStyle' | 'prefix' | 'suffix'>;
/**
* @title Textarea
*/
export type TextareaProps = GetWithFieldProps<BaseTextareaProps, BaseTextareaProps['value']>;