@pearpages/pulp-icons 0.0.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/LICENSE +21 -0
- package/README.md +41 -0
- package/dist/index.d.ts +36 -0
- package/dist/index.js +307 -0
- package/dist/index.js.map +1 -0
- package/package.json +52 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Pere Pages
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# @pearpages/pulp-icons
|
|
2
|
+
|
|
3
|
+
The icons of [pulp](https://pulp.pearpages.com): a curated set of stroke icons as React
|
|
4
|
+
components, generated from SVG. Tree-shakeable, sized by font size, coloured by `currentColor`.
|
|
5
|
+
|
|
6
|
+
## Install
|
|
7
|
+
|
|
8
|
+
```sh
|
|
9
|
+
npm install @pearpages/pulp-icons
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Requires React 19.
|
|
13
|
+
|
|
14
|
+
## Use
|
|
15
|
+
|
|
16
|
+
```tsx
|
|
17
|
+
import { Check, Search } from '@pearpages/pulp-icons';
|
|
18
|
+
|
|
19
|
+
<Search /> // decorative: hidden from assistive technology
|
|
20
|
+
<Check title="Saved" /> // meaningful: an image named "Saved"
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Each icon is `1em` square and draws in `currentColor`, so it follows the text around it.
|
|
24
|
+
Import only the icons you use; bundlers drop the rest.
|
|
25
|
+
|
|
26
|
+
With `@pearpages/pulp-react`, wrap an icon in `Icon` to size it to the icon scale:
|
|
27
|
+
|
|
28
|
+
```tsx
|
|
29
|
+
import { Icon } from '@pearpages/pulp-react/icon';
|
|
30
|
+
|
|
31
|
+
<Icon size="lg" label="Saved"><Check /></Icon>
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Icons
|
|
35
|
+
|
|
36
|
+
`ArrowLeft`, `ArrowRight`, `Calendar`, `Check`, `ChevronDown`, `ChevronLeft`, `ChevronRight`,
|
|
37
|
+
`Close`, `Info`, `Plus`, `Search`, `Warning`
|
|
38
|
+
|
|
39
|
+
## License
|
|
40
|
+
|
|
41
|
+
MIT
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'children'> {
|
|
5
|
+
/**
|
|
6
|
+
* Accessible name. Without it the icon is decorative (`aria-hidden`); with
|
|
7
|
+
* it the icon is an image named by a `<title>`.
|
|
8
|
+
*/
|
|
9
|
+
title?: string;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare function ArrowLeft({ title, ...props }: IconProps): react.JSX.Element;
|
|
13
|
+
|
|
14
|
+
declare function ArrowRight({ title, ...props }: IconProps): react.JSX.Element;
|
|
15
|
+
|
|
16
|
+
declare function Calendar({ title, ...props }: IconProps): react.JSX.Element;
|
|
17
|
+
|
|
18
|
+
declare function Check({ title, ...props }: IconProps): react.JSX.Element;
|
|
19
|
+
|
|
20
|
+
declare function ChevronDown({ title, ...props }: IconProps): react.JSX.Element;
|
|
21
|
+
|
|
22
|
+
declare function ChevronLeft({ title, ...props }: IconProps): react.JSX.Element;
|
|
23
|
+
|
|
24
|
+
declare function ChevronRight({ title, ...props }: IconProps): react.JSX.Element;
|
|
25
|
+
|
|
26
|
+
declare function Close({ title, ...props }: IconProps): react.JSX.Element;
|
|
27
|
+
|
|
28
|
+
declare function Info({ title, ...props }: IconProps): react.JSX.Element;
|
|
29
|
+
|
|
30
|
+
declare function Plus({ title, ...props }: IconProps): react.JSX.Element;
|
|
31
|
+
|
|
32
|
+
declare function Search({ title, ...props }: IconProps): react.JSX.Element;
|
|
33
|
+
|
|
34
|
+
declare function Warning({ title, ...props }: IconProps): react.JSX.Element;
|
|
35
|
+
|
|
36
|
+
export { ArrowLeft, ArrowRight, Calendar, Check, ChevronDown, ChevronLeft, ChevronRight, Close, type IconProps, Info, Plus, Search, Warning };
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,307 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
// src/icons/ArrowLeft.tsx
|
|
4
|
+
function ArrowLeft({ title, ...props }) {
|
|
5
|
+
return /* @__PURE__ */ jsxs(
|
|
6
|
+
"svg",
|
|
7
|
+
{
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
width: "1em",
|
|
11
|
+
height: "1em",
|
|
12
|
+
fill: "none",
|
|
13
|
+
stroke: "currentColor",
|
|
14
|
+
strokeWidth: 2,
|
|
15
|
+
strokeLinecap: "round",
|
|
16
|
+
strokeLinejoin: "round",
|
|
17
|
+
role: title ? "img" : void 0,
|
|
18
|
+
"aria-hidden": title ? void 0 : true,
|
|
19
|
+
focusable: "false",
|
|
20
|
+
...props,
|
|
21
|
+
children: [
|
|
22
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
23
|
+
/* @__PURE__ */ jsx("path", { d: "M19 12H5" }),
|
|
24
|
+
/* @__PURE__ */ jsx("path", { d: "M11 6l-6 6 6 6" })
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
function ArrowRight({ title, ...props }) {
|
|
30
|
+
return /* @__PURE__ */ jsxs(
|
|
31
|
+
"svg",
|
|
32
|
+
{
|
|
33
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
34
|
+
viewBox: "0 0 24 24",
|
|
35
|
+
width: "1em",
|
|
36
|
+
height: "1em",
|
|
37
|
+
fill: "none",
|
|
38
|
+
stroke: "currentColor",
|
|
39
|
+
strokeWidth: 2,
|
|
40
|
+
strokeLinecap: "round",
|
|
41
|
+
strokeLinejoin: "round",
|
|
42
|
+
role: title ? "img" : void 0,
|
|
43
|
+
"aria-hidden": title ? void 0 : true,
|
|
44
|
+
focusable: "false",
|
|
45
|
+
...props,
|
|
46
|
+
children: [
|
|
47
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
48
|
+
/* @__PURE__ */ jsx("path", { d: "M5 12h14" }),
|
|
49
|
+
/* @__PURE__ */ jsx("path", { d: "M13 6l6 6-6 6" })
|
|
50
|
+
]
|
|
51
|
+
}
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
function Calendar({ title, ...props }) {
|
|
55
|
+
return /* @__PURE__ */ jsxs(
|
|
56
|
+
"svg",
|
|
57
|
+
{
|
|
58
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
59
|
+
viewBox: "0 0 24 24",
|
|
60
|
+
width: "1em",
|
|
61
|
+
height: "1em",
|
|
62
|
+
fill: "none",
|
|
63
|
+
stroke: "currentColor",
|
|
64
|
+
strokeWidth: 2,
|
|
65
|
+
strokeLinecap: "round",
|
|
66
|
+
strokeLinejoin: "round",
|
|
67
|
+
role: title ? "img" : void 0,
|
|
68
|
+
"aria-hidden": title ? void 0 : true,
|
|
69
|
+
focusable: "false",
|
|
70
|
+
...props,
|
|
71
|
+
children: [
|
|
72
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
73
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "5", width: "18", height: "16", rx: "2" }),
|
|
74
|
+
/* @__PURE__ */ jsx("path", { d: "M3 10h18" }),
|
|
75
|
+
/* @__PURE__ */ jsx("path", { d: "M8 3v4" }),
|
|
76
|
+
/* @__PURE__ */ jsx("path", { d: "M16 3v4" })
|
|
77
|
+
]
|
|
78
|
+
}
|
|
79
|
+
);
|
|
80
|
+
}
|
|
81
|
+
function Check({ title, ...props }) {
|
|
82
|
+
return /* @__PURE__ */ jsxs(
|
|
83
|
+
"svg",
|
|
84
|
+
{
|
|
85
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
86
|
+
viewBox: "0 0 24 24",
|
|
87
|
+
width: "1em",
|
|
88
|
+
height: "1em",
|
|
89
|
+
fill: "none",
|
|
90
|
+
stroke: "currentColor",
|
|
91
|
+
strokeWidth: 2,
|
|
92
|
+
strokeLinecap: "round",
|
|
93
|
+
strokeLinejoin: "round",
|
|
94
|
+
role: title ? "img" : void 0,
|
|
95
|
+
"aria-hidden": title ? void 0 : true,
|
|
96
|
+
focusable: "false",
|
|
97
|
+
...props,
|
|
98
|
+
children: [
|
|
99
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
100
|
+
/* @__PURE__ */ jsx("path", { d: "M5 12l5 5L20 7" })
|
|
101
|
+
]
|
|
102
|
+
}
|
|
103
|
+
);
|
|
104
|
+
}
|
|
105
|
+
function ChevronDown({ title, ...props }) {
|
|
106
|
+
return /* @__PURE__ */ jsxs(
|
|
107
|
+
"svg",
|
|
108
|
+
{
|
|
109
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
110
|
+
viewBox: "0 0 24 24",
|
|
111
|
+
width: "1em",
|
|
112
|
+
height: "1em",
|
|
113
|
+
fill: "none",
|
|
114
|
+
stroke: "currentColor",
|
|
115
|
+
strokeWidth: 2,
|
|
116
|
+
strokeLinecap: "round",
|
|
117
|
+
strokeLinejoin: "round",
|
|
118
|
+
role: title ? "img" : void 0,
|
|
119
|
+
"aria-hidden": title ? void 0 : true,
|
|
120
|
+
focusable: "false",
|
|
121
|
+
...props,
|
|
122
|
+
children: [
|
|
123
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
124
|
+
/* @__PURE__ */ jsx("path", { d: "M6 9l6 6 6-6" })
|
|
125
|
+
]
|
|
126
|
+
}
|
|
127
|
+
);
|
|
128
|
+
}
|
|
129
|
+
function ChevronLeft({ title, ...props }) {
|
|
130
|
+
return /* @__PURE__ */ jsxs(
|
|
131
|
+
"svg",
|
|
132
|
+
{
|
|
133
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
134
|
+
viewBox: "0 0 24 24",
|
|
135
|
+
width: "1em",
|
|
136
|
+
height: "1em",
|
|
137
|
+
fill: "none",
|
|
138
|
+
stroke: "currentColor",
|
|
139
|
+
strokeWidth: 2,
|
|
140
|
+
strokeLinecap: "round",
|
|
141
|
+
strokeLinejoin: "round",
|
|
142
|
+
role: title ? "img" : void 0,
|
|
143
|
+
"aria-hidden": title ? void 0 : true,
|
|
144
|
+
focusable: "false",
|
|
145
|
+
...props,
|
|
146
|
+
children: [
|
|
147
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
148
|
+
/* @__PURE__ */ jsx("path", { d: "M15 6l-6 6 6 6" })
|
|
149
|
+
]
|
|
150
|
+
}
|
|
151
|
+
);
|
|
152
|
+
}
|
|
153
|
+
function ChevronRight({ title, ...props }) {
|
|
154
|
+
return /* @__PURE__ */ jsxs(
|
|
155
|
+
"svg",
|
|
156
|
+
{
|
|
157
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
158
|
+
viewBox: "0 0 24 24",
|
|
159
|
+
width: "1em",
|
|
160
|
+
height: "1em",
|
|
161
|
+
fill: "none",
|
|
162
|
+
stroke: "currentColor",
|
|
163
|
+
strokeWidth: 2,
|
|
164
|
+
strokeLinecap: "round",
|
|
165
|
+
strokeLinejoin: "round",
|
|
166
|
+
role: title ? "img" : void 0,
|
|
167
|
+
"aria-hidden": title ? void 0 : true,
|
|
168
|
+
focusable: "false",
|
|
169
|
+
...props,
|
|
170
|
+
children: [
|
|
171
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
172
|
+
/* @__PURE__ */ jsx("path", { d: "M9 6l6 6-6 6" })
|
|
173
|
+
]
|
|
174
|
+
}
|
|
175
|
+
);
|
|
176
|
+
}
|
|
177
|
+
function Close({ title, ...props }) {
|
|
178
|
+
return /* @__PURE__ */ jsxs(
|
|
179
|
+
"svg",
|
|
180
|
+
{
|
|
181
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
182
|
+
viewBox: "0 0 24 24",
|
|
183
|
+
width: "1em",
|
|
184
|
+
height: "1em",
|
|
185
|
+
fill: "none",
|
|
186
|
+
stroke: "currentColor",
|
|
187
|
+
strokeWidth: 2,
|
|
188
|
+
strokeLinecap: "round",
|
|
189
|
+
strokeLinejoin: "round",
|
|
190
|
+
role: title ? "img" : void 0,
|
|
191
|
+
"aria-hidden": title ? void 0 : true,
|
|
192
|
+
focusable: "false",
|
|
193
|
+
...props,
|
|
194
|
+
children: [
|
|
195
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
196
|
+
/* @__PURE__ */ jsx("path", { d: "M6 6l12 12" }),
|
|
197
|
+
/* @__PURE__ */ jsx("path", { d: "M18 6L6 18" })
|
|
198
|
+
]
|
|
199
|
+
}
|
|
200
|
+
);
|
|
201
|
+
}
|
|
202
|
+
function Info({ title, ...props }) {
|
|
203
|
+
return /* @__PURE__ */ jsxs(
|
|
204
|
+
"svg",
|
|
205
|
+
{
|
|
206
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
207
|
+
viewBox: "0 0 24 24",
|
|
208
|
+
width: "1em",
|
|
209
|
+
height: "1em",
|
|
210
|
+
fill: "none",
|
|
211
|
+
stroke: "currentColor",
|
|
212
|
+
strokeWidth: 2,
|
|
213
|
+
strokeLinecap: "round",
|
|
214
|
+
strokeLinejoin: "round",
|
|
215
|
+
role: title ? "img" : void 0,
|
|
216
|
+
"aria-hidden": title ? void 0 : true,
|
|
217
|
+
focusable: "false",
|
|
218
|
+
...props,
|
|
219
|
+
children: [
|
|
220
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
221
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "9" }),
|
|
222
|
+
/* @__PURE__ */ jsx("path", { d: "M12 16v-4" }),
|
|
223
|
+
/* @__PURE__ */ jsx("path", { d: "M12 8h.01" })
|
|
224
|
+
]
|
|
225
|
+
}
|
|
226
|
+
);
|
|
227
|
+
}
|
|
228
|
+
function Plus({ title, ...props }) {
|
|
229
|
+
return /* @__PURE__ */ jsxs(
|
|
230
|
+
"svg",
|
|
231
|
+
{
|
|
232
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
233
|
+
viewBox: "0 0 24 24",
|
|
234
|
+
width: "1em",
|
|
235
|
+
height: "1em",
|
|
236
|
+
fill: "none",
|
|
237
|
+
stroke: "currentColor",
|
|
238
|
+
strokeWidth: 2,
|
|
239
|
+
strokeLinecap: "round",
|
|
240
|
+
strokeLinejoin: "round",
|
|
241
|
+
role: title ? "img" : void 0,
|
|
242
|
+
"aria-hidden": title ? void 0 : true,
|
|
243
|
+
focusable: "false",
|
|
244
|
+
...props,
|
|
245
|
+
children: [
|
|
246
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
247
|
+
/* @__PURE__ */ jsx("path", { d: "M12 5v14" }),
|
|
248
|
+
/* @__PURE__ */ jsx("path", { d: "M5 12h14" })
|
|
249
|
+
]
|
|
250
|
+
}
|
|
251
|
+
);
|
|
252
|
+
}
|
|
253
|
+
function Search({ title, ...props }) {
|
|
254
|
+
return /* @__PURE__ */ jsxs(
|
|
255
|
+
"svg",
|
|
256
|
+
{
|
|
257
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
258
|
+
viewBox: "0 0 24 24",
|
|
259
|
+
width: "1em",
|
|
260
|
+
height: "1em",
|
|
261
|
+
fill: "none",
|
|
262
|
+
stroke: "currentColor",
|
|
263
|
+
strokeWidth: 2,
|
|
264
|
+
strokeLinecap: "round",
|
|
265
|
+
strokeLinejoin: "round",
|
|
266
|
+
role: title ? "img" : void 0,
|
|
267
|
+
"aria-hidden": title ? void 0 : true,
|
|
268
|
+
focusable: "false",
|
|
269
|
+
...props,
|
|
270
|
+
children: [
|
|
271
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
272
|
+
/* @__PURE__ */ jsx("circle", { cx: "11", cy: "11", r: "7" }),
|
|
273
|
+
/* @__PURE__ */ jsx("path", { d: "M20 20l-3.5-3.5" })
|
|
274
|
+
]
|
|
275
|
+
}
|
|
276
|
+
);
|
|
277
|
+
}
|
|
278
|
+
function Warning({ title, ...props }) {
|
|
279
|
+
return /* @__PURE__ */ jsxs(
|
|
280
|
+
"svg",
|
|
281
|
+
{
|
|
282
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
283
|
+
viewBox: "0 0 24 24",
|
|
284
|
+
width: "1em",
|
|
285
|
+
height: "1em",
|
|
286
|
+
fill: "none",
|
|
287
|
+
stroke: "currentColor",
|
|
288
|
+
strokeWidth: 2,
|
|
289
|
+
strokeLinecap: "round",
|
|
290
|
+
strokeLinejoin: "round",
|
|
291
|
+
role: title ? "img" : void 0,
|
|
292
|
+
"aria-hidden": title ? void 0 : true,
|
|
293
|
+
focusable: "false",
|
|
294
|
+
...props,
|
|
295
|
+
children: [
|
|
296
|
+
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
297
|
+
/* @__PURE__ */ jsx("path", { d: "M12 3l10 18H2z" }),
|
|
298
|
+
/* @__PURE__ */ jsx("path", { d: "M12 10v4" }),
|
|
299
|
+
/* @__PURE__ */ jsx("path", { d: "M12 18h.01" })
|
|
300
|
+
]
|
|
301
|
+
}
|
|
302
|
+
);
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
export { ArrowLeft, ArrowRight, Calendar, Check, ChevronDown, ChevronLeft, ChevronRight, Close, Info, Plus, Search, Warning };
|
|
306
|
+
//# sourceMappingURL=index.js.map
|
|
307
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/icons/ArrowLeft.tsx","../src/icons/ArrowRight.tsx","../src/icons/Calendar.tsx","../src/icons/Check.tsx","../src/icons/ChevronDown.tsx","../src/icons/ChevronLeft.tsx","../src/icons/ChevronRight.tsx","../src/icons/Close.tsx","../src/icons/Info.tsx","../src/icons/Plus.tsx","../src/icons/Search.tsx","../src/icons/Warning.tsx"],"names":["jsxs","jsx"],"mappings":"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","file":"index.js","sourcesContent":["// Generated from svg/arrow-left.svg by scripts/generate.mjs. Do not edit.\nimport type { IconProps } from '../types';\n\nexport function ArrowLeft({ title, ...props }: IconProps) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n width=\"1em\"\n height=\"1em\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n role={title ? 'img' : undefined}\n aria-hidden={title ? undefined : true}\n focusable=\"false\"\n {...props}\n >\n {title ? <title>{title}</title> : null}\n <path d=\"M19 12H5\" />\n <path d=\"M11 6l-6 6 6 6\" />\n </svg>\n );\n}\n","// Generated from svg/arrow-right.svg by scripts/generate.mjs. Do not edit.\nimport type { IconProps } from '../types';\n\nexport function ArrowRight({ title, ...props }: IconProps) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n width=\"1em\"\n height=\"1em\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n role={title ? 'img' : undefined}\n aria-hidden={title ? undefined : true}\n focusable=\"false\"\n {...props}\n >\n {title ? <title>{title}</title> : null}\n <path d=\"M5 12h14\" />\n <path d=\"M13 6l6 6-6 6\" />\n </svg>\n );\n}\n","// Generated from svg/calendar.svg by scripts/generate.mjs. Do not edit.\nimport type { IconProps } from '../types';\n\nexport function Calendar({ title, ...props }: IconProps) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n width=\"1em\"\n height=\"1em\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n role={title ? 'img' : undefined}\n aria-hidden={title ? undefined : true}\n focusable=\"false\"\n {...props}\n >\n {title ? <title>{title}</title> : null}\n <rect x=\"3\" y=\"5\" width=\"18\" height=\"16\" rx=\"2\" />\n <path d=\"M3 10h18\" />\n <path d=\"M8 3v4\" />\n <path d=\"M16 3v4\" />\n </svg>\n );\n}\n","// Generated from svg/check.svg by scripts/generate.mjs. Do not edit.\nimport type { IconProps } from '../types';\n\nexport function Check({ title, ...props }: IconProps) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n width=\"1em\"\n height=\"1em\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n role={title ? 'img' : undefined}\n aria-hidden={title ? undefined : true}\n focusable=\"false\"\n {...props}\n >\n {title ? <title>{title}</title> : null}\n <path d=\"M5 12l5 5L20 7\" />\n </svg>\n );\n}\n","// Generated from svg/chevron-down.svg by scripts/generate.mjs. Do not edit.\nimport type { IconProps } from '../types';\n\nexport function ChevronDown({ title, ...props }: IconProps) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n width=\"1em\"\n height=\"1em\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n role={title ? 'img' : undefined}\n aria-hidden={title ? undefined : true}\n focusable=\"false\"\n {...props}\n >\n {title ? <title>{title}</title> : null}\n <path d=\"M6 9l6 6 6-6\" />\n </svg>\n );\n}\n","// Generated from svg/chevron-left.svg by scripts/generate.mjs. Do not edit.\nimport type { IconProps } from '../types';\n\nexport function ChevronLeft({ title, ...props }: IconProps) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n width=\"1em\"\n height=\"1em\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n role={title ? 'img' : undefined}\n aria-hidden={title ? undefined : true}\n focusable=\"false\"\n {...props}\n >\n {title ? <title>{title}</title> : null}\n <path d=\"M15 6l-6 6 6 6\" />\n </svg>\n );\n}\n","// Generated from svg/chevron-right.svg by scripts/generate.mjs. Do not edit.\nimport type { IconProps } from '../types';\n\nexport function ChevronRight({ title, ...props }: IconProps) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n width=\"1em\"\n height=\"1em\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n role={title ? 'img' : undefined}\n aria-hidden={title ? undefined : true}\n focusable=\"false\"\n {...props}\n >\n {title ? <title>{title}</title> : null}\n <path d=\"M9 6l6 6-6 6\" />\n </svg>\n );\n}\n","// Generated from svg/close.svg by scripts/generate.mjs. Do not edit.\nimport type { IconProps } from '../types';\n\nexport function Close({ title, ...props }: IconProps) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n width=\"1em\"\n height=\"1em\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n role={title ? 'img' : undefined}\n aria-hidden={title ? undefined : true}\n focusable=\"false\"\n {...props}\n >\n {title ? <title>{title}</title> : null}\n <path d=\"M6 6l12 12\" />\n <path d=\"M18 6L6 18\" />\n </svg>\n );\n}\n","// Generated from svg/info.svg by scripts/generate.mjs. Do not edit.\nimport type { IconProps } from '../types';\n\nexport function Info({ title, ...props }: IconProps) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n width=\"1em\"\n height=\"1em\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n role={title ? 'img' : undefined}\n aria-hidden={title ? undefined : true}\n focusable=\"false\"\n {...props}\n >\n {title ? <title>{title}</title> : null}\n <circle cx=\"12\" cy=\"12\" r=\"9\" />\n <path d=\"M12 16v-4\" />\n <path d=\"M12 8h.01\" />\n </svg>\n );\n}\n","// Generated from svg/plus.svg by scripts/generate.mjs. Do not edit.\nimport type { IconProps } from '../types';\n\nexport function Plus({ title, ...props }: IconProps) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n width=\"1em\"\n height=\"1em\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n role={title ? 'img' : undefined}\n aria-hidden={title ? undefined : true}\n focusable=\"false\"\n {...props}\n >\n {title ? <title>{title}</title> : null}\n <path d=\"M12 5v14\" />\n <path d=\"M5 12h14\" />\n </svg>\n );\n}\n","// Generated from svg/search.svg by scripts/generate.mjs. Do not edit.\nimport type { IconProps } from '../types';\n\nexport function Search({ title, ...props }: IconProps) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n width=\"1em\"\n height=\"1em\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n role={title ? 'img' : undefined}\n aria-hidden={title ? undefined : true}\n focusable=\"false\"\n {...props}\n >\n {title ? <title>{title}</title> : null}\n <circle cx=\"11\" cy=\"11\" r=\"7\" />\n <path d=\"M20 20l-3.5-3.5\" />\n </svg>\n );\n}\n","// Generated from svg/warning.svg by scripts/generate.mjs. Do not edit.\nimport type { IconProps } from '../types';\n\nexport function Warning({ title, ...props }: IconProps) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n width=\"1em\"\n height=\"1em\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n role={title ? 'img' : undefined}\n aria-hidden={title ? undefined : true}\n focusable=\"false\"\n {...props}\n >\n {title ? <title>{title}</title> : null}\n <path d=\"M12 3l10 18H2z\" />\n <path d=\"M12 10v4\" />\n <path d=\"M12 18h.01\" />\n </svg>\n );\n}\n"]}
|
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pearpages/pulp-icons",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "pulp icons: a curated set of stroke icons as React components, generated from SVG. Tree-shakeable, sized by font-size, coloured by currentColor.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Pere Pages <hello@pearpages.com> (https://pearpages.com)",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/pearpages/pulp.git",
|
|
10
|
+
"directory": "packages/icons"
|
|
11
|
+
},
|
|
12
|
+
"type": "module",
|
|
13
|
+
"sideEffects": false,
|
|
14
|
+
"files": [
|
|
15
|
+
"dist"
|
|
16
|
+
],
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"import": "./dist/index.js"
|
|
22
|
+
},
|
|
23
|
+
"./package.json": "./package.json"
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"react": "^19.0.0"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@arethetypeswrong/cli": "^0.18.5",
|
|
30
|
+
"@testing-library/dom": "^10.4.0",
|
|
31
|
+
"@testing-library/jest-dom": "^6.8.0",
|
|
32
|
+
"@testing-library/react": "^16.3.3",
|
|
33
|
+
"@types/react": "^19.3.0",
|
|
34
|
+
"@types/react-dom": "^19.3.0",
|
|
35
|
+
"jsdom": "^30.0.1",
|
|
36
|
+
"publint": "^0.3.24",
|
|
37
|
+
"react": "^19.3.0",
|
|
38
|
+
"react-dom": "^19.3.0",
|
|
39
|
+
"tsup": "^8.5.1",
|
|
40
|
+
"typescript": "^5.9.3",
|
|
41
|
+
"vitest": "^4.1.11"
|
|
42
|
+
},
|
|
43
|
+
"scripts": {
|
|
44
|
+
"generate": "node scripts/generate.mjs",
|
|
45
|
+
"check": "node scripts/generate.mjs --check",
|
|
46
|
+
"build": "tsup",
|
|
47
|
+
"typecheck": "tsc --noEmit",
|
|
48
|
+
"test": "vitest",
|
|
49
|
+
"test:run": "vitest run",
|
|
50
|
+
"check:package": "publint && attw --pack . --profile esm-only"
|
|
51
|
+
}
|
|
52
|
+
}
|