UNPKG

@aliretail/react-materials-components

Version:
12 lines (11 loc) 324 B
import * as React from 'react'; interface IComponentProps { type: 'error' | 'normal'; className: string; children: string | React.ReactNode; } declare const FormHelpExtra: { (props: IComponentProps): JSX.Element; Error(props: Omit<IComponentProps, 'type'>): JSX.Element; }; export default FormHelpExtra;