@dilipod/ui 0.2.10 → 0.2.11
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/dist/icons.d.ts +2 -8
- package/dist/icons.d.ts.map +1 -1
- package/dist/index.js +153 -331
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +146 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/icons.ts +3 -106
package/package.json
CHANGED
package/src/icons.ts
CHANGED
|
@@ -1,115 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Dilipod Icon Library
|
|
3
3
|
*
|
|
4
|
-
* Re-exports Phosphor icons
|
|
4
|
+
* Re-exports all Phosphor icons for use across the design system.
|
|
5
5
|
* Import icons from '@dilipod/ui' instead of '@phosphor-icons/react' directly.
|
|
6
6
|
*
|
|
7
7
|
* @example
|
|
8
8
|
* import { ArrowRight, Brain, CheckCircle } from '@dilipod/ui'
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
|
-
//
|
|
12
|
-
export
|
|
13
|
-
ArrowRight,
|
|
14
|
-
ArrowUpRight,
|
|
15
|
-
ArrowLeft,
|
|
16
|
-
CaretRight,
|
|
17
|
-
CaretDown,
|
|
18
|
-
CaretUp,
|
|
19
|
-
List,
|
|
20
|
-
X,
|
|
21
|
-
Plus,
|
|
22
|
-
Minus,
|
|
23
|
-
Check,
|
|
24
|
-
Play,
|
|
25
|
-
Pause,
|
|
26
|
-
Stop,
|
|
27
|
-
} from '@phosphor-icons/react'
|
|
28
|
-
|
|
29
|
-
// Business & Work
|
|
30
|
-
export {
|
|
31
|
-
Brain,
|
|
32
|
-
Robot,
|
|
33
|
-
Gear,
|
|
34
|
-
GearSix,
|
|
35
|
-
Files,
|
|
36
|
-
File,
|
|
37
|
-
FileText,
|
|
38
|
-
Database,
|
|
39
|
-
Receipt,
|
|
40
|
-
Wallet,
|
|
41
|
-
Clock,
|
|
42
|
-
Calendar,
|
|
43
|
-
VideoCamera,
|
|
44
|
-
ChatCircle,
|
|
45
|
-
ChartBar,
|
|
46
|
-
ChartLineUp,
|
|
47
|
-
Handshake,
|
|
48
|
-
UserPlus,
|
|
49
|
-
UsersThree,
|
|
50
|
-
User,
|
|
51
|
-
Users,
|
|
52
|
-
SignOut,
|
|
53
|
-
SignIn,
|
|
54
|
-
} from '@phosphor-icons/react'
|
|
55
|
-
|
|
56
|
-
// Industries
|
|
57
|
-
export {
|
|
58
|
-
Buildings,
|
|
59
|
-
Briefcase,
|
|
60
|
-
FirstAid,
|
|
61
|
-
ShoppingCart,
|
|
62
|
-
AddressBook,
|
|
63
|
-
} from '@phosphor-icons/react'
|
|
64
|
-
|
|
65
|
-
// Status & Feedback
|
|
66
|
-
export {
|
|
67
|
-
CheckCircle,
|
|
68
|
-
CheckSquare,
|
|
69
|
-
WarningCircle,
|
|
70
|
-
Warning,
|
|
71
|
-
Info,
|
|
72
|
-
Question,
|
|
73
|
-
Circle,
|
|
74
|
-
Target,
|
|
75
|
-
Crosshair,
|
|
76
|
-
ShieldCheck,
|
|
77
|
-
UserCircleCheck,
|
|
78
|
-
Lightning,
|
|
79
|
-
TrendUp,
|
|
80
|
-
Rocket,
|
|
81
|
-
} from '@phosphor-icons/react'
|
|
82
|
-
|
|
83
|
-
// Social & Communication
|
|
84
|
-
export {
|
|
85
|
-
LinkedinLogo,
|
|
86
|
-
XLogo,
|
|
87
|
-
EnvelopeSimple,
|
|
88
|
-
Envelope,
|
|
89
|
-
Phone,
|
|
90
|
-
Globe,
|
|
91
|
-
Quotes,
|
|
92
|
-
} from '@phosphor-icons/react'
|
|
93
|
-
|
|
94
|
-
// UI Elements
|
|
95
|
-
export {
|
|
96
|
-
House,
|
|
97
|
-
MagnifyingGlass,
|
|
98
|
-
Trash,
|
|
99
|
-
PencilSimple,
|
|
100
|
-
Copy,
|
|
101
|
-
DotsThree,
|
|
102
|
-
DotsThreeVertical,
|
|
103
|
-
Eye,
|
|
104
|
-
EyeSlash,
|
|
105
|
-
Funnel,
|
|
106
|
-
SortAscending,
|
|
107
|
-
SortDescending,
|
|
108
|
-
Download,
|
|
109
|
-
Upload,
|
|
110
|
-
Link,
|
|
111
|
-
ArrowSquareOut,
|
|
112
|
-
} from '@phosphor-icons/react'
|
|
113
|
-
|
|
114
|
-
// Re-export Icon type for TypeScript
|
|
115
|
-
export type { Icon, IconProps } from '@phosphor-icons/react'
|
|
11
|
+
// Export all icons from Phosphor
|
|
12
|
+
export * from '@phosphor-icons/react'
|