@benefex/icons 0.2.6 → 0.2.8
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/PrintLight.d.ts +4 -0
- package/dist/PrintLight.js +5 -0
- package/dist/ThumbsUpThin.d.ts +4 -0
- package/dist/ThumbsUpThin.js +5 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const PrintLight = ({ 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: "M416 320H96c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32V352c0-17.7-14.3-32-32-32m0 160H96V352h320zm32-288V70.63c0-8.49-3.4-16.63-9.4-22.63L399.97 9.37C393.1 3.37 385.9 0 377.4 0H128C92.65 0 64 28.65 64 64v128c-35.3 0-64 28.7-64 64v112c0 8.8 7.156 16 16 16s16-7.2 16-16V256c0-17.67 14.33-32 32-32h384c17.67 0 32 14.33 32 32v112c0 8.844 7.156 16 16 16s16-7.156 16-16V256c0-35.3-28.7-64-64-64m-32 0H96V64c0-17.67 14.33-32 32-32h249.4L416 70.63zm16 56c-13.25 0-24 10.74-24 24 0 13.25 10.75 24 24 24s24-10.75 24-24c0-13.3-10.7-24-24-24" })));
|
|
5
|
+
export default PrintLight;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const ThumbsUpThin = ({ 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: "M96 191.1H32c-17.67 0-32 14.33-32 31.1v223.1c0 17.67 14.33 31.1 32 31.1h64c17.67 0 32-14.32 32-31.1V223.1c0-16.8-14.3-32-32-32M112 448c0 8.822-7.178 16-16 16H32c-8.822 0-16-7.178-16-16V224c0-8.822 7.178-16 16-16h64c8.822 0 16 7.178 16 16zm400-218.5c0-30.4-24.1-53.5-53.8-53.5H329.3c20.9-36.5 30.7-74.9 30.7-90.08C360 59.42 339.4 32 304.9 32c-67.61 0-32.66 76.37-108.1 136.8l-33.6 24.8c-2.1 1.5-4.1 4-4.1 6.4 0 5.952 5.424 7.995 8.012 7.995a7.94 7.94 0 0 0 4.755-1.579l33.7-24.98C285.8 117.1 253.2 48 304.8 48c24.5 0 39.2 19.28 39.2 37.92 0 12.06-9.047 49.66-30.66 85.64l-5.328 8a7.95 7.95 0 0 0-1.341 4.425C306.7 188.6 310.5 192 314.7 192h143.5c20.8 0 37.8 16.8 37.8 37.5 0 19.5-15.47 35.84-35.23 37.19-4.233.3-7.458 3.821-7.458 7.983 0 7.198 12.15 11.17 12.15 30.63 0 17.98-12.95 33.45-30.81 36.77-2.821.51-6.547 3.135-6.547 7.861 0 5.129 6.812 9.568 6.812 23.58 0 16.16-10.53 30.41-26.19 35.45a7.98 7.98 0 0 0-5.546 7.602c0 2.175 1.186 4.507 1.186 10.01 0 20.66-16.97 37.47-37.81 37.47h-56.03c-31.09 0-61.94-10.2-87.19-28.98l-50.91-33.69a7.96 7.96 0 0 0-4.419-1.342c-4.407 0-8.003 3.585-8.003 8.001a8 8 0 0 0 3.578 6.685l50.55 33.44C241.8 468.7 276 480 310.5 480h56.03c29.67 0 53.81-23.98 53.81-53.47 0-1.641-.078-3.281-.25-4.938 18.67-8.75 30.8-27.31 30.8-48.13 0-6.297-1.172-12.58-3.453-18.55 20.19-7.906 34-27.42 34-49.66 0-8.844-2.25-17.48-6.453-25.2C496.5 273 512 252.8 512 229.5" })));
|
|
5
|
+
export default ThumbsUpThin;
|
package/dist/index.d.ts
CHANGED
|
@@ -235,6 +235,7 @@ export { default as PiggyBankLight } from './PiggyBankLight';
|
|
|
235
235
|
export { default as PlayLight } from './PlayLight';
|
|
236
236
|
export { default as PlusLight } from './PlusLight';
|
|
237
237
|
export { default as PlusThin } from './PlusThin';
|
|
238
|
+
export { default as PrintLight } from './PrintLight';
|
|
238
239
|
export { default as PrintThin } from './PrintThin';
|
|
239
240
|
export { default as QrcodeLight } from './QrcodeLight';
|
|
240
241
|
export { default as QuestionLight } from './QuestionLight';
|
|
@@ -281,6 +282,7 @@ export { default as TextSlashRegular } from './TextSlashRegular';
|
|
|
281
282
|
export { default as ThumbsDownLight } from './ThumbsDownLight';
|
|
282
283
|
export { default as ThumbsUpLight } from './ThumbsUpLight';
|
|
283
284
|
export { default as ThumbsUpSolid } from './ThumbsUpSolid';
|
|
285
|
+
export { default as ThumbsUpThin } from './ThumbsUpThin';
|
|
284
286
|
export { default as TicketLight } from './TicketLight';
|
|
285
287
|
export { default as TicketPerforatedLight } from './TicketPerforatedLight';
|
|
286
288
|
export { default as ToggleOnLight } from './ToggleOnLight';
|
package/dist/index.js
CHANGED
|
@@ -235,6 +235,7 @@ export { default as PiggyBankLight } from './PiggyBankLight';
|
|
|
235
235
|
export { default as PlayLight } from './PlayLight';
|
|
236
236
|
export { default as PlusLight } from './PlusLight';
|
|
237
237
|
export { default as PlusThin } from './PlusThin';
|
|
238
|
+
export { default as PrintLight } from './PrintLight';
|
|
238
239
|
export { default as PrintThin } from './PrintThin';
|
|
239
240
|
export { default as QrcodeLight } from './QrcodeLight';
|
|
240
241
|
export { default as QuestionLight } from './QuestionLight';
|
|
@@ -281,6 +282,7 @@ export { default as TextSlashRegular } from './TextSlashRegular';
|
|
|
281
282
|
export { default as ThumbsDownLight } from './ThumbsDownLight';
|
|
282
283
|
export { default as ThumbsUpLight } from './ThumbsUpLight';
|
|
283
284
|
export { default as ThumbsUpSolid } from './ThumbsUpSolid';
|
|
285
|
+
export { default as ThumbsUpThin } from './ThumbsUpThin';
|
|
284
286
|
export { default as TicketLight } from './TicketLight';
|
|
285
287
|
export { default as TicketPerforatedLight } from './TicketPerforatedLight';
|
|
286
288
|
export { default as ToggleOnLight } from './ToggleOnLight';
|