@leapdevuk/component-toolbox 0.0.86 → 0.0.87

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,9 @@
1
+ import { FC } from 'react';
2
+ interface ICheckBoxProps {
3
+ label?: string;
4
+ value?: boolean;
5
+ disabled?: boolean;
6
+ onChange?: (value: boolean) => void;
7
+ }
8
+ declare const LCTCheckBox: FC<ICheckBoxProps>;
9
+ export default LCTCheckBox;
@@ -0,0 +1 @@
1
+ export { default as LCTCheckbox } from './LCTCheckbox';
@@ -19,6 +19,7 @@ export * from './numberdisplay';
19
19
  export * from './numberinput';
20
20
  export * from './select';
21
21
  export * from './snackbar';
22
+ export * from './staffavatar';
22
23
  export * from './svgicon';
23
24
  export * from './textfield';
24
25
  export * from './tooltip';
@@ -0,0 +1,7 @@
1
+ interface IStaffAvatarProps {
2
+ staffInitials?: string;
3
+ hideMargin?: boolean;
4
+ fullName?: string;
5
+ }
6
+ declare const LCTStaffAvatar: (props: IStaffAvatarProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default LCTStaffAvatar;
@@ -0,0 +1 @@
1
+ export { default as LCTStaffAvatar } from './LCTStaffAvatar';
@@ -0,0 +1,6 @@
1
+ import { FC } from 'react';
2
+ interface IIconProps {
3
+ disabled?: boolean;
4
+ }
5
+ declare const CheckedCheckboxIcon: FC<IIconProps>;
6
+ export default CheckedCheckboxIcon;
@@ -0,0 +1,2 @@
1
+ declare function CheckboxIcon(): import("react/jsx-runtime").JSX.Element;
2
+ export default CheckboxIcon;