@useloops/design-system
Version:
The official React based Loops design system
16 lines (13 loc) • 458 B
TypeScript
import { ReactNode, FunctionComponent } from 'react';
interface InputLabelHelpProps {
state?: 'default' | 'positive' | 'negative' | 'disabled';
showicon?: boolean;
icon?: ReactNode;
align?: 'left' | 'center' | 'right';
children?: ReactNode;
disabled?: boolean;
required?: boolean;
}
declare const InputLabelHelp: FunctionComponent<InputLabelHelpProps>;
export { InputLabelHelp as default };
export type { InputLabelHelpProps };