@dev-blinq/ui-systems 1.0.84 → 1.0.85

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ import { CheckboxProps } from '@mui/material';
2
+ interface ICheckbox {
3
+ label?: string | React.ReactNode;
4
+ onClick?: (checked: boolean) => void;
5
+ }
6
+ export default function MUICheckbox(props: CheckboxProps & ICheckbox): import("react/jsx-runtime").JSX.Element;
7
+ export {};
@@ -0,0 +1,6 @@
1
+ export declare const StyledCheckbox: import('@emotion/styled').StyledComponent<import('@mui/material').CheckboxProps & {
2
+ theme?: import('@emotion/react').Theme;
3
+ }, {}, {}>;
4
+ export declare const StyledFormControlLabel: import('@emotion/styled').StyledComponent<import('@mui/material').FormControlLabelProps & {
5
+ theme?: import('@emotion/react').Theme;
6
+ }, {}, {}>;
@@ -0,0 +1 @@
1
+ export declare const defaultTheme: import('@mui/material').Theme;
@@ -8,3 +8,5 @@ export * from './Loading/LinearProgressBar';
8
8
  export * from './Button/Button';
9
9
  export * from './Input/Input';
10
10
  export * from './Select/Select';
11
+ export * from './Checkbox/Checkbox';
12
+ export * from './Theme';