@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
18 lines (17 loc) • 850 B
TypeScript
import { ComponentProps, ReactNode } from 'react';
import { BoxProps } from '@mui/material';
import { InputLabel, WrapperInputVariant } from '../../base';
import { InputVariantType, InputSizeType, InputRmVariant, Omit, InputErrorProps } from '../../types';
type LabelProps = ComponentProps<typeof InputLabel>;
type WrapperProps = ComponentProps<typeof WrapperInputVariant>;
export interface TextFieldV5LabelOutPropsModel extends InputRmVariant, InputErrorProps {
variant?: InputVariantType;
size?: InputSizeType;
backgroundColor?: string;
LabelProps?: Omit<LabelProps, 'variant' | 'htmlFor' | 'variant' | 'children'>;
WrapperProps?: Omit<WrapperProps, 'backgroundColor' | 'variant' | 'size' | 'children'>;
boxProps?: Omit<BoxProps, 'ref'>;
disabledHoverVariantOutAndFlo?: boolean;
helperNode?: ReactNode;
}
export {};