@benefex/icons 0.2.4 → 0.2.5

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,4 @@
1
+ import * as React from 'react';
2
+ import { SVGRProps } from './svgr';
3
+ declare const UserGroupThin: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default UserGroupThin;
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ const UserGroupThin = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 640 512", "aria-labelledby": titleId, ...props },
3
+ title ? React.createElement("title", { id: titleId }, title) : null,
4
+ React.createElement("path", { fill: "currentColor", d: "M112 128a112 112 0 1 1 224 0 112 112 0 1 1-224 0M16 482.3C16 392.7 88.7 320 178.3 320h91.4c89.6 0 162.3 72.7 162.3 162.3 0 7.6-6.1 13.7-13.7 13.7H29.7c-7.6 0-13.7-6.1-13.7-13.7M224 256a128 128 0 1 0 0-256 128 128 0 1 0 0 256m-45.7 48C79.8 304 0 383.8 0 482.3 0 498.7 13.3 512 29.7 512h388.6c16.4 0 29.7-13.3 29.7-29.7 0-98.5-79.8-178.3-178.3-178.3zm431 208c17 0 30.7-13.8 30.7-30.7 0-89.1-72.2-161.3-161.3-161.3h-61.4c-4.4 0-8.8.2-13.2.5 5.8 4.9 11.4 10 16.7 15.5h57.9C559 336 624 401 624 481.3c0 8.1-6.6 14.7-14.7 14.7H478.5c-1.3 5.7-3.4 11-6.1 16zM432 256c61.9 0 112-50.1 112-112S493.9 32 432 32c-24.8 0-47.7 8.1-66.3 21.7 2.5 4.8 4.8 9.8 6.9 14.9C388.9 55.7 409.6 48 432 48c53 0 96 43 96 96s-43 96-96 96c-27.7 0-52.7-11.8-70.2-30.6-2.8 4.7-5.8 9.3-9.1 13.7C373 243.4 401 256 432 256" })));
5
+ export default UserGroupThin;
package/dist/index.d.ts CHANGED
@@ -265,6 +265,7 @@ export { default as TvRetroLight } from './TvRetroLight';
265
265
  export { default as UploadThin } from './UploadThin';
266
266
  export { default as UserCheckLight } from './UserCheckLight';
267
267
  export { default as UserGroupLight } from './UserGroupLight';
268
+ export { default as UserGroupThin } from './UserGroupThin';
268
269
  export { default as UserLight } from './UserLight';
269
270
  export { default as UserMinusLight } from './UserMinusLight';
270
271
  export { default as UserPenLight } from './UserPenLight';
package/dist/index.js CHANGED
@@ -265,6 +265,7 @@ export { default as TvRetroLight } from './TvRetroLight';
265
265
  export { default as UploadThin } from './UploadThin';
266
266
  export { default as UserCheckLight } from './UserCheckLight';
267
267
  export { default as UserGroupLight } from './UserGroupLight';
268
+ export { default as UserGroupThin } from './UserGroupThin';
268
269
  export { default as UserLight } from './UserLight';
269
270
  export { default as UserMinusLight } from './UserMinusLight';
270
271
  export { default as UserPenLight } from './UserPenLight';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benefex/icons",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "Benefex icon package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",