@bee-design/ui
Version:
Bee Design React UI Library.
10 lines (9 loc) • 387 B
TypeScript
import React, { ReactNode } from 'react';
import { FormItemProps } from './interface';
interface FormItemLabelProps extends Pick<FormItemProps, 'tooltip' | 'label' | 'requiredSymbol' | 'required' | 'rules'> {
showColon: boolean | ReactNode;
prefix: string;
htmlFor?: string;
}
declare const FormItemLabel: React.FC<FormItemLabelProps>;
export default FormItemLabel;