@7shifts/sous-chef 2.13.1 → 2.15.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/IconUserFriends.d.ts +11 -0
- package/dist/icons/components/index.d.ts +1 -0
- package/dist/index.css +42 -2967
- package/dist/index.js +1 -7022
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1 -6849
- package/dist/index.modern.js.map +1 -1
- package/dist/overlay/Modal/Modal.d.ts +2 -1
- package/dist/overlay/Modal/ModalBody/useScrollShadow.d.ts +7 -0
- package/package.json +5 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize } from '../types';
|
|
3
|
+
declare type Props = {
|
|
4
|
+
size?: IconSize;
|
|
5
|
+
color?: string;
|
|
6
|
+
} & React.SVGProps<SVGSVGElement>;
|
|
7
|
+
declare const IconUserFriends: {
|
|
8
|
+
(props: Props): JSX.Element;
|
|
9
|
+
displayName: string;
|
|
10
|
+
};
|
|
11
|
+
export default IconUserFriends;
|
|
@@ -112,6 +112,7 @@ export { default as IconUnderline } from './IconUnderline';
|
|
|
112
112
|
export { default as IconUndo } from './IconUndo';
|
|
113
113
|
export { default as IconUniversity } from './IconUniversity';
|
|
114
114
|
export { default as IconUserComputer } from './IconUserComputer';
|
|
115
|
+
export { default as IconUserFriends } from './IconUserFriends';
|
|
115
116
|
export { default as IconUserLight } from './IconUserLight';
|
|
116
117
|
export { default as IconUserPlus } from './IconUserPlus';
|
|
117
118
|
export { default as IconUserSlash } from './IconUserSlash';
|