@inceptionbg/icons 1.0.8 → 1.0.9
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/light/faBraille.ts +15 -0
- package/light/faDownload.ts +15 -0
- package/light/faList.ts +15 -0
- package/light/faUpload.ts +15 -0
- package/light/index.ts +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
2
|
+
|
|
3
|
+
const prefix = "fal";
|
|
4
|
+
const iconName = "braille";
|
|
5
|
+
const width = 640;
|
|
6
|
+
const height = 512;
|
|
7
|
+
const unicode = "f2a1";
|
|
8
|
+
const svgPathData =
|
|
9
|
+
"M80 48c-35.35 0-64 28.65-64 64s28.65 64 64 64s64-28.65 64-64S115.3 48 80 48zM80 144c-17.64 0-32-14.36-32-32s14.36-32 32-32s32 14.36 32 32S97.64 144 80 144zM240 48c-35.35 0-64 28.65-64 64s28.65 64 64 64s64-28.65 64-64S275.3 48 240 48zM240 144c-17.64 0-32-14.36-32-32s14.36-32 32-32s32 14.36 32 32S257.6 144 240 144zM432 48c-35.35 0-64 28.65-64 64s28.65 64 64 64s64-28.65 64-64S467.3 48 432 48zM432 144c-17.64 0-32-14.36-32-32s14.36-32 32-32s32 14.36 32 32S449.6 144 432 144zM80 208c-35.35 0-64 28.65-64 64s28.65 64 64 64s64-28.65 64-64S115.3 208 80 208zM80 304c-17.64 0-32-14.36-32-32s14.36-32 32-32s32 14.36 32 32S97.64 304 80 304zM80 408c-13.26 0-24 10.74-24 24c0 13.25 10.74 24 24 24s24-10.75 24-24C104 418.7 93.26 408 80 408zM240 408c-13.26 0-24 10.74-24 24c0 13.25 10.74 24 24 24s24-10.75 24-24C264 418.7 253.3 408 240 408zM432 408c-13.26 0-24 10.74-24 24c0 13.25 10.74 24 24 24s24-10.75 24-24C456 418.7 445.3 408 432 408zM592 408c-13.26 0-24 10.74-24 24c0 13.25 10.74 24 24 24s24-10.75 24-24C616 418.7 605.3 408 592 408zM240 248c-13.26 0-24 10.74-24 24c0 13.25 10.74 24 24 24S264 285.3 264 272C264 258.7 253.3 248 240 248zM432 248c-13.26 0-24 10.74-24 24c0 13.25 10.74 24 24 24s24-10.75 24-24C456 258.7 445.3 248 432 248zM592 248c-13.26 0-24 10.74-24 24c0 13.25 10.74 24 24 24s24-10.75 24-24C616 258.7 605.3 248 592 248zM592 136c13.26 0 24-10.75 24-24c0-13.26-10.74-24-24-24s-24 10.74-24 24C568 125.3 578.7 136 592 136z";
|
|
10
|
+
|
|
11
|
+
export const faBraille: IconDefinition = {
|
|
12
|
+
prefix,
|
|
13
|
+
iconName,
|
|
14
|
+
icon: [width, height, [], unicode, svgPathData],
|
|
15
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
2
|
+
|
|
3
|
+
const prefix = "fal";
|
|
4
|
+
const iconName = "download";
|
|
5
|
+
const width = 512;
|
|
6
|
+
const height = 512;
|
|
7
|
+
const unicode = "f019";
|
|
8
|
+
const svgPathData =
|
|
9
|
+
"M245.4 379.1C248.4 382.7 252.2 384 256 384s7.594-1.344 10.62-4.047l144-128c6.594-5.859 7.219-15.98 1.344-22.58c-5.875-6.625-16.06-7.234-22.59-1.328L272 332.4V16C272 7.156 264.8 0 256 0S240 7.156 240 16v316.4L122.6 228C116.1 222.1 105.9 222.8 100 229.4C94.16 235.1 94.78 246.1 101.4 251.1L245.4 379.1zM448 320h-48c-8.836 0-16 7.162-16 16c0 8.836 7.164 16 16 16H448c17.67 0 32 14.33 32 32v64c0 17.67-14.33 32-32 32H64c-17.67 0-32-14.33-32-32v-64c0-17.67 14.33-32 32-32h48C120.8 352 128 344.8 128 336C128 327.2 120.8 320 112 320H64c-35.35 0-64 28.65-64 64v64c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64v-64C512 348.7 483.3 320 448 320zM440 416c0-13.25-10.75-24-24-24s-24 10.75-24 24s10.75 24 24 24S440 429.3 440 416z";
|
|
10
|
+
|
|
11
|
+
export const faDownload: IconDefinition = {
|
|
12
|
+
prefix,
|
|
13
|
+
iconName,
|
|
14
|
+
icon: [width, height, [], unicode, svgPathData],
|
|
15
|
+
};
|
package/light/faList.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
2
|
+
|
|
3
|
+
const prefix = "fal";
|
|
4
|
+
const iconName = "list";
|
|
5
|
+
const width = 512;
|
|
6
|
+
const height = 512;
|
|
7
|
+
const unicode = "f03a";
|
|
8
|
+
const svgPathData =
|
|
9
|
+
"M16 72C16 58.75 26.75 48 40 48H88C101.3 48 112 58.75 112 72V120C112 133.3 101.3 144 88 144H40C26.75 144 16 133.3 16 120V72zM80 112V80H48V112H80zM496 80C504.8 80 512 87.16 512 96C512 104.8 504.8 112 496 112H176C167.2 112 160 104.8 160 96C160 87.16 167.2 80 176 80H496zM496 240C504.8 240 512 247.2 512 256C512 264.8 504.8 272 496 272H176C167.2 272 160 264.8 160 256C160 247.2 167.2 240 176 240H496zM496 400C504.8 400 512 407.2 512 416C512 424.8 504.8 432 496 432H176C167.2 432 160 424.8 160 416C160 407.2 167.2 400 176 400H496zM88 208C101.3 208 112 218.7 112 232V280C112 293.3 101.3 304 88 304H40C26.75 304 16 293.3 16 280V232C16 218.7 26.75 208 40 208H88zM48 240V272H80V240H48zM16 392C16 378.7 26.75 368 40 368H88C101.3 368 112 378.7 112 392V440C112 453.3 101.3 464 88 464H40C26.75 464 16 453.3 16 440V392zM80 432V400H48V432H80z";
|
|
10
|
+
|
|
11
|
+
export const faList: IconDefinition = {
|
|
12
|
+
prefix,
|
|
13
|
+
iconName,
|
|
14
|
+
icon: [width, height, [], unicode, svgPathData],
|
|
15
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
|
2
|
+
|
|
3
|
+
const prefix = "fal";
|
|
4
|
+
const iconName = "upload";
|
|
5
|
+
const width = 512;
|
|
6
|
+
const height = 512;
|
|
7
|
+
const unicode = "f093";
|
|
8
|
+
const svgPathData =
|
|
9
|
+
"M122.6 155.1L240 51.63V368c0 8.844 7.156 16 16 16s16-7.156 16-16V51.63l117.4 104.3C392.4 158.7 396.2 160 400 160c4.406 0 8.812-1.812 11.97-5.375c5.875-6.594 5.25-16.72-1.344-22.58l-144-128c-6.062-5.406-15.19-5.406-21.25 0l-144 128C94.78 137.9 94.16 148 100 154.6S116.1 161.8 122.6 155.1zM448 320h-112c-8.836 0-16 7.162-16 16c0 8.836 7.164 16 16 16H448c17.67 0 32 14.33 32 32v64c0 17.67-14.33 32-32 32H64c-17.67 0-32-14.33-32-32v-64c0-17.67 14.33-32 32-32h112C184.8 352 192 344.8 192 336C192 327.2 184.8 320 176 320H64c-35.35 0-64 28.65-64 64v64c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64v-64C512 348.7 483.3 320 448 320zM440 416c0-13.25-10.75-24-24-24s-24 10.75-24 24s10.75 24 24 24S440 429.3 440 416z";
|
|
10
|
+
|
|
11
|
+
export const faUpload: IconDefinition = {
|
|
12
|
+
prefix,
|
|
13
|
+
iconName,
|
|
14
|
+
icon: [width, height, [], unicode, svgPathData],
|
|
15
|
+
};
|
package/light/index.ts
CHANGED
|
@@ -10,6 +10,7 @@ export * from './faArrowUpRightFromSquare';
|
|
|
10
10
|
export * from './faBell';
|
|
11
11
|
export * from './faBookmark';
|
|
12
12
|
export * from './faBookmarkSlash';
|
|
13
|
+
export * from './faBraille';
|
|
13
14
|
export * from './faBriefcase';
|
|
14
15
|
export * from './faBusinessPlus';
|
|
15
16
|
export * from './faCalendarDays';
|
|
@@ -24,6 +25,7 @@ export * from './faCircleXmark';
|
|
|
24
25
|
export * from './faClipboardCheck';
|
|
25
26
|
export * from './faClock';
|
|
26
27
|
export * from './faClockRotateLeft';
|
|
28
|
+
export * from './faDownload';
|
|
27
29
|
export * from './faEllipsisVertical';
|
|
28
30
|
export * from './faEnvelope';
|
|
29
31
|
export * from './faEye';
|
|
@@ -36,6 +38,7 @@ export * from './faHouse';
|
|
|
36
38
|
export * from './faIdBadge';
|
|
37
39
|
export * from './faLineColumns';
|
|
38
40
|
export * from './faLink';
|
|
41
|
+
export * from './faList';
|
|
39
42
|
export * from './faLocationCheck';
|
|
40
43
|
export * from './faLocationXmark';
|
|
41
44
|
export * from './faMagnifyingGlass';
|
|
@@ -48,6 +51,7 @@ export * from './faRotateRight';
|
|
|
48
51
|
export * from './faSignature';
|
|
49
52
|
export * from './faTrashCan';
|
|
50
53
|
export * from './faTriangleExclamation';
|
|
54
|
+
export * from './faUpload';
|
|
51
55
|
export * from './faUser';
|
|
52
56
|
export * from './faUserGear';
|
|
53
57
|
export * from './faXmark';
|