@benefex/icons 0.6.1 → 0.7.1
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/AngleUpThin.d.ts +4 -0
- package/dist/AngleUpThin.js +5 -0
- package/dist/ArrowUpLight.d.ts +4 -0
- package/dist/ArrowUpLight.js +5 -0
- package/dist/DownloadRegular.d.ts +4 -0
- package/dist/DownloadRegular.js +5 -0
- package/dist/MagnifyingGlassRegular.d.ts +4 -0
- package/dist/MagnifyingGlassRegular.js +5 -0
- package/dist/MicrophoneRegular.d.ts +4 -0
- package/dist/MicrophoneRegular.js +5 -0
- package/dist/SnoozeRegular.d.ts +4 -0
- package/dist/SnoozeRegular.js +5 -0
- package/dist/SpinnerRegular.d.ts +4 -0
- package/dist/SpinnerRegular.js +5 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +7 -0
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const AngleUpThin = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", "aria-labelledby": titleId, ...props },
|
|
3
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
4
|
+
React.createElement("path", { fill: "currentColor", d: "M218.3 146.3c3.1-3.1 8.2-3.1 11.3 0l176 176c3.1 3.1 3.1 8.2 0 11.3s-8.2 3.1-11.3 0L224 163.3 53.7 333.7c-3.1 3.1-8.2 3.1-11.3 0s-3.1-8.2 0-11.3l176-176z" })));
|
|
5
|
+
export default AngleUpThin;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const ArrowUpLight = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 384 512", "aria-labelledby": titleId, ...props },
|
|
3
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
4
|
+
React.createElement("path", { fill: "currentColor", d: "M203.3 36.7c-6.2-6.2-16.4-6.2-22.6 0l-176 176c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L176 86.6V464c0 8.8 7.2 16 16 16s16-7.2 16-16V86.6l148.7 148.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6z" })));
|
|
5
|
+
export default ArrowUpLight;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const DownloadRegular = ({ 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: "M280 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v270.1l-95-95c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L239 369c9.4 9.4 24.6 9.4 33.9 0L409 233c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-95 95V24zM128.8 304H64c-35.3 0-64 28.7-64 64v80c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64v-80c0-35.3-28.7-64-64-64h-64.8l-48 48H448c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16v-80c0-8.8 7.2-16 16-16h112.8zM432 408a24 24 0 1 0-48 0 24 24 0 1 0 48 0" })));
|
|
5
|
+
export default DownloadRegular;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const MagnifyingGlassRegular = ({ 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: "m504.1 471-134-134c29-35.5 45-80.2 45-129 0-114.9-93.13-208-208-208S0 93.13 0 208s93.12 208 207.1 208c48.79 0 93.55-16.91 129-45.04l134 134c5.6 4.74 11.8 7.04 17.9 7.04s12.28-2.344 16.97-7.031c9.33-9.369 9.33-24.569-.87-33.969M48 208c0-88.22 71.78-160 160-160s160 71.78 160 160-71.78 160-160 160S48 296.2 48 208" })));
|
|
5
|
+
export default MagnifyingGlassRegular;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const MicrophoneRegular = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 384 512", "aria-labelledby": titleId, ...props },
|
|
3
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
4
|
+
React.createElement("path", { fill: "currentColor", d: "M240 96v160c0 26.5-21.5 48-48 48s-48-21.5-48-48V96c0-26.5 21.5-48 48-48s48 21.5 48 48M96 96v160c0 53 43 96 96 96s96-43 96-96V96c0-53-43-96-96-96S96 43 96 96M64 216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 89.1 66.2 162.7 152 174.4V464h-48c-13.3 0-24 10.7-24 24s10.7 24 24 24h144c13.3 0 24-10.7 24-24s-10.7-24-24-24h-48v-33.6c85.8-11.7 152-85.3 152-174.4v-40c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 70.7-57.3 128-128 128S64 326.7 64 256z" })));
|
|
5
|
+
export default MicrophoneRegular;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const SnoozeRegular = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", "aria-labelledby": titleId, ...props },
|
|
3
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
4
|
+
React.createElement("path", { fill: "currentColor", d: "M184 0c-13.3 0-24 10.7-24 24s10.7 24 24 24h59.1l-77.2 88.2c-6.2 7.1-7.7 17.1-3.8 25.7S174.6 176 184 176h112c13.3 0 24-10.7 24-24s-10.7-24-24-24h-59.1l77.2-88.2c6.2-7.1 7.7-17.1 3.8-25.7S305.4 0 296 0zm128 224c-13.3 0-24 10.7-24 24s10.7 24 24 24h62.9l-81.8 105.3c-5.6 7.2-6.6 17-2.6 25.3s12.4 13.5 21.6 13.5H424c13.3 0 24-10.7 24-24s-10.7-24-24-24h-62.9L443 262.8c5.6-7.2 6.6-17 2.6-25.3S433.2 224 424 224zm-288 0c-13.3 0-24 10.7-24 24s10.7 24 24 24h128.6L4.6 473.8c-5.3 7.3-6.1 17-2.1 25S15 512 24 512h176c13.3 0 24-10.7 24-24s-10.7-24-24-24H71.4l148-201.8c5.3-7.3 6.1-17 2.1-25S209 224 200 224z" })));
|
|
5
|
+
export default SnoozeRegular;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const SpinnerRegular = ({ 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: "M288 32a32 32 0 1 0-64 0 32 32 0 1 0 64 0m0 448a32 32 0 1 0-64 0 32 32 0 1 0 64 0m160-224a32 32 0 1 0 64 0 32 32 0 1 0-64 0M32 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64m43 149a32 32 0 1 0 45.3-45.3A32 32 0 1 0 75 437m316.8 0a32 32 0 1 0 45.2-45.2 32 32 0 1 0-45.2 45.2M75 75a32 32 0 1 0 45.3 45.3A32 32 0 1 0 75 75" })));
|
|
5
|
+
export default SpinnerRegular;
|
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export { default as AngleLeftThin } from './AngleLeftThin';
|
|
|
5
5
|
export { default as AngleRightLight } from './AngleRightLight';
|
|
6
6
|
export { default as AngleRightThin } from './AngleRightThin';
|
|
7
7
|
export { default as AngleUpLight } from './AngleUpLight';
|
|
8
|
+
export { default as AngleUpThin } from './AngleUpThin';
|
|
8
9
|
export { default as ArrowLeftLight } from './ArrowLeftLight';
|
|
9
10
|
export { default as ArrowPointerRegular } from './ArrowPointerRegular';
|
|
10
11
|
export { default as ArrowPointerThin } from './ArrowPointerThin';
|
|
@@ -13,6 +14,7 @@ export { default as ArrowRightFromBracketThin } from './ArrowRightFromBracketThi
|
|
|
13
14
|
export { default as ArrowRightLight } from './ArrowRightLight';
|
|
14
15
|
export { default as ArrowRotateRightLight } from './ArrowRotateRightLight';
|
|
15
16
|
export { default as ArrowTrendUpLight } from './ArrowTrendUpLight';
|
|
17
|
+
export { default as ArrowUpLight } from './ArrowUpLight';
|
|
16
18
|
export { default as ArrowUpRightAndArrowDownLeftFromCenterLight } from './ArrowUpRightAndArrowDownLeftFromCenterLight';
|
|
17
19
|
export { default as ArrowUpRightFromSquareLight } from './ArrowUpRightFromSquareLight';
|
|
18
20
|
export { default as ArrowsRotateLight } from './ArrowsRotateLight';
|
|
@@ -89,6 +91,7 @@ export { default as CreditCardThin } from './CreditCardThin';
|
|
|
89
91
|
export { default as DesktopLight } from './DesktopLight';
|
|
90
92
|
export { default as DiagramCellsLight } from './DiagramCellsLight';
|
|
91
93
|
export { default as DownloadLight } from './DownloadLight';
|
|
94
|
+
export { default as DownloadRegular } from './DownloadRegular';
|
|
92
95
|
export { default as EarListenLight } from './EarListenLight';
|
|
93
96
|
export { default as EarthAfricaLight } from './EarthAfricaLight';
|
|
94
97
|
export { default as EllipsisLight } from './EllipsisLight';
|
|
@@ -190,6 +193,7 @@ export { default as LockKeyholeLight } from './LockKeyholeLight';
|
|
|
190
193
|
export { default as LockKeyholeThin } from './LockKeyholeThin';
|
|
191
194
|
export { default as LotusThin } from './LotusThin';
|
|
192
195
|
export { default as MagnifyingGlassLight } from './MagnifyingGlassLight';
|
|
196
|
+
export { default as MagnifyingGlassRegular } from './MagnifyingGlassRegular';
|
|
193
197
|
export { default as MagnifyingGlassThin } from './MagnifyingGlassThin';
|
|
194
198
|
export { default as MapLocationLight } from './MapLocationLight';
|
|
195
199
|
export { default as MemoCircleInfoThin } from './MemoCircleInfoThin';
|
|
@@ -207,6 +211,7 @@ export { default as MessageTextLight } from './MessageTextLight';
|
|
|
207
211
|
export { default as MessageTextThin } from './MessageTextThin';
|
|
208
212
|
export { default as MessageThin } from './MessageThin';
|
|
209
213
|
export { default as MessagesLight } from './MessagesLight';
|
|
214
|
+
export { default as MicrophoneRegular } from './MicrophoneRegular';
|
|
210
215
|
export { default as MinusLight } from './MinusLight';
|
|
211
216
|
export { default as MobileLight } from './MobileLight';
|
|
212
217
|
export { default as MoneyBillTransferLight } from './MoneyBillTransferLight';
|
|
@@ -270,6 +275,7 @@ export { default as SidebarLight } from './SidebarLight';
|
|
|
270
275
|
export { default as SitemapLight } from './SitemapLight';
|
|
271
276
|
export { default as SkypeBrands } from './SkypeBrands';
|
|
272
277
|
export { default as SlackBrands } from './SlackBrands';
|
|
278
|
+
export { default as SnoozeRegular } from './SnoozeRegular';
|
|
273
279
|
export { default as SnowflakeLight } from './SnowflakeLight';
|
|
274
280
|
export { default as SortDownLight } from './SortDownLight';
|
|
275
281
|
export { default as SortLight } from './SortLight';
|
|
@@ -277,6 +283,7 @@ export { default as SortUpLight } from './SortUpLight';
|
|
|
277
283
|
export { default as SparklesLight } from './SparklesLight';
|
|
278
284
|
export { default as SparklesRegular } from './SparklesRegular';
|
|
279
285
|
export { default as SparklesSolid } from './SparklesSolid';
|
|
286
|
+
export { default as SpinnerRegular } from './SpinnerRegular';
|
|
280
287
|
export { default as SpinnerThirdDuotoneSolid } from './SpinnerThirdDuotoneSolid';
|
|
281
288
|
export { default as SpotifyBrands } from './SpotifyBrands';
|
|
282
289
|
export { default as SquareArrowUpRightLight } from './SquareArrowUpRightLight';
|
package/dist/index.js
CHANGED
|
@@ -5,6 +5,7 @@ export { default as AngleLeftThin } from './AngleLeftThin';
|
|
|
5
5
|
export { default as AngleRightLight } from './AngleRightLight';
|
|
6
6
|
export { default as AngleRightThin } from './AngleRightThin';
|
|
7
7
|
export { default as AngleUpLight } from './AngleUpLight';
|
|
8
|
+
export { default as AngleUpThin } from './AngleUpThin';
|
|
8
9
|
export { default as ArrowLeftLight } from './ArrowLeftLight';
|
|
9
10
|
export { default as ArrowPointerRegular } from './ArrowPointerRegular';
|
|
10
11
|
export { default as ArrowPointerThin } from './ArrowPointerThin';
|
|
@@ -13,6 +14,7 @@ export { default as ArrowRightFromBracketThin } from './ArrowRightFromBracketThi
|
|
|
13
14
|
export { default as ArrowRightLight } from './ArrowRightLight';
|
|
14
15
|
export { default as ArrowRotateRightLight } from './ArrowRotateRightLight';
|
|
15
16
|
export { default as ArrowTrendUpLight } from './ArrowTrendUpLight';
|
|
17
|
+
export { default as ArrowUpLight } from './ArrowUpLight';
|
|
16
18
|
export { default as ArrowUpRightAndArrowDownLeftFromCenterLight } from './ArrowUpRightAndArrowDownLeftFromCenterLight';
|
|
17
19
|
export { default as ArrowUpRightFromSquareLight } from './ArrowUpRightFromSquareLight';
|
|
18
20
|
export { default as ArrowsRotateLight } from './ArrowsRotateLight';
|
|
@@ -89,6 +91,7 @@ export { default as CreditCardThin } from './CreditCardThin';
|
|
|
89
91
|
export { default as DesktopLight } from './DesktopLight';
|
|
90
92
|
export { default as DiagramCellsLight } from './DiagramCellsLight';
|
|
91
93
|
export { default as DownloadLight } from './DownloadLight';
|
|
94
|
+
export { default as DownloadRegular } from './DownloadRegular';
|
|
92
95
|
export { default as EarListenLight } from './EarListenLight';
|
|
93
96
|
export { default as EarthAfricaLight } from './EarthAfricaLight';
|
|
94
97
|
export { default as EllipsisLight } from './EllipsisLight';
|
|
@@ -190,6 +193,7 @@ export { default as LockKeyholeLight } from './LockKeyholeLight';
|
|
|
190
193
|
export { default as LockKeyholeThin } from './LockKeyholeThin';
|
|
191
194
|
export { default as LotusThin } from './LotusThin';
|
|
192
195
|
export { default as MagnifyingGlassLight } from './MagnifyingGlassLight';
|
|
196
|
+
export { default as MagnifyingGlassRegular } from './MagnifyingGlassRegular';
|
|
193
197
|
export { default as MagnifyingGlassThin } from './MagnifyingGlassThin';
|
|
194
198
|
export { default as MapLocationLight } from './MapLocationLight';
|
|
195
199
|
export { default as MemoCircleInfoThin } from './MemoCircleInfoThin';
|
|
@@ -207,6 +211,7 @@ export { default as MessageTextLight } from './MessageTextLight';
|
|
|
207
211
|
export { default as MessageTextThin } from './MessageTextThin';
|
|
208
212
|
export { default as MessageThin } from './MessageThin';
|
|
209
213
|
export { default as MessagesLight } from './MessagesLight';
|
|
214
|
+
export { default as MicrophoneRegular } from './MicrophoneRegular';
|
|
210
215
|
export { default as MinusLight } from './MinusLight';
|
|
211
216
|
export { default as MobileLight } from './MobileLight';
|
|
212
217
|
export { default as MoneyBillTransferLight } from './MoneyBillTransferLight';
|
|
@@ -270,6 +275,7 @@ export { default as SidebarLight } from './SidebarLight';
|
|
|
270
275
|
export { default as SitemapLight } from './SitemapLight';
|
|
271
276
|
export { default as SkypeBrands } from './SkypeBrands';
|
|
272
277
|
export { default as SlackBrands } from './SlackBrands';
|
|
278
|
+
export { default as SnoozeRegular } from './SnoozeRegular';
|
|
273
279
|
export { default as SnowflakeLight } from './SnowflakeLight';
|
|
274
280
|
export { default as SortDownLight } from './SortDownLight';
|
|
275
281
|
export { default as SortLight } from './SortLight';
|
|
@@ -277,6 +283,7 @@ export { default as SortUpLight } from './SortUpLight';
|
|
|
277
283
|
export { default as SparklesLight } from './SparklesLight';
|
|
278
284
|
export { default as SparklesRegular } from './SparklesRegular';
|
|
279
285
|
export { default as SparklesSolid } from './SparklesSolid';
|
|
286
|
+
export { default as SpinnerRegular } from './SpinnerRegular';
|
|
280
287
|
export { default as SpinnerThirdDuotoneSolid } from './SpinnerThirdDuotoneSolid';
|
|
281
288
|
export { default as SpotifyBrands } from './SpotifyBrands';
|
|
282
289
|
export { default as SquareArrowUpRightLight } from './SquareArrowUpRightLight';
|