@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.
@@ -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';