@7shifts/sous-chef 2.13.1 → 2.14.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.
|
@@ -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';
|
package/dist/index.js
CHANGED
|
@@ -2870,6 +2870,21 @@ var IconUserComputer = function IconUserComputer(props) {
|
|
|
2870
2870
|
|
|
2871
2871
|
IconUserComputer.displayName = 'IconUserComputer';
|
|
2872
2872
|
|
|
2873
|
+
var IconUserFriends = function IconUserFriends(props) {
|
|
2874
|
+
return React__default.createElement("svg", Object.assign({
|
|
2875
|
+
viewBox: "0 0 20 20",
|
|
2876
|
+
fill: "none",
|
|
2877
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2878
|
+
"data-testid": "icon-user-friends",
|
|
2879
|
+
style: getIconStyles(props)
|
|
2880
|
+
}, props), React__default.createElement("path", {
|
|
2881
|
+
d: "M15 10a3 3 0 1 0-.002-6.002A3 3 0 0 0 15 10Zm0-5c1.103 0 2 .897 2 2s-.897 2-2 2-2-.897-2-2 .897-2 2-2Zm-9 5c1.934 0 3.5-1.566 3.5-3.5S7.934 3 6 3a3.498 3.498 0 0 0-3.5 3.5C2.5 8.434 4.066 10 6 10Zm0-6c1.378 0 2.5 1.122 2.5 2.5S7.378 9 6 9a2.503 2.503 0 0 1-2.5-2.5C3.5 5.122 4.622 4 6 4Zm2.503 6.625C7.46 10.625 7.2 11 6 11c-1.2 0-1.46-.375-2.503-.375-1.135 0-2.238.506-2.885 1.466A3.581 3.581 0 0 0 0 14.1v1.4A1.5 1.5 0 0 0 1.5 17h9a1.5 1.5 0 0 0 1.5-1.5v-1.4c0-.744-.225-1.434-.613-2.01-.646-.959-1.75-1.465-2.884-1.465ZM11 15.5c0 .275-.225.5-.5.5h-9a.501.501 0 0 1-.5-.5v-1.4c0-.519.153-1.022.44-1.45.432-.64 1.2-1.025 2.054-1.025.856 0 1.162.375 2.506.375 1.344 0 1.65-.375 2.503-.375.853 0 1.622.384 2.053 1.025.288.428.44.931.44 1.45v1.4H11Zm8.49-3.59c-.54-.8-1.459-1.223-2.402-1.223-.87 0-1.088.313-2.088.313s-1.219-.313-2.088-.313a3.05 3.05 0 0 0-1.19.254c.475.48.578.737.631.83a2.05 2.05 0 0 1 .56-.08c.68 0 .937.312 2.087.312 1.15 0 1.406-.312 2.087-.312.657 0 1.244.29 1.576.78.221.329.34.716.34 1.117v1.162a.25.25 0 0 1-.25.25H13c0 .553.01.703-.05 1h5.8c.69 0 1.25-.56 1.25-1.25v-1.166c0-.621-.188-1.197-.51-1.675Z",
|
|
2882
|
+
fill: "currentColor"
|
|
2883
|
+
}));
|
|
2884
|
+
};
|
|
2885
|
+
|
|
2886
|
+
IconUserFriends.displayName = 'IconUserFriends';
|
|
2887
|
+
|
|
2873
2888
|
var IconUserLight = function IconUserLight(props) {
|
|
2874
2889
|
return React__default.createElement("svg", Object.assign({
|
|
2875
2890
|
viewBox: "0 0 20 20",
|
|
@@ -6980,6 +6995,7 @@ exports.IconUnderline = IconUnderline;
|
|
|
6980
6995
|
exports.IconUndo = IconUndo;
|
|
6981
6996
|
exports.IconUniversity = IconUniversity;
|
|
6982
6997
|
exports.IconUserComputer = IconUserComputer;
|
|
6998
|
+
exports.IconUserFriends = IconUserFriends;
|
|
6983
6999
|
exports.IconUserLight = IconUserLight;
|
|
6984
7000
|
exports.IconUserPlus = IconUserPlus;
|
|
6985
7001
|
exports.IconUserSlash = IconUserSlash;
|