@7shifts/sous-chef 3.65.2 → 3.67.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/i18n/locales/en.json +1 -1
- package/dist/icons/components/IconDollarSign.d.ts +9 -0
- package/dist/icons/components/index.d.ts +1 -0
- package/dist/index.js +170 -129
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +171 -130
- package/dist/index.modern.js.map +1 -1
- package/dist/overlay/HintModal/HintModal.d.ts +2 -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 IconDollarSign: React.ForwardRefExoticComponent<Omit<Props, 'ref'>>;
|
|
9
|
+
export default IconDollarSign;
|
|
@@ -54,6 +54,7 @@ export { default as IconCreditCardPlus } from './IconCreditCardPlus';
|
|
|
54
54
|
export { default as IconCreditCard } from './IconCreditCard';
|
|
55
55
|
export { default as IconDecentMonochromatic } from './IconDecentMonochromatic';
|
|
56
56
|
export { default as IconDecent } from './IconDecent';
|
|
57
|
+
export { default as IconDollarSign } from './IconDollarSign';
|
|
57
58
|
export { default as IconDownload } from './IconDownload';
|
|
58
59
|
export { default as IconEdit } from './IconEdit';
|
|
59
60
|
export { default as IconEllipsisV } from './IconEllipsisV';
|