@inceptionbg/icons 1.0.4 → 1.0.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,15 @@
1
+ import type { IconDefinition } from '@fortawesome/fontawesome-svg-core';
2
+
3
+ const prefix = 'far';
4
+ const iconName = 'phone';
5
+ const width = 512;
6
+ const height = 512;
7
+ const unicode = 'f095';
8
+ const svgPathData =
9
+ 'M480.3 320.3L382.1 278.2c-21.41-9.281-46.64-3.109-61.2 14.95l-27.44 33.5c-44.78-25.75-82.29-63.25-108-107.1l33.55-27.48c17.91-14.62 24.09-39.7 15.02-61.05L191.7 31.53c-10.16-23.2-35.34-35.86-59.87-30.19l-91.25 21.06C16.7 27.86 0 48.83 0 73.39c0 241.9 196.7 438.6 438.6 438.6c24.56 0 45.53-16.69 50.1-40.53l21.06-91.34C516.4 355.5 503.6 330.3 480.3 320.3zM463.9 369.3l-21.09 91.41c-.4687 1.1-2.109 3.281-4.219 3.281c-215.4 0-390.6-175.2-390.6-390.6c0-2.094 1.297-3.734 3.344-4.203l91.34-21.08c.3125-.0781 .6406-.1094 .9531-.1094c1.734 0 3.359 1.047 4.047 2.609l42.14 98.33c.75 1.766 .25 3.828-1.25 5.062L139.8 193.1c-8.625 7.062-11.25 19.14-6.344 29.14c33.01 67.23 88.26 122.5 155.5 155.5c9.1 4.906 22.09 2.281 29.16-6.344l40.01-48.87c1.109-1.406 3.187-1.938 4.922-1.125l98.26 42.09C463.2 365.2 464.3 367.3 463.9 369.3z';
10
+
11
+ export const faPhone: IconDefinition = {
12
+ prefix,
13
+ iconName,
14
+ icon: [width, height, [], unicode, svgPathData],
15
+ };
package/light/index.ts CHANGED
@@ -37,6 +37,7 @@ export * from './faLocationXmark';
37
37
  export * from './faMagnifyingGlass';
38
38
  export * from './faNewspaper';
39
39
  export * from './faPen';
40
+ export * from './faPhone';
40
41
  export * from './faPrint';
41
42
  export * from './faQuestion';
42
43
  export * from './faRotateRight';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inceptionbg/icons",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Icon set for Inception ecosystem",
5
5
  "type": "module",
6
6
  "exports": {