@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
22 lines (21 loc) • 857 B
TypeScript
/// <reference types="react" />
import { FormItemProps as AntdFormItemProps } from 'antd';
import { type FormTitleProps } from './FormTitle';
export declare const useStyles: (props?: {
minWidth?: string | number | undefined;
} | undefined) => import("antd-style").ReturnStyles<{
item: import("antd-style").SerializedStyles;
itemMinWidth: import("antd-style").SerializedStyles;
itemNoDivider: import("antd-style").SerializedStyles;
verticalLayout: import("antd-style").SerializedStyles;
}>;
export interface FormItemProps extends AntdFormItemProps {
avatar?: FormTitleProps['avatar'];
desc?: FormTitleProps['desc'];
divider?: boolean;
hidden?: boolean;
minWidth?: string | number;
tag?: FormTitleProps['tag'];
}
declare const FormItem: import("react").NamedExoticComponent<FormItemProps>;
export default FormItem;