@useloops/design-system
Version:
The official React based Loops design system
17 lines (14 loc) • 493 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;
paddingLeft?: string | number;
}
declare const InputLabelHelp: FunctionComponent<InputLabelHelpProps>;
export { InputLabelHelp as default };
export type { InputLabelHelpProps };