@pearpages/pulp-icons 0.0.0 → 0.2.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/README.md +11 -2
- package/dist/index.d.ts +81 -1
- package/dist/index.js +1045 -15
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,8 +33,17 @@ import { Icon } from '@pearpages/pulp-react/icon';
|
|
|
33
33
|
|
|
34
34
|
## Icons
|
|
35
35
|
|
|
36
|
-
`ArrowLeft`, `ArrowRight`, `
|
|
37
|
-
`
|
|
36
|
+
`AlertCircle`, `Archive`, `ArrowLeft`, `ArrowRight`, `Ban`, `Bookmark`, `Calendar`, `Car`, `Chain`,
|
|
37
|
+
`Check`, `CheckCircle`, `ChevronDown`, `ChevronLeft`, `ChevronRight`, `Close`, `Compass`,
|
|
38
|
+
`Crosshair`, `Export`, `Filter`, `GripVertical`, `Heart`, `HelpCircle`, `Info`, `Mail`, `MapFolded`,
|
|
39
|
+
`MapPin`, `Meh`, `Message`, `Moon`, `Note`, `Page`, `Pencil`, `Picture`, `Plus`, `Search`, `Send`,
|
|
40
|
+
`Settings`, `Share`, `ShieldCheck`, `Star`, `Sun`, `Tag`, `Trash`, `TrendingUp`, `Trophy`,
|
|
41
|
+
`Umbrella`, `Undo`, `User`, `Users`, `Utensils`, `Warning`, `ZoomIn`
|
|
42
|
+
|
|
43
|
+
Outline only. For a filled state (a saved bookmark, a liked heart) set `fill: currentColor` on the glyph
|
|
44
|
+
from your own CSS: a stylesheet beats the `fill="none"` attribute, so no second glyph is needed.
|
|
45
|
+
|
|
46
|
+
Every glyph is drawn for this set on a 24 grid with a 2 px round stroke; none is copied from another library.
|
|
38
47
|
|
|
39
48
|
## License
|
|
40
49
|
|
package/dist/index.d.ts
CHANGED
|
@@ -9,14 +9,28 @@ interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'children'> {
|
|
|
9
9
|
title?: string;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
+
declare function AlertCircle({ title, ...props }: IconProps): react.JSX.Element;
|
|
13
|
+
|
|
14
|
+
declare function Archive({ title, ...props }: IconProps): react.JSX.Element;
|
|
15
|
+
|
|
12
16
|
declare function ArrowLeft({ title, ...props }: IconProps): react.JSX.Element;
|
|
13
17
|
|
|
14
18
|
declare function ArrowRight({ title, ...props }: IconProps): react.JSX.Element;
|
|
15
19
|
|
|
20
|
+
declare function Ban({ title, ...props }: IconProps): react.JSX.Element;
|
|
21
|
+
|
|
22
|
+
declare function Bookmark({ title, ...props }: IconProps): react.JSX.Element;
|
|
23
|
+
|
|
16
24
|
declare function Calendar({ title, ...props }: IconProps): react.JSX.Element;
|
|
17
25
|
|
|
26
|
+
declare function Car({ title, ...props }: IconProps): react.JSX.Element;
|
|
27
|
+
|
|
28
|
+
declare function Chain({ title, ...props }: IconProps): react.JSX.Element;
|
|
29
|
+
|
|
18
30
|
declare function Check({ title, ...props }: IconProps): react.JSX.Element;
|
|
19
31
|
|
|
32
|
+
declare function CheckCircle({ title, ...props }: IconProps): react.JSX.Element;
|
|
33
|
+
|
|
20
34
|
declare function ChevronDown({ title, ...props }: IconProps): react.JSX.Element;
|
|
21
35
|
|
|
22
36
|
declare function ChevronLeft({ title, ...props }: IconProps): react.JSX.Element;
|
|
@@ -25,12 +39,78 @@ declare function ChevronRight({ title, ...props }: IconProps): react.JSX.Element
|
|
|
25
39
|
|
|
26
40
|
declare function Close({ title, ...props }: IconProps): react.JSX.Element;
|
|
27
41
|
|
|
42
|
+
declare function Compass({ title, ...props }: IconProps): react.JSX.Element;
|
|
43
|
+
|
|
44
|
+
declare function Crosshair({ title, ...props }: IconProps): react.JSX.Element;
|
|
45
|
+
|
|
46
|
+
declare function Export({ title, ...props }: IconProps): react.JSX.Element;
|
|
47
|
+
|
|
48
|
+
declare function Filter({ title, ...props }: IconProps): react.JSX.Element;
|
|
49
|
+
|
|
50
|
+
declare function GripVertical({ title, ...props }: IconProps): react.JSX.Element;
|
|
51
|
+
|
|
52
|
+
declare function Heart({ title, ...props }: IconProps): react.JSX.Element;
|
|
53
|
+
|
|
54
|
+
declare function HelpCircle({ title, ...props }: IconProps): react.JSX.Element;
|
|
55
|
+
|
|
28
56
|
declare function Info({ title, ...props }: IconProps): react.JSX.Element;
|
|
29
57
|
|
|
58
|
+
declare function Mail({ title, ...props }: IconProps): react.JSX.Element;
|
|
59
|
+
|
|
60
|
+
declare function MapFolded({ title, ...props }: IconProps): react.JSX.Element;
|
|
61
|
+
|
|
62
|
+
declare function MapPin({ title, ...props }: IconProps): react.JSX.Element;
|
|
63
|
+
|
|
64
|
+
declare function Meh({ title, ...props }: IconProps): react.JSX.Element;
|
|
65
|
+
|
|
66
|
+
declare function Message({ title, ...props }: IconProps): react.JSX.Element;
|
|
67
|
+
|
|
68
|
+
declare function Moon({ title, ...props }: IconProps): react.JSX.Element;
|
|
69
|
+
|
|
70
|
+
declare function Note({ title, ...props }: IconProps): react.JSX.Element;
|
|
71
|
+
|
|
72
|
+
declare function Page({ title, ...props }: IconProps): react.JSX.Element;
|
|
73
|
+
|
|
74
|
+
declare function Pencil({ title, ...props }: IconProps): react.JSX.Element;
|
|
75
|
+
|
|
76
|
+
declare function Picture({ title, ...props }: IconProps): react.JSX.Element;
|
|
77
|
+
|
|
30
78
|
declare function Plus({ title, ...props }: IconProps): react.JSX.Element;
|
|
31
79
|
|
|
32
80
|
declare function Search({ title, ...props }: IconProps): react.JSX.Element;
|
|
33
81
|
|
|
82
|
+
declare function Send({ title, ...props }: IconProps): react.JSX.Element;
|
|
83
|
+
|
|
84
|
+
declare function Settings({ title, ...props }: IconProps): react.JSX.Element;
|
|
85
|
+
|
|
86
|
+
declare function Share({ title, ...props }: IconProps): react.JSX.Element;
|
|
87
|
+
|
|
88
|
+
declare function ShieldCheck({ title, ...props }: IconProps): react.JSX.Element;
|
|
89
|
+
|
|
90
|
+
declare function Star({ title, ...props }: IconProps): react.JSX.Element;
|
|
91
|
+
|
|
92
|
+
declare function Sun({ title, ...props }: IconProps): react.JSX.Element;
|
|
93
|
+
|
|
94
|
+
declare function Tag({ title, ...props }: IconProps): react.JSX.Element;
|
|
95
|
+
|
|
96
|
+
declare function Trash({ title, ...props }: IconProps): react.JSX.Element;
|
|
97
|
+
|
|
98
|
+
declare function TrendingUp({ title, ...props }: IconProps): react.JSX.Element;
|
|
99
|
+
|
|
100
|
+
declare function Trophy({ title, ...props }: IconProps): react.JSX.Element;
|
|
101
|
+
|
|
102
|
+
declare function Umbrella({ title, ...props }: IconProps): react.JSX.Element;
|
|
103
|
+
|
|
104
|
+
declare function Undo({ title, ...props }: IconProps): react.JSX.Element;
|
|
105
|
+
|
|
106
|
+
declare function User({ title, ...props }: IconProps): react.JSX.Element;
|
|
107
|
+
|
|
108
|
+
declare function Users({ title, ...props }: IconProps): react.JSX.Element;
|
|
109
|
+
|
|
110
|
+
declare function Utensils({ title, ...props }: IconProps): react.JSX.Element;
|
|
111
|
+
|
|
34
112
|
declare function Warning({ title, ...props }: IconProps): react.JSX.Element;
|
|
35
113
|
|
|
36
|
-
|
|
114
|
+
declare function ZoomIn({ title, ...props }: IconProps): react.JSX.Element;
|
|
115
|
+
|
|
116
|
+
export { AlertCircle, Archive, ArrowLeft, ArrowRight, Ban, Bookmark, Calendar, Car, Chain, Check, CheckCircle, ChevronDown, ChevronLeft, ChevronRight, Close, Compass, Crosshair, Export, Filter, GripVertical, Heart, HelpCircle, type IconProps, Info, Mail, MapFolded, MapPin, Meh, Message, Moon, Note, Page, Pencil, Picture, Plus, Search, Send, Settings, Share, ShieldCheck, Star, Sun, Tag, Trash, TrendingUp, Trophy, Umbrella, Undo, User, Users, Utensils, Warning, ZoomIn };
|