@lunit/oui
Version:
Lunit Oncology UI components
18 lines (17 loc) • 478 B
TypeScript
import type { BoxProps } from '@mui/material';
interface BaseTextFieldContainerProps {
width?: string | number;
}
interface RootTextFieldProps extends BaseTextFieldContainerProps {
disabled?: boolean;
readOnly?: boolean;
value?: string;
defaultValue?: string;
error?: boolean;
BoxProps?: BoxProps;
}
interface HelperMsgProps {
error?: boolean;
helperMsg?: string;
}
export { RootTextFieldProps, BaseTextFieldContainerProps, HelperMsgProps };