@coveord/plasma-mantine
Version:
A Plasma flavoured Mantine theme
15 lines • 760 B
TypeScript
import { Input as MantineInput, type InputFactory as MantineInputFactory, type InputProps } from '@mantine/core';
import { InputLabelInfo, type InputLabelInfoFactory, type InputLabelInfoProps, type InputLabelInfoStylesNames } from './InputLabelInfo.js';
type PlasmaInputFactory = Omit<MantineInputFactory, 'staticComponents'> & {
staticComponents: MantineInputFactory['staticComponents'] & {
LabelInfo: typeof InputLabelInfo;
};
};
declare const Input: typeof MantineInput & {
LabelInfo: typeof InputLabelInfo;
};
export { Input };
export type InputFactory = PlasmaInputFactory;
export type { InputProps, InputLabelInfoFactory, InputLabelInfoProps, InputLabelInfoStylesNames };
export { InputLabelInfo };
//# sourceMappingURL=Input.d.ts.map