@useloops/design-system
Version:
The official React based Loops design system
19 lines (16 loc) • 609 B
TypeScript
import { ReactElement, FunctionComponent } from 'react';
import { SxProps } from '@mui/material';
import { Theme } from '@mui/material/styles';
import { InputVariation } from '../InputLabelBase/InputLabelBase.variants-helpers.js';
interface InputLabelProps {
variation?: InputVariation;
align?: 'left' | 'center' | 'right' | undefined;
sx?: SxProps<Theme>;
children?: ReactElement | string;
disabled?: boolean;
error?: boolean;
required?: boolean;
}
declare const InputLabel: FunctionComponent<InputLabelProps>;
export { InputLabel as default };
export type { InputLabelProps };