@benefex/icons 0.20.1 → 0.22.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,4 @@
1
+ import * as React from 'react';
2
+ import { SVGRProps } from './svgr';
3
+ declare const BoxArchiveLight: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default BoxArchiveLight;
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ const BoxArchiveLight = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", "aria-labelledby": titleId, ...props },
3
+ title ? React.createElement("title", { id: titleId }, title) : null,
4
+ React.createElement("path", { fill: "currentColor", d: "M464 32H48C21.49 32 0 53.49 0 80v64c0 8.8 7.25 16 16 16h16v256c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V160h16c8.8 0 16-7.2 16-16V80c0-26.51-21.5-48-48-48m-16 384c0 17.6-14.4 32-32 32H96c-17.6 0-32-14.4-32-32V160h384zm32-288H32V80c0-8.75 7.25-16 16-16h416c8.8 0 16 7.25 16 16zM176 256h160c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16s7.2 16 16 16" })));
5
+ export default BoxArchiveLight;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SVGRProps } from './svgr';
3
+ declare const Magnifier: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default Magnifier;
@@ -0,0 +1,13 @@
1
+ import * as React from 'react';
2
+ const Magnifier = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
3
+ title ? React.createElement("title", { id: titleId }, title) : null,
4
+ React.createElement("path", { fill: "url(#magnifier_svg__a)", d: "M16.25 8.124c0 1.792-.582 3.449-1.562 4.792l4.945 4.95a1.252 1.252 0 0 1-1.77 1.77l-4.945-4.95a8.08 8.08 0 0 1-4.793 1.563A8.124 8.124 0 0 1 0 8.124 8.124 8.124 0 0 1 8.125-.001a8.124 8.124 0 0 1 8.125 8.125m-8.125 5.624a5.627 5.627 0 0 0 3.977-9.602 5.625 5.625 0 1 0-3.977 9.603" }),
5
+ React.createElement("path", { fill: "url(#magnifier_svg__b)", d: "M8.305 4.195a.335.335 0 0 0-.608 0L6.588 6.588 4.195 7.694a.335.335 0 0 0 0 .61L6.59 9.412l1.105 2.393a.335.335 0 0 0 .608 0L9.41 9.41l2.395-1.106a.335.335 0 0 0 0-.609L9.412 6.59z" }),
6
+ React.createElement("defs", null,
7
+ React.createElement("linearGradient", { id: "magnifier_svg__a", x1: 0, x2: 21.824, y1: 0.372, y2: 2.67, gradientUnits: "userSpaceOnUse" },
8
+ React.createElement("stop", { stopColor: "#CA54FF" }),
9
+ React.createElement("stop", { offset: 1, stopColor: "#7637E3" })),
10
+ React.createElement("linearGradient", { id: "magnifier_svg__b", x1: 4, x2: 12.73, y1: 4.149, y2: 5.068, gradientUnits: "userSpaceOnUse" },
11
+ React.createElement("stop", { stopColor: "#CA54FF" }),
12
+ React.createElement("stop", { offset: 1, stopColor: "#7637E3" })))));
13
+ export default Magnifier;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SVGRProps } from './svgr';
3
+ declare const SendSolid: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default SendSolid;
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ const SendSolid = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 20 16", "aria-labelledby": titleId, ...props },
3
+ title ? React.createElement("title", { id: titleId }, title) : null,
4
+ React.createElement("g", { clipPath: "url(#send-solid_svg__a)" },
5
+ React.createElement("path", { fill: "currentColor", d: "m16.406 2.906-4.5 11a1.01 1.01 0 0 1-1.125.594c-.469-.094-.781-.5-.781-1V8H4.5c-.5 0-.906-.312-1-.781a1.01 1.01 0 0 1 .594-1.125l11-4.5a1.01 1.01 0 0 1 1.094.218c.28.282.375.72.218 1.094" })),
6
+ React.createElement("defs", null,
7
+ React.createElement("clipPath", { id: "send-solid_svg__a" },
8
+ React.createElement("path", { fill: "#fff", d: "M0 0h20v16H0z" })))));
9
+ export default SendSolid;
package/dist/index.d.ts CHANGED
@@ -38,6 +38,7 @@ export { default as BlockQuoteLight } from './BlockQuoteLight';
38
38
  export { default as BoldRegular } from './BoldRegular';
39
39
  export { default as BookOpenLight } from './BookOpenLight';
40
40
  export { default as BookOpenThin } from './BookOpenThin';
41
+ export { default as BoxArchiveLight } from './BoxArchiveLight';
41
42
  export { default as BoxHeartLight } from './BoxHeartLight';
42
43
  export { default as BrainLight } from './BrainLight';
43
44
  export { default as BrainRegular } from './BrainRegular';
@@ -202,6 +203,7 @@ export { default as LocationPin } from './LocationPin';
202
203
  export { default as LockKeyholeLight } from './LockKeyholeLight';
203
204
  export { default as LockKeyholeThin } from './LockKeyholeThin';
204
205
  export { default as LotusThin } from './LotusThin';
206
+ export { default as Magnifier } from './Magnifier';
205
207
  export { default as MagnifyingGlassLight } from './MagnifyingGlassLight';
206
208
  export { default as MagnifyingGlassRegular } from './MagnifyingGlassRegular';
207
209
  export { default as MagnifyingGlassThin } from './MagnifyingGlassThin';
@@ -285,6 +287,7 @@ export { default as RectangleBarcodeLight } from './RectangleBarcodeLight';
285
287
  export { default as RocketLight } from './RocketLight';
286
288
  export { default as SackDollarLight } from './SackDollarLight';
287
289
  export { default as ScrewdriverWrenchLight } from './ScrewdriverWrenchLight';
290
+ export { default as SendSolid } from './SendSolid';
288
291
  export { default as ServerLight } from './ServerLight';
289
292
  export { default as ShareLight } from './ShareLight';
290
293
  export { default as ShieldCheckLight } from './ShieldCheckLight';
package/dist/index.js CHANGED
@@ -38,6 +38,7 @@ export { default as BlockQuoteLight } from './BlockQuoteLight';
38
38
  export { default as BoldRegular } from './BoldRegular';
39
39
  export { default as BookOpenLight } from './BookOpenLight';
40
40
  export { default as BookOpenThin } from './BookOpenThin';
41
+ export { default as BoxArchiveLight } from './BoxArchiveLight';
41
42
  export { default as BoxHeartLight } from './BoxHeartLight';
42
43
  export { default as BrainLight } from './BrainLight';
43
44
  export { default as BrainRegular } from './BrainRegular';
@@ -202,6 +203,7 @@ export { default as LocationPin } from './LocationPin';
202
203
  export { default as LockKeyholeLight } from './LockKeyholeLight';
203
204
  export { default as LockKeyholeThin } from './LockKeyholeThin';
204
205
  export { default as LotusThin } from './LotusThin';
206
+ export { default as Magnifier } from './Magnifier';
205
207
  export { default as MagnifyingGlassLight } from './MagnifyingGlassLight';
206
208
  export { default as MagnifyingGlassRegular } from './MagnifyingGlassRegular';
207
209
  export { default as MagnifyingGlassThin } from './MagnifyingGlassThin';
@@ -285,6 +287,7 @@ export { default as RectangleBarcodeLight } from './RectangleBarcodeLight';
285
287
  export { default as RocketLight } from './RocketLight';
286
288
  export { default as SackDollarLight } from './SackDollarLight';
287
289
  export { default as ScrewdriverWrenchLight } from './ScrewdriverWrenchLight';
290
+ export { default as SendSolid } from './SendSolid';
288
291
  export { default as ServerLight } from './ServerLight';
289
292
  export { default as ShareLight } from './ShareLight';
290
293
  export { default as ShieldCheckLight } from './ShieldCheckLight';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benefex/icons",
3
- "version": "0.20.1",
3
+ "version": "0.22.0",
4
4
  "description": "Benefex icon package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",