UNPKG

@useloops/design-system

Version:

The official React based Loops design system

10 lines (7 loc) 302 B
import { InputLabelProps } from '@mui/material'; import { InputVariation } from './InputLabelBase.variants-helpers.js'; interface InputLabelBaseProps extends InputLabelProps { variation?: InputVariation; align?: 'left' | 'center' | 'right' | undefined; } export type { InputLabelBaseProps };