@availity/form
Version:
Form Wrapper around formik using reactstrap components
23 lines (17 loc) • 715 B
TypeScript
type FieldHelpIconProps = {
/** The field Help ID Required */
id: string;
/** The bootstrap 3 color of the icon. Default:primary */
color?: string;
/** The size of the help icon. Default: 1x */
size?: string;
/** The id of the associated label for aria-describedby, needed for accessibility. */
labelId?: string;
/** The prop that allows the type of icon to be changed to video-help, if needed */
isHelpVideoType?: boolean;
};
declare const FieldHelpIcon: (props: FieldHelpIconProps) => JSX.Element;
declare const triggerFieldHelp: (id: string) => void;
declare const OPEN_FIELD_HELP: string;
export { FieldHelpIconProps, OPEN_FIELD_HELP, triggerFieldHelp };
export default FieldHelpIcon;