@7shifts/sous-chef 3.36.3 → 3.37.0
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.
- package/dist/icons/components/IconHatChef.d.ts +9 -0
- package/dist/icons/components/IconPlateUtensils.d.ts +9 -0
- package/dist/icons/components/index.d.ts +2 -0
- package/dist/index.js +239 -181
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +238 -182
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize } from '../types';
|
|
3
|
+
type Props = {
|
|
4
|
+
size?: IconSize;
|
|
5
|
+
color?: string;
|
|
6
|
+
testId?: string;
|
|
7
|
+
} & React.SVGProps<SVGSVGElement>;
|
|
8
|
+
declare const IconHatChef: React.ForwardRefExoticComponent<Omit<Props, 'ref'>>;
|
|
9
|
+
export default IconHatChef;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize } from '../types';
|
|
3
|
+
type Props = {
|
|
4
|
+
size?: IconSize;
|
|
5
|
+
color?: string;
|
|
6
|
+
testId?: string;
|
|
7
|
+
} & React.SVGProps<SVGSVGElement>;
|
|
8
|
+
declare const IconPlateUtensils: React.ForwardRefExoticComponent<Omit<Props, 'ref'>>;
|
|
9
|
+
export default IconPlateUtensils;
|
|
@@ -78,6 +78,7 @@ export { default as IconGreat } from './IconGreat';
|
|
|
78
78
|
export { default as IconGrinBeam } from './IconGrinBeam';
|
|
79
79
|
export { default as IconGripVertical } from './IconGripVertical';
|
|
80
80
|
export { default as IconHandshake } from './IconHandshake';
|
|
81
|
+
export { default as IconHatChef } from './IconHatChef';
|
|
81
82
|
export { default as IconImage } from './IconImage';
|
|
82
83
|
export { default as IconIslandTropical } from './IconIslandTropical';
|
|
83
84
|
export { default as IconItalic } from './IconItalic';
|
|
@@ -102,6 +103,7 @@ export { default as IconPaperclip } from './IconPaperclip';
|
|
|
102
103
|
export { default as IconPencil } from './IconPencil';
|
|
103
104
|
export { default as IconPercentage } from './IconPercentage';
|
|
104
105
|
export { default as IconPhone } from './IconPhone';
|
|
106
|
+
export { default as IconPlateUtensils } from './IconPlateUtensils';
|
|
105
107
|
export { default as IconPlug } from './IconPlug';
|
|
106
108
|
export { default as IconPlus } from './IconPlus';
|
|
107
109
|
export { default as IconPrint } from './IconPrint';
|