@benefex/icons 0.2.7 → 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/ThumbsUpThin.d.ts +4 -0
- package/dist/ThumbsUpThin.js +5 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -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
|
@@ -282,6 +282,7 @@ export { default as TextSlashRegular } from './TextSlashRegular';
|
|
|
282
282
|
export { default as ThumbsDownLight } from './ThumbsDownLight';
|
|
283
283
|
export { default as ThumbsUpLight } from './ThumbsUpLight';
|
|
284
284
|
export { default as ThumbsUpSolid } from './ThumbsUpSolid';
|
|
285
|
+
export { default as ThumbsUpThin } from './ThumbsUpThin';
|
|
285
286
|
export { default as TicketLight } from './TicketLight';
|
|
286
287
|
export { default as TicketPerforatedLight } from './TicketPerforatedLight';
|
|
287
288
|
export { default as ToggleOnLight } from './ToggleOnLight';
|
package/dist/index.js
CHANGED
|
@@ -282,6 +282,7 @@ export { default as TextSlashRegular } from './TextSlashRegular';
|
|
|
282
282
|
export { default as ThumbsDownLight } from './ThumbsDownLight';
|
|
283
283
|
export { default as ThumbsUpLight } from './ThumbsUpLight';
|
|
284
284
|
export { default as ThumbsUpSolid } from './ThumbsUpSolid';
|
|
285
|
+
export { default as ThumbsUpThin } from './ThumbsUpThin';
|
|
285
286
|
export { default as TicketLight } from './TicketLight';
|
|
286
287
|
export { default as TicketPerforatedLight } from './TicketPerforatedLight';
|
|
287
288
|
export { default as ToggleOnLight } from './ToggleOnLight';
|