@pcoi/icons 0.1.0
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/build/index.d.ts +39 -0
- package/build/index.js +52 -0
- package/build/index.mjs +29 -0
- package/build/manifest.json +232 -0
- package/package.json +30 -0
- package/src/svg/arrow-right.svg +4 -0
- package/src/svg/check.svg +3 -0
- package/src/svg/chevron-down.svg +3 -0
- package/src/svg/chevron-left.svg +3 -0
- package/src/svg/chevron-right.svg +3 -0
- package/src/svg/chevron-up.svg +3 -0
- package/src/svg/close.svg +4 -0
- package/src/svg/external-link.svg +5 -0
- package/src/svg/info.svg +5 -0
- package/src/svg/key-person.svg +6 -0
- package/src/svg/logo-mark-light.svg +3 -0
- package/src/svg/logo-mark.svg +3 -0
- package/src/svg/logo-wordmark-light.svg +4 -0
- package/src/svg/logo-wordmark.svg +4 -0
- package/src/svg/ma-knowledge.svg +4 -0
- package/src/svg/mail.svg +4 -0
- package/src/svg/menu.svg +5 -0
- package/src/svg/minus.svg +3 -0
- package/src/svg/plus.svg +4 -0
- package/src/svg/rented-intel.svg +5 -0
- package/src/svg/search.svg +4 -0
- package/src/svg/sops-decay.svg +3 -0
- package/src/svg/warning.svg +5 -0
package/build/index.d.ts
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
// @pcoi/icons — TypeScript Declarations
|
|
2
|
+
import React from "react";
|
|
3
|
+
|
|
4
|
+
interface IconProps extends React.SVGProps<SVGSVGElement> {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
title?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
interface LogoProps extends React.SVGProps<SVGSVGElement> {
|
|
10
|
+
width?: number | string;
|
|
11
|
+
height?: number | string;
|
|
12
|
+
title?: string;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export declare const ArrowRightIcon: React.FC<IconProps>;
|
|
16
|
+
export declare const CheckIcon: React.FC<IconProps>;
|
|
17
|
+
export declare const ChevronDownIcon: React.FC<IconProps>;
|
|
18
|
+
export declare const ChevronLeftIcon: React.FC<IconProps>;
|
|
19
|
+
export declare const ChevronRightIcon: React.FC<IconProps>;
|
|
20
|
+
export declare const ChevronUpIcon: React.FC<IconProps>;
|
|
21
|
+
export declare const CloseIcon: React.FC<IconProps>;
|
|
22
|
+
export declare const ExternalLinkIcon: React.FC<IconProps>;
|
|
23
|
+
export declare const InfoIcon: React.FC<IconProps>;
|
|
24
|
+
export declare const KeyPersonIcon: React.FC<IconProps>;
|
|
25
|
+
export declare const LogoMarkLightIcon: React.FC<LogoProps>;
|
|
26
|
+
export declare const LogoMarkIcon: React.FC<LogoProps>;
|
|
27
|
+
export declare const LogoWordmarkLightIcon: React.FC<LogoProps>;
|
|
28
|
+
export declare const LogoWordmarkIcon: React.FC<LogoProps>;
|
|
29
|
+
export declare const MaKnowledgeIcon: React.FC<IconProps>;
|
|
30
|
+
export declare const MailIcon: React.FC<IconProps>;
|
|
31
|
+
export declare const MenuIcon: React.FC<IconProps>;
|
|
32
|
+
export declare const MinusIcon: React.FC<IconProps>;
|
|
33
|
+
export declare const PlusIcon: React.FC<IconProps>;
|
|
34
|
+
export declare const RentedIntelIcon: React.FC<IconProps>;
|
|
35
|
+
export declare const SearchIcon: React.FC<IconProps>;
|
|
36
|
+
export declare const SopsDecayIcon: React.FC<IconProps>;
|
|
37
|
+
export declare const WarningIcon: React.FC<IconProps>;
|
|
38
|
+
|
|
39
|
+
export declare const iconNames: string[];
|
package/build/index.js
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @pcoi/icons — CommonJS barrel export
|
|
3
|
+
// Generated 2026-03-02
|
|
4
|
+
|
|
5
|
+
const ArrowRightIcon = require("../src/react/ArrowRightIcon");
|
|
6
|
+
module.exports.ArrowRightIcon = ArrowRightIcon.ArrowRightIcon || ArrowRightIcon.default;
|
|
7
|
+
const CheckIcon = require("../src/react/CheckIcon");
|
|
8
|
+
module.exports.CheckIcon = CheckIcon.CheckIcon || CheckIcon.default;
|
|
9
|
+
const ChevronDownIcon = require("../src/react/ChevronDownIcon");
|
|
10
|
+
module.exports.ChevronDownIcon = ChevronDownIcon.ChevronDownIcon || ChevronDownIcon.default;
|
|
11
|
+
const ChevronLeftIcon = require("../src/react/ChevronLeftIcon");
|
|
12
|
+
module.exports.ChevronLeftIcon = ChevronLeftIcon.ChevronLeftIcon || ChevronLeftIcon.default;
|
|
13
|
+
const ChevronRightIcon = require("../src/react/ChevronRightIcon");
|
|
14
|
+
module.exports.ChevronRightIcon = ChevronRightIcon.ChevronRightIcon || ChevronRightIcon.default;
|
|
15
|
+
const ChevronUpIcon = require("../src/react/ChevronUpIcon");
|
|
16
|
+
module.exports.ChevronUpIcon = ChevronUpIcon.ChevronUpIcon || ChevronUpIcon.default;
|
|
17
|
+
const CloseIcon = require("../src/react/CloseIcon");
|
|
18
|
+
module.exports.CloseIcon = CloseIcon.CloseIcon || CloseIcon.default;
|
|
19
|
+
const ExternalLinkIcon = require("../src/react/ExternalLinkIcon");
|
|
20
|
+
module.exports.ExternalLinkIcon = ExternalLinkIcon.ExternalLinkIcon || ExternalLinkIcon.default;
|
|
21
|
+
const InfoIcon = require("../src/react/InfoIcon");
|
|
22
|
+
module.exports.InfoIcon = InfoIcon.InfoIcon || InfoIcon.default;
|
|
23
|
+
const KeyPersonIcon = require("../src/react/KeyPersonIcon");
|
|
24
|
+
module.exports.KeyPersonIcon = KeyPersonIcon.KeyPersonIcon || KeyPersonIcon.default;
|
|
25
|
+
const LogoMarkLightIcon = require("../src/react/LogoMarkLightIcon");
|
|
26
|
+
module.exports.LogoMarkLightIcon = LogoMarkLightIcon.LogoMarkLightIcon || LogoMarkLightIcon.default;
|
|
27
|
+
const LogoMarkIcon = require("../src/react/LogoMarkIcon");
|
|
28
|
+
module.exports.LogoMarkIcon = LogoMarkIcon.LogoMarkIcon || LogoMarkIcon.default;
|
|
29
|
+
const LogoWordmarkLightIcon = require("../src/react/LogoWordmarkLightIcon");
|
|
30
|
+
module.exports.LogoWordmarkLightIcon = LogoWordmarkLightIcon.LogoWordmarkLightIcon || LogoWordmarkLightIcon.default;
|
|
31
|
+
const LogoWordmarkIcon = require("../src/react/LogoWordmarkIcon");
|
|
32
|
+
module.exports.LogoWordmarkIcon = LogoWordmarkIcon.LogoWordmarkIcon || LogoWordmarkIcon.default;
|
|
33
|
+
const MaKnowledgeIcon = require("../src/react/MaKnowledgeIcon");
|
|
34
|
+
module.exports.MaKnowledgeIcon = MaKnowledgeIcon.MaKnowledgeIcon || MaKnowledgeIcon.default;
|
|
35
|
+
const MailIcon = require("../src/react/MailIcon");
|
|
36
|
+
module.exports.MailIcon = MailIcon.MailIcon || MailIcon.default;
|
|
37
|
+
const MenuIcon = require("../src/react/MenuIcon");
|
|
38
|
+
module.exports.MenuIcon = MenuIcon.MenuIcon || MenuIcon.default;
|
|
39
|
+
const MinusIcon = require("../src/react/MinusIcon");
|
|
40
|
+
module.exports.MinusIcon = MinusIcon.MinusIcon || MinusIcon.default;
|
|
41
|
+
const PlusIcon = require("../src/react/PlusIcon");
|
|
42
|
+
module.exports.PlusIcon = PlusIcon.PlusIcon || PlusIcon.default;
|
|
43
|
+
const RentedIntelIcon = require("../src/react/RentedIntelIcon");
|
|
44
|
+
module.exports.RentedIntelIcon = RentedIntelIcon.RentedIntelIcon || RentedIntelIcon.default;
|
|
45
|
+
const SearchIcon = require("../src/react/SearchIcon");
|
|
46
|
+
module.exports.SearchIcon = SearchIcon.SearchIcon || SearchIcon.default;
|
|
47
|
+
const SopsDecayIcon = require("../src/react/SopsDecayIcon");
|
|
48
|
+
module.exports.SopsDecayIcon = SopsDecayIcon.SopsDecayIcon || SopsDecayIcon.default;
|
|
49
|
+
const WarningIcon = require("../src/react/WarningIcon");
|
|
50
|
+
module.exports.WarningIcon = WarningIcon.WarningIcon || WarningIcon.default;
|
|
51
|
+
|
|
52
|
+
module.exports.iconNames = ["ArrowRightIcon","CheckIcon","ChevronDownIcon","ChevronLeftIcon","ChevronRightIcon","ChevronUpIcon","CloseIcon","ExternalLinkIcon","InfoIcon","KeyPersonIcon","LogoMarkLightIcon","LogoMarkIcon","LogoWordmarkLightIcon","LogoWordmarkIcon","MaKnowledgeIcon","MailIcon","MenuIcon","MinusIcon","PlusIcon","RentedIntelIcon","SearchIcon","SopsDecayIcon","WarningIcon"];
|
package/build/index.mjs
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
// @pcoi/icons — ES Module barrel export
|
|
2
|
+
// Generated 2026-03-02
|
|
3
|
+
|
|
4
|
+
export { ArrowRightIcon } from "../src/react/ArrowRightIcon";
|
|
5
|
+
export { CheckIcon } from "../src/react/CheckIcon";
|
|
6
|
+
export { ChevronDownIcon } from "../src/react/ChevronDownIcon";
|
|
7
|
+
export { ChevronLeftIcon } from "../src/react/ChevronLeftIcon";
|
|
8
|
+
export { ChevronRightIcon } from "../src/react/ChevronRightIcon";
|
|
9
|
+
export { ChevronUpIcon } from "../src/react/ChevronUpIcon";
|
|
10
|
+
export { CloseIcon } from "../src/react/CloseIcon";
|
|
11
|
+
export { ExternalLinkIcon } from "../src/react/ExternalLinkIcon";
|
|
12
|
+
export { InfoIcon } from "../src/react/InfoIcon";
|
|
13
|
+
export { KeyPersonIcon } from "../src/react/KeyPersonIcon";
|
|
14
|
+
export { LogoMarkLightIcon } from "../src/react/LogoMarkLightIcon";
|
|
15
|
+
export { LogoMarkIcon } from "../src/react/LogoMarkIcon";
|
|
16
|
+
export { LogoWordmarkLightIcon } from "../src/react/LogoWordmarkLightIcon";
|
|
17
|
+
export { LogoWordmarkIcon } from "../src/react/LogoWordmarkIcon";
|
|
18
|
+
export { MaKnowledgeIcon } from "../src/react/MaKnowledgeIcon";
|
|
19
|
+
export { MailIcon } from "../src/react/MailIcon";
|
|
20
|
+
export { MenuIcon } from "../src/react/MenuIcon";
|
|
21
|
+
export { MinusIcon } from "../src/react/MinusIcon";
|
|
22
|
+
export { PlusIcon } from "../src/react/PlusIcon";
|
|
23
|
+
export { RentedIntelIcon } from "../src/react/RentedIntelIcon";
|
|
24
|
+
export { SearchIcon } from "../src/react/SearchIcon";
|
|
25
|
+
export { SopsDecayIcon } from "../src/react/SopsDecayIcon";
|
|
26
|
+
export { WarningIcon } from "../src/react/WarningIcon";
|
|
27
|
+
|
|
28
|
+
// Icon name mapping for dynamic lookup
|
|
29
|
+
export const iconNames = ["ArrowRightIcon","CheckIcon","ChevronDownIcon","ChevronLeftIcon","ChevronRightIcon","ChevronUpIcon","CloseIcon","ExternalLinkIcon","InfoIcon","KeyPersonIcon","LogoMarkLightIcon","LogoMarkIcon","LogoWordmarkLightIcon","LogoWordmarkIcon","MaKnowledgeIcon","MailIcon","MenuIcon","MinusIcon","PlusIcon","RentedIntelIcon","SearchIcon","SopsDecayIcon","WarningIcon"];
|
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$description": "PCOI Icon Library Manifest",
|
|
3
|
+
"$generated": "2026-03-02T23:41:19.473Z",
|
|
4
|
+
"icons": [
|
|
5
|
+
{
|
|
6
|
+
"name": "ArrowRightIcon",
|
|
7
|
+
"fileName": "arrow-right",
|
|
8
|
+
"type": "icon",
|
|
9
|
+
"svg": "src/svg/arrow-right.svg",
|
|
10
|
+
"react": "src/react/ArrowRightIcon.tsx",
|
|
11
|
+
"viewBox": "0 0 24 24",
|
|
12
|
+
"style": "stroke",
|
|
13
|
+
"strokeWidth": 1.5
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"name": "CheckIcon",
|
|
17
|
+
"fileName": "check",
|
|
18
|
+
"type": "icon",
|
|
19
|
+
"svg": "src/svg/check.svg",
|
|
20
|
+
"react": "src/react/CheckIcon.tsx",
|
|
21
|
+
"viewBox": "0 0 24 24",
|
|
22
|
+
"style": "stroke",
|
|
23
|
+
"strokeWidth": 1.5
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "ChevronDownIcon",
|
|
27
|
+
"fileName": "chevron-down",
|
|
28
|
+
"type": "icon",
|
|
29
|
+
"svg": "src/svg/chevron-down.svg",
|
|
30
|
+
"react": "src/react/ChevronDownIcon.tsx",
|
|
31
|
+
"viewBox": "0 0 24 24",
|
|
32
|
+
"style": "stroke",
|
|
33
|
+
"strokeWidth": 1.5
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "ChevronLeftIcon",
|
|
37
|
+
"fileName": "chevron-left",
|
|
38
|
+
"type": "icon",
|
|
39
|
+
"svg": "src/svg/chevron-left.svg",
|
|
40
|
+
"react": "src/react/ChevronLeftIcon.tsx",
|
|
41
|
+
"viewBox": "0 0 24 24",
|
|
42
|
+
"style": "stroke",
|
|
43
|
+
"strokeWidth": 1.5
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "ChevronRightIcon",
|
|
47
|
+
"fileName": "chevron-right",
|
|
48
|
+
"type": "icon",
|
|
49
|
+
"svg": "src/svg/chevron-right.svg",
|
|
50
|
+
"react": "src/react/ChevronRightIcon.tsx",
|
|
51
|
+
"viewBox": "0 0 24 24",
|
|
52
|
+
"style": "stroke",
|
|
53
|
+
"strokeWidth": 1.5
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "ChevronUpIcon",
|
|
57
|
+
"fileName": "chevron-up",
|
|
58
|
+
"type": "icon",
|
|
59
|
+
"svg": "src/svg/chevron-up.svg",
|
|
60
|
+
"react": "src/react/ChevronUpIcon.tsx",
|
|
61
|
+
"viewBox": "0 0 24 24",
|
|
62
|
+
"style": "stroke",
|
|
63
|
+
"strokeWidth": 1.5
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "CloseIcon",
|
|
67
|
+
"fileName": "close",
|
|
68
|
+
"type": "icon",
|
|
69
|
+
"svg": "src/svg/close.svg",
|
|
70
|
+
"react": "src/react/CloseIcon.tsx",
|
|
71
|
+
"viewBox": "0 0 24 24",
|
|
72
|
+
"style": "stroke",
|
|
73
|
+
"strokeWidth": 1.5
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "ExternalLinkIcon",
|
|
77
|
+
"fileName": "external-link",
|
|
78
|
+
"type": "icon",
|
|
79
|
+
"svg": "src/svg/external-link.svg",
|
|
80
|
+
"react": "src/react/ExternalLinkIcon.tsx",
|
|
81
|
+
"viewBox": "0 0 24 24",
|
|
82
|
+
"style": "stroke",
|
|
83
|
+
"strokeWidth": 1.5
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "InfoIcon",
|
|
87
|
+
"fileName": "info",
|
|
88
|
+
"type": "icon",
|
|
89
|
+
"svg": "src/svg/info.svg",
|
|
90
|
+
"react": "src/react/InfoIcon.tsx",
|
|
91
|
+
"viewBox": "0 0 24 24",
|
|
92
|
+
"style": "stroke",
|
|
93
|
+
"strokeWidth": 1.5
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "KeyPersonIcon",
|
|
97
|
+
"fileName": "key-person",
|
|
98
|
+
"type": "icon",
|
|
99
|
+
"svg": "src/svg/key-person.svg",
|
|
100
|
+
"react": "src/react/KeyPersonIcon.tsx",
|
|
101
|
+
"viewBox": "0 0 24 24",
|
|
102
|
+
"style": "stroke",
|
|
103
|
+
"strokeWidth": 1.5
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "LogoMarkLightIcon",
|
|
107
|
+
"fileName": "logo-mark-light",
|
|
108
|
+
"type": "logo",
|
|
109
|
+
"svg": "src/svg/logo-mark-light.svg",
|
|
110
|
+
"react": "src/react/LogoMarkLightIcon.tsx",
|
|
111
|
+
"viewBox": "0 0 32 32",
|
|
112
|
+
"style": "fill"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "LogoMarkIcon",
|
|
116
|
+
"fileName": "logo-mark",
|
|
117
|
+
"type": "logo",
|
|
118
|
+
"svg": "src/svg/logo-mark.svg",
|
|
119
|
+
"react": "src/react/LogoMarkIcon.tsx",
|
|
120
|
+
"viewBox": "0 0 32 32",
|
|
121
|
+
"style": "fill"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "LogoWordmarkLightIcon",
|
|
125
|
+
"fileName": "logo-wordmark-light",
|
|
126
|
+
"type": "logo",
|
|
127
|
+
"svg": "src/svg/logo-wordmark-light.svg",
|
|
128
|
+
"react": "src/react/LogoWordmarkLightIcon.tsx",
|
|
129
|
+
"viewBox": "0 0 65 32",
|
|
130
|
+
"style": "fill"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "LogoWordmarkIcon",
|
|
134
|
+
"fileName": "logo-wordmark",
|
|
135
|
+
"type": "logo",
|
|
136
|
+
"svg": "src/svg/logo-wordmark.svg",
|
|
137
|
+
"react": "src/react/LogoWordmarkIcon.tsx",
|
|
138
|
+
"viewBox": "0 0 65 32",
|
|
139
|
+
"style": "fill"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "MaKnowledgeIcon",
|
|
143
|
+
"fileName": "ma-knowledge",
|
|
144
|
+
"type": "icon",
|
|
145
|
+
"svg": "src/svg/ma-knowledge.svg",
|
|
146
|
+
"react": "src/react/MaKnowledgeIcon.tsx",
|
|
147
|
+
"viewBox": "0 0 24 24",
|
|
148
|
+
"style": "stroke",
|
|
149
|
+
"strokeWidth": 1.5
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"name": "MailIcon",
|
|
153
|
+
"fileName": "mail",
|
|
154
|
+
"type": "icon",
|
|
155
|
+
"svg": "src/svg/mail.svg",
|
|
156
|
+
"react": "src/react/MailIcon.tsx",
|
|
157
|
+
"viewBox": "0 0 24 24",
|
|
158
|
+
"style": "stroke",
|
|
159
|
+
"strokeWidth": 1.5
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"name": "MenuIcon",
|
|
163
|
+
"fileName": "menu",
|
|
164
|
+
"type": "icon",
|
|
165
|
+
"svg": "src/svg/menu.svg",
|
|
166
|
+
"react": "src/react/MenuIcon.tsx",
|
|
167
|
+
"viewBox": "0 0 24 24",
|
|
168
|
+
"style": "stroke",
|
|
169
|
+
"strokeWidth": 1.5
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"name": "MinusIcon",
|
|
173
|
+
"fileName": "minus",
|
|
174
|
+
"type": "icon",
|
|
175
|
+
"svg": "src/svg/minus.svg",
|
|
176
|
+
"react": "src/react/MinusIcon.tsx",
|
|
177
|
+
"viewBox": "0 0 24 24",
|
|
178
|
+
"style": "stroke",
|
|
179
|
+
"strokeWidth": 1.5
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"name": "PlusIcon",
|
|
183
|
+
"fileName": "plus",
|
|
184
|
+
"type": "icon",
|
|
185
|
+
"svg": "src/svg/plus.svg",
|
|
186
|
+
"react": "src/react/PlusIcon.tsx",
|
|
187
|
+
"viewBox": "0 0 24 24",
|
|
188
|
+
"style": "stroke",
|
|
189
|
+
"strokeWidth": 1.5
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"name": "RentedIntelIcon",
|
|
193
|
+
"fileName": "rented-intel",
|
|
194
|
+
"type": "icon",
|
|
195
|
+
"svg": "src/svg/rented-intel.svg",
|
|
196
|
+
"react": "src/react/RentedIntelIcon.tsx",
|
|
197
|
+
"viewBox": "0 0 24 24",
|
|
198
|
+
"style": "stroke",
|
|
199
|
+
"strokeWidth": 1.5
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"name": "SearchIcon",
|
|
203
|
+
"fileName": "search",
|
|
204
|
+
"type": "icon",
|
|
205
|
+
"svg": "src/svg/search.svg",
|
|
206
|
+
"react": "src/react/SearchIcon.tsx",
|
|
207
|
+
"viewBox": "0 0 24 24",
|
|
208
|
+
"style": "stroke",
|
|
209
|
+
"strokeWidth": 1.5
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"name": "SopsDecayIcon",
|
|
213
|
+
"fileName": "sops-decay",
|
|
214
|
+
"type": "icon",
|
|
215
|
+
"svg": "src/svg/sops-decay.svg",
|
|
216
|
+
"react": "src/react/SopsDecayIcon.tsx",
|
|
217
|
+
"viewBox": "0 0 24 24",
|
|
218
|
+
"style": "stroke",
|
|
219
|
+
"strokeWidth": 1.5
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"name": "WarningIcon",
|
|
223
|
+
"fileName": "warning",
|
|
224
|
+
"type": "icon",
|
|
225
|
+
"svg": "src/svg/warning.svg",
|
|
226
|
+
"react": "src/react/WarningIcon.tsx",
|
|
227
|
+
"viewBox": "0 0 24 24",
|
|
228
|
+
"style": "stroke",
|
|
229
|
+
"strokeWidth": 1.5
|
|
230
|
+
}
|
|
231
|
+
]
|
|
232
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pcoi/icons",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "PCOI Design System — SVG icon library with React components",
|
|
5
|
+
"main": "build/index.js",
|
|
6
|
+
"module": "build/index.mjs",
|
|
7
|
+
"types": "build/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"build/**/*",
|
|
10
|
+
"src/svg/**/*"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"import": "./build/index.mjs",
|
|
15
|
+
"require": "./build/index.js",
|
|
16
|
+
"types": "./build/index.d.ts"
|
|
17
|
+
},
|
|
18
|
+
"./svg/*": "./src/svg/*"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "node build-icons.js",
|
|
22
|
+
"clean": "rm -rf build"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"react": ">=18.0.0"
|
|
26
|
+
},
|
|
27
|
+
"keywords": ["icons", "pcoi", "design-system", "svg", "react"],
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"sideEffects": false
|
|
30
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<line x1="5" y1="12" x2="19" y2="12" />
|
|
3
|
+
<polyline points="12 5 19 12 12 19" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<line x1="18" y1="6" x2="6" y2="18" />
|
|
3
|
+
<line x1="6" y1="6" x2="18" y2="18" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" />
|
|
3
|
+
<polyline points="15 3 21 3 21 9" />
|
|
4
|
+
<line x1="10" y1="14" x2="21" y2="3" />
|
|
5
|
+
</svg>
|
package/src/svg/info.svg
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="12" cy="12" r="10" />
|
|
3
|
+
<line x1="12" y1="16" x2="12" y2="12" />
|
|
4
|
+
<circle cx="12" cy="8" r="1" fill="currentColor" stroke="none" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" />
|
|
3
|
+
<circle cx="9" cy="7" r="4" />
|
|
4
|
+
<path d="M23 21v-2a4 4 0 0 0-3-3.87" />
|
|
5
|
+
<path d="M16 3.13a4 4 0 0 1 0 7.75" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9.66 24.73L12.79 24.73L12.79 18.82L16.14 18.82C20.17 18.82 22.34 16.40 22.34 13.05C22.34 9.72 20.21 7.27 16.19 7.27L9.66 7.27ZM12.79 16.25L12.79 9.89L15.71 9.89C18.10 9.89 19.14 11.18 19.14 13.05C19.14 14.91 18.10 16.25 15.73 16.25Z" fill="#D4A44C"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9.66 24.73L12.79 24.73L12.79 18.82L16.14 18.82C20.17 18.82 22.34 16.40 22.34 13.05C22.34 9.72 20.21 7.27 16.19 7.27L9.66 7.27ZM12.79 16.25L12.79 9.89L15.71 9.89C18.10 9.89 19.14 11.18 19.14 13.05C19.14 14.91 18.10 16.25 15.73 16.25Z" fill="var(--pcoi-semantic-text-accent, #D4A44C)"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="65" height="32" viewBox="0 0 65 32" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5.61 27L8.48 27L8.48 21.59L11.55 21.59C15.25 21.59 17.23 19.36 17.23 16.29C17.23 13.24 15.28 10.99 11.59 10.99L5.61 10.99ZM8.48 19.22L8.48 13.40L11.15 13.40C13.35 13.40 14.30 14.58 14.30 16.29C14.30 18.00 13.35 19.22 11.18 19.22Z" fill="#D4A44C"/>
|
|
3
|
+
<path d="M27.50 27.21C31.28 27.21 33.82 24.73 34.26 21.67L31.36 21.67C30.99 23.56 29.45 24.65 27.54 24.65C24.94 24.65 23.06 22.68 23.06 19.01C23.06 15.38 24.92 13.35 27.55 13.35C29.46 13.35 31.00 14.43 31.36 16.32L34.25 16.32C33.74 12.82 31.02 10.78 27.50 10.78C23.32 10.78 20.18 13.83 20.18 19.01C20.18 24.16 23.29 27.21 27.50 27.21Z M44.63 27.21C48.81 27.21 51.96 24.17 51.96 19.01C51.96 13.83 48.81 10.78 44.63 10.78C40.43 10.78 37.27 13.83 37.27 19.01C37.27 24.16 40.43 27.21 44.63 27.21ZM44.63 24.65C42.00 24.65 40.15 22.65 40.15 19.01C40.15 15.34 42.00 13.35 44.63 13.35C47.22 13.35 49.07 15.33 49.07 19.01C49.07 22.66 47.22 24.65 44.63 24.65Z M58.43 10.99L55.56 10.99L55.56 27L58.43 27Z" fill="#323250"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="65" height="32" viewBox="0 0 65 32" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5.61 27L8.48 27L8.48 21.59L11.55 21.59C15.25 21.59 17.23 19.36 17.23 16.29C17.23 13.24 15.28 10.99 11.59 10.99L5.61 10.99ZM8.48 19.22L8.48 13.40L11.15 13.40C13.35 13.40 14.30 14.58 14.30 16.29C14.30 18.00 13.35 19.22 11.18 19.22Z" fill="var(--pcoi-semantic-text-accent, #D4A44C)"/>
|
|
3
|
+
<path d="M27.50 27.21C31.28 27.21 33.82 24.73 34.26 21.67L31.36 21.67C30.99 23.56 29.45 24.65 27.54 24.65C24.94 24.65 23.06 22.68 23.06 19.01C23.06 15.38 24.92 13.35 27.55 13.35C29.46 13.35 31.00 14.43 31.36 16.32L34.25 16.32C33.74 12.82 31.02 10.78 27.50 10.78C23.32 10.78 20.18 13.83 20.18 19.01C20.18 24.16 23.29 27.21 27.50 27.21Z M44.63 27.21C48.81 27.21 51.96 24.17 51.96 19.01C51.96 13.83 48.81 10.78 44.63 10.78C40.43 10.78 37.27 13.83 37.27 19.01C37.27 24.16 40.43 27.21 44.63 27.21ZM44.63 24.65C42.00 24.65 40.15 22.65 40.15 19.01C40.15 15.34 42.00 13.35 44.63 13.35C47.22 13.35 49.07 15.33 49.07 19.01C49.07 22.66 47.22 24.65 44.63 24.65Z M58.43 10.99L55.56 10.99L55.56 27L58.43 27Z" fill="var(--pcoi-semantic-text-primary, #E8E8F0)"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="2" y="7" width="20" height="14" rx="2" ry="2" />
|
|
3
|
+
<path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16" />
|
|
4
|
+
</svg>
|
package/src/svg/mail.svg
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z" />
|
|
3
|
+
<polyline points="22 6 12 13 2 6" />
|
|
4
|
+
</svg>
|
package/src/svg/menu.svg
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<line x1="3" y1="12" x2="21" y2="12" />
|
|
3
|
+
<line x1="3" y1="6" x2="21" y2="6" />
|
|
4
|
+
<line x1="3" y1="18" x2="21" y2="18" />
|
|
5
|
+
</svg>
|
package/src/svg/plus.svg
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<line x1="12" y1="5" x2="12" y2="19" />
|
|
3
|
+
<line x1="5" y1="12" x2="19" y2="12" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" />
|
|
3
|
+
<polyline points="17 8 12 3 7 8" />
|
|
4
|
+
<line x1="12" y1="3" x2="12" y2="15" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="11" cy="11" r="8" />
|
|
3
|
+
<line x1="21" y1="21" x2="16.65" y2="16.65" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z" />
|
|
3
|
+
<line x1="12" y1="9" x2="12" y2="13" />
|
|
4
|
+
<circle cx="12" cy="17" r="1" fill="currentColor" stroke="none" />
|
|
5
|
+
</svg>
|