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