@ap-gen/ui 1.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/dist/components/alert/index.d.ts +11 -0
- package/dist/components/badge/index.d.ts +10 -0
- package/dist/components/breadcrumb/index.d.ts +10 -0
- package/dist/components/button/index.d.ts +17 -0
- package/dist/components/button/text.d.ts +17 -0
- package/dist/components/calendar/amount.d.ts +7 -0
- package/dist/components/calendar/date.d.ts +12 -0
- package/dist/components/calendar/index.d.ts +1 -0
- package/dist/components/calendar/month.d.ts +1 -0
- package/dist/components/calendar/schedule.d.ts +9 -0
- package/dist/components/calendar/week.d.ts +1 -0
- package/dist/components/calendar/year.d.ts +3 -0
- package/dist/components/card/index.d.ts +11 -0
- package/dist/components/cell-picker/index.d.ts +13 -0
- package/dist/components/cell-picker/item.d.ts +8 -0
- package/dist/components/checkbox/index.d.ts +7 -0
- package/dist/components/chip/index.d.ts +13 -0
- package/dist/components/color-picker/index.d.ts +6 -0
- package/dist/components/combo-box/index.d.ts +18 -0
- package/dist/components/combo-box/text.d.ts +17 -0
- package/dist/components/description/index.d.ts +15 -0
- package/dist/components/divider/index.d.ts +7 -0
- package/dist/components/empty/index.d.ts +5 -0
- package/dist/components/header/index.d.ts +8 -0
- package/dist/components/header/list.d.ts +13 -0
- package/dist/components/header/section.d.ts +19 -0
- package/dist/components/header/tab.d.ts +9 -0
- package/dist/components/icon/index.d.ts +553 -0
- package/dist/components/index.d.ts +48 -0
- package/dist/components/input/index.d.ts +20 -0
- package/dist/components/list/compact.d.ts +11 -0
- package/dist/components/list/default.d.ts +22 -0
- package/dist/components/list/index.d.ts +8 -0
- package/dist/components/list/tab.d.ts +11 -0
- package/dist/components/list-group/index.d.ts +14 -0
- package/dist/components/loading/index.d.ts +6 -0
- package/dist/components/motion-pressable/index.d.ts +3 -0
- package/dist/components/motion-pressable-div/index.d.ts +3 -0
- package/dist/components/navigation-bar/index.d.ts +10 -0
- package/dist/components/page-indicator/index.d.ts +8 -0
- package/dist/components/pagination/index.d.ts +8 -0
- package/dist/components/paragraph/index.d.ts +13 -0
- package/dist/components/popover/index.d.ts +16 -0
- package/dist/components/progress-bar/index.d.ts +10 -0
- package/dist/components/radio/index.d.ts +6 -0
- package/dist/components/search-bar/index.d.ts +7 -0
- package/dist/components/search-box/index.d.ts +8 -0
- package/dist/components/segmented-control/index.d.ts +17 -0
- package/dist/components/slider/index.d.ts +14 -0
- package/dist/components/snackbar/index.d.ts +19 -0
- package/dist/components/switch/index.d.ts +6 -0
- package/dist/components/tab-bar/index.d.ts +14 -0
- package/dist/components/table/column.d.ts +1 -0
- package/dist/components/table/front-checkbox.d.ts +2 -0
- package/dist/components/table/head-column.d.ts +15 -0
- package/dist/components/table/head-row.d.ts +17 -0
- package/dist/components/table/index.d.ts +1 -0
- package/dist/components/table/item.d.ts +14 -0
- package/dist/components/tabs/index.d.ts +13 -0
- package/dist/components/text/constant/variants.d.ts +153 -0
- package/dist/components/text/index.d.ts +278 -0
- package/dist/components/timeline/index.d.ts +10 -0
- package/dist/components/tooltip/index.d.ts +11 -0
- package/dist/components/tooltip/popover.d.ts +5 -0
- package/dist/components/upload/dropbox.d.ts +10 -0
- package/dist/components/upload/file.d.ts +8 -0
- package/dist/components/upload/image.d.ts +7 -0
- package/dist/components/upload/index.d.ts +8 -0
- package/dist/hooks/useCalendar.d.ts +21 -0
- package/dist/hooks/useClickOutside.d.ts +6 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2834 -0
- package/dist/index.js.map +1 -0
- package/dist/provider/CalendarProvider.d.ts +16 -0
- package/dist/provider/ClientProvider.d.ts +15 -0
- package/dist/provider/ColorThemeProvider.d.ts +10 -0
- package/dist/provider/Provider.d.ts +2 -0
- package/dist/provider/index.d.ts +2 -0
- package/dist/styles/color/base.d.ts +282 -0
- package/dist/styles/color/index.d.ts +293 -0
- package/dist/styles/color/themes/dark.d.ts +3 -0
- package/dist/styles/color/themes/elevated.d.ts +3 -0
- package/dist/styles/color/themes/light.d.ts +3 -0
- package/dist/styles/color/themes/trueDark.d.ts +3 -0
- package/dist/styles/color/themes/type.d.ts +322 -0
- package/dist/styles/color/type.d.ts +7 -0
- package/dist/utils/debounce.d.ts +1 -0
- package/dist/utils/getNestedValue.d.ts +1 -0
- package/dist/utils/hexToRgb.d.ts +1 -0
- package/dist/utils/index.d.ts +0 -0
- package/esm/index.mjs +2757 -0
- package/esm/index.mjs.map +1 -0
- package/package.json +214 -0
|
@@ -0,0 +1,553 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ColorPath } from '../../styles/color/type';
|
|
3
|
+
declare const ICONS: {
|
|
4
|
+
add: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
5
|
+
person: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
6
|
+
addPhotoAlternate: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
7
|
+
airconditioner: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
8
|
+
airplane: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
9
|
+
alarm_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
10
|
+
alarm: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
11
|
+
computer: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
12
|
+
alignCenter: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
13
|
+
alignLeft: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
14
|
+
alignRight: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
15
|
+
apartment_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
16
|
+
apartment: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
17
|
+
apparel_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
18
|
+
apparel: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
19
|
+
ar_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
20
|
+
ar: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
21
|
+
colorize: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
22
|
+
aroundView: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
23
|
+
arrowDown: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
24
|
+
arrowDownward: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
25
|
+
arrowLeft: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
26
|
+
arrowRight: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
27
|
+
arrowUp: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
28
|
+
arrowUpward: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
29
|
+
arrowBackIos: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
30
|
+
arrowForwardIos: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
31
|
+
back: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
32
|
+
backup: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
33
|
+
bank_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
34
|
+
bank: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
35
|
+
barcode: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
36
|
+
birthday_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
37
|
+
birthday: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
38
|
+
bluetooth: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
39
|
+
bookmark_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
40
|
+
bookmark: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
41
|
+
box_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
42
|
+
box: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
43
|
+
bracketDown: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
44
|
+
bracketLeft: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
45
|
+
bracketRight: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
46
|
+
bracketUp: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
47
|
+
brush_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
48
|
+
brush: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
49
|
+
bubble_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
50
|
+
bubble: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
51
|
+
building_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
52
|
+
building: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
53
|
+
bulb_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
54
|
+
bulb: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
55
|
+
bus_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
56
|
+
bus: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
57
|
+
calculator_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
58
|
+
calculator: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
59
|
+
calendar_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
60
|
+
calendar: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
61
|
+
calendarCheck_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
62
|
+
calendarCheck: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
63
|
+
calendarClock_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
64
|
+
calendarClock: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
65
|
+
call_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
66
|
+
call: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
67
|
+
callMiss_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
68
|
+
callMiss: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
69
|
+
camera_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
70
|
+
camera: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
71
|
+
cameraRotate_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
72
|
+
cameraRotate: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
73
|
+
car_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
74
|
+
car: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
75
|
+
card_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
76
|
+
card: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
77
|
+
cardAdd_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
78
|
+
cardAdd: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
79
|
+
cardRemove_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
80
|
+
cardRemove: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
81
|
+
cart_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
82
|
+
cart: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
83
|
+
cash_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
84
|
+
cash: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
85
|
+
cashDouble_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
86
|
+
cashDouble: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
87
|
+
change: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
88
|
+
chart: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
89
|
+
chartArea: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
90
|
+
check: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
91
|
+
formatBold: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
92
|
+
formatItalic: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
93
|
+
formatAlignLeft: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
94
|
+
formatAlignCenter: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
95
|
+
formatAlignRight: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
96
|
+
superscript: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
97
|
+
subscript: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
98
|
+
formatUnderlined: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
99
|
+
formatListBulleted: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
100
|
+
formatListNumbered: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
101
|
+
church_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
102
|
+
church: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
103
|
+
chevronRight: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
104
|
+
circleAdd_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
105
|
+
circleAdd: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
106
|
+
circleCharge_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
107
|
+
circleCharge: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
108
|
+
circleCheck_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
109
|
+
circleCheck: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
110
|
+
circleClose_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
111
|
+
circleClose: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
112
|
+
circleCompare_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
113
|
+
circleCompare: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
114
|
+
publish: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
115
|
+
circleDown_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
116
|
+
circleDown: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
117
|
+
circleDownload_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
118
|
+
circleDownload: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
119
|
+
circleDropDown_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
120
|
+
circleDropDown: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
121
|
+
circleInfo_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
122
|
+
circleInfo: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
123
|
+
circleLeft_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
124
|
+
circleLeft: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
125
|
+
circleMore_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
126
|
+
circleMore: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
127
|
+
circleNotice_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
128
|
+
circleNotice: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
129
|
+
circleNotification_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
130
|
+
circleNotification: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
131
|
+
circlePause_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
132
|
+
circlePause: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
133
|
+
circlePlay_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
134
|
+
circlePlay: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
135
|
+
circleQuestion_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
136
|
+
circleQuestion: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
137
|
+
circleRefresh_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
138
|
+
circleRefresh: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
139
|
+
circleRemove_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
140
|
+
circleRemove: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
141
|
+
circleRight_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
142
|
+
circleRight: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
143
|
+
circleStop_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
144
|
+
circleStop: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
145
|
+
circleUp_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
146
|
+
circleUp: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
147
|
+
clock_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
148
|
+
clock: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
149
|
+
close: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
150
|
+
cloud_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
151
|
+
cloud: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
152
|
+
cloudy_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
153
|
+
cloudy: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
154
|
+
coffee_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
155
|
+
coffee: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
156
|
+
coin_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
157
|
+
coin: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
158
|
+
color_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
159
|
+
color: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
160
|
+
compare_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
161
|
+
compare: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
162
|
+
construction_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
163
|
+
construction: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
164
|
+
contactless_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
165
|
+
contactless: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
166
|
+
copy_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
167
|
+
copy: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
168
|
+
crop: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
169
|
+
cropLandscape_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
170
|
+
cropLandscape: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
171
|
+
cropPortrait_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
172
|
+
cropPortrait: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
173
|
+
cropSquare_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
174
|
+
cropSquare: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
175
|
+
cuolumn_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
176
|
+
cuolumn: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
177
|
+
darkmode_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
178
|
+
darkmode: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
179
|
+
data: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
180
|
+
database_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
181
|
+
database: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
182
|
+
decrease: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
183
|
+
discount: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
184
|
+
discover_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
185
|
+
discover: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
186
|
+
document_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
187
|
+
document: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
188
|
+
door_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
189
|
+
door: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
190
|
+
download: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
191
|
+
dropDown: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
192
|
+
dropUp: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
193
|
+
draft: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
194
|
+
dragIndicator: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
195
|
+
error: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
196
|
+
effects: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
197
|
+
eraser_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
198
|
+
eraser: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
199
|
+
exclamationMark: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
200
|
+
expand: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
201
|
+
expandMore: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
202
|
+
eyeOff_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
203
|
+
eyeOff: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
204
|
+
eyeOn_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
205
|
+
eyeOn: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
206
|
+
faceBad_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
207
|
+
faceBad: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
208
|
+
faceDissatisfied_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
209
|
+
faceDissatisfied: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
210
|
+
faceHappy_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
211
|
+
faceHappy: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
212
|
+
faceId_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
213
|
+
faceId: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
214
|
+
faceNeutral_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
215
|
+
faceNeutral: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
216
|
+
faceSmile_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
217
|
+
faceSmile: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
218
|
+
fastfood_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
219
|
+
fastfood: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
220
|
+
favorite_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
221
|
+
favorite: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
222
|
+
feed_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
223
|
+
feed: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
224
|
+
feedStack_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
225
|
+
feedStack: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
226
|
+
field_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
227
|
+
field: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
228
|
+
file_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
229
|
+
file: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
230
|
+
fileAdd_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
231
|
+
fileAdd: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
232
|
+
fileDownload_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
233
|
+
fileDownload: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
234
|
+
fileEmpty_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
235
|
+
fileEmpty: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
236
|
+
fileScan_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
237
|
+
fileScan: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
238
|
+
fileSearch_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
239
|
+
fileSearch: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
240
|
+
filter: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
241
|
+
filterList: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
242
|
+
fingerSlideHorizontal_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
243
|
+
fingerSlideHorizontal: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
244
|
+
fire_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
245
|
+
fire: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
246
|
+
flag_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
247
|
+
flag: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
248
|
+
flashAuto_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
249
|
+
flashAuto: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
250
|
+
flashOff_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
251
|
+
flashOff: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
252
|
+
flashOn_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
253
|
+
flashOn: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
254
|
+
flat: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
255
|
+
folder_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
256
|
+
folder: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
257
|
+
folderOpen_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
258
|
+
folderOpen: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
259
|
+
front: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
260
|
+
game_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
261
|
+
game: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
262
|
+
gavel: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
263
|
+
gift: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
264
|
+
global: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
265
|
+
globalFind: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
266
|
+
gps: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
267
|
+
graph: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
268
|
+
grid_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
269
|
+
grid: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
270
|
+
group_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
271
|
+
group: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
272
|
+
handle: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
273
|
+
hashtag: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
274
|
+
headset_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
275
|
+
headset: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
276
|
+
heart_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
277
|
+
heart: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
278
|
+
history: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
279
|
+
hospital_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
280
|
+
hospital: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
281
|
+
house_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
282
|
+
house: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
283
|
+
houseAdd_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
284
|
+
houseAdd: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
285
|
+
houseChange_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
286
|
+
houseChange: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
287
|
+
houseHand_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
288
|
+
houseHand: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
289
|
+
houseMoney_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
290
|
+
houseMoney: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
291
|
+
houses_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
292
|
+
houses: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
293
|
+
illuminance: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
294
|
+
image_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
295
|
+
image: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
296
|
+
imageAdd_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
297
|
+
imageAdd: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
298
|
+
increase: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
299
|
+
internet: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
300
|
+
key_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
301
|
+
key: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
302
|
+
keyboard_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
303
|
+
keyboard: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
304
|
+
koreaAnalyze: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
305
|
+
lab_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
306
|
+
lab: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
307
|
+
leaf_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
308
|
+
leaf: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
309
|
+
line: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
310
|
+
lineStack: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
311
|
+
location_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
312
|
+
location: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
313
|
+
locationOff_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
314
|
+
locationOff: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
315
|
+
lock_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
316
|
+
lock: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
317
|
+
login: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
318
|
+
logout: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
319
|
+
mail_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
320
|
+
mail: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
321
|
+
map_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
322
|
+
map: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
323
|
+
marker_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
324
|
+
marker: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
325
|
+
markerAdd_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
326
|
+
markerAdd: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
327
|
+
markerCheck_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
328
|
+
markerCheck: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
329
|
+
markerRemove_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
330
|
+
markerRemove: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
331
|
+
markerWarn_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
332
|
+
markerWarn: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
333
|
+
market_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
334
|
+
market: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
335
|
+
measure_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
336
|
+
measure: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
337
|
+
menu: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
338
|
+
message_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
339
|
+
message: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
340
|
+
messageDot_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
341
|
+
messageDot: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
342
|
+
messageEmpty_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
343
|
+
messageEmpty: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
344
|
+
moon_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
345
|
+
moon: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
346
|
+
moreHorizotal: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
347
|
+
moreVertical: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
348
|
+
music: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
349
|
+
navigation_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
350
|
+
navigation: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
351
|
+
network_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
352
|
+
network: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
353
|
+
networkFind_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
354
|
+
networkFind: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
355
|
+
networkOff_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
356
|
+
networkOff: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
357
|
+
news_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
358
|
+
news: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
359
|
+
notes_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
360
|
+
notes: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
361
|
+
notification_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
362
|
+
notification: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
363
|
+
notificationBadge_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
364
|
+
notificationBadge: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
365
|
+
notificationOff_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
366
|
+
notificationOff: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
367
|
+
notificationRing_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
368
|
+
notificationRing: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
369
|
+
open: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
370
|
+
openLink: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
371
|
+
panorama_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
372
|
+
panorama: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
373
|
+
parking: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
374
|
+
pause_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
375
|
+
pause: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
376
|
+
people_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
377
|
+
people: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
378
|
+
pet_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
379
|
+
pet: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
380
|
+
phone_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
381
|
+
phone: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
382
|
+
phoneCheck_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
383
|
+
phoneCheck: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
384
|
+
phoneWarn_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
385
|
+
phoneWarn: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
386
|
+
pill_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
387
|
+
pill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
388
|
+
pinchOut_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
389
|
+
pinchOut: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
390
|
+
place_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
391
|
+
place: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
392
|
+
placeholder: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
393
|
+
play_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
394
|
+
play: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
395
|
+
point_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
396
|
+
point: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
397
|
+
profile_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
398
|
+
profile: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
399
|
+
protect_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
400
|
+
protect: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
401
|
+
puzzle_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
402
|
+
puzzle: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
403
|
+
qr: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
404
|
+
questionMark: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
405
|
+
raining_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
406
|
+
raining: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
407
|
+
ratateLeft: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
408
|
+
receipt_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
409
|
+
receipt: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
410
|
+
record_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
411
|
+
record: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
412
|
+
redo: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
413
|
+
reduction: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
414
|
+
refresh: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
415
|
+
remove: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
416
|
+
repair_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
417
|
+
repair: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
418
|
+
reply: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
419
|
+
restraunt: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
420
|
+
rocket_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
421
|
+
rocket: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
422
|
+
rotateRight: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
423
|
+
saving_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
424
|
+
saving: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
425
|
+
school_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
426
|
+
school: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
427
|
+
search: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
428
|
+
send_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
429
|
+
send: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
430
|
+
server_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
431
|
+
server: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
432
|
+
settings_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
433
|
+
settings: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
434
|
+
share: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
435
|
+
sharelink: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
436
|
+
shield_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
437
|
+
shield: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
438
|
+
shieldCheck_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
439
|
+
shieldCheck: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
440
|
+
shieldLock_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
441
|
+
shieldLock: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
442
|
+
ship_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
443
|
+
switchIcon: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
444
|
+
ship: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
445
|
+
snow: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
446
|
+
snowing_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
447
|
+
snowing: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
448
|
+
sofa_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
449
|
+
sofa: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
450
|
+
spanner_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
451
|
+
spanner: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
452
|
+
speed_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
453
|
+
speed: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
454
|
+
starFull: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
455
|
+
starHalf: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
456
|
+
stop_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
457
|
+
stop: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
458
|
+
stream_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
459
|
+
stream: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
460
|
+
streaming_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
461
|
+
streaming: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
462
|
+
subway_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
463
|
+
subway: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
464
|
+
subwayStation: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
465
|
+
sun_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
466
|
+
sun: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
467
|
+
support_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
468
|
+
support: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
469
|
+
tag_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
470
|
+
tag: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
471
|
+
taxi_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
472
|
+
taxi: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
473
|
+
temperature: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
474
|
+
thumbDown_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
475
|
+
thumbDown: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
476
|
+
thumbUp_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
477
|
+
thumbUp: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
478
|
+
thunder_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
479
|
+
thunder: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
480
|
+
ticket_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
481
|
+
ticket: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
482
|
+
timer_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
483
|
+
timer: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
484
|
+
touch_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
485
|
+
touch: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
486
|
+
translate: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
487
|
+
transportation_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
488
|
+
transportation: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
489
|
+
trashcan_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
490
|
+
trashcan: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
491
|
+
tree_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
492
|
+
tree: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
493
|
+
trend_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
494
|
+
trend: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
495
|
+
trophy_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
496
|
+
trophy: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
497
|
+
truck_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
498
|
+
truck: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
499
|
+
undo: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
500
|
+
unlimit: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
501
|
+
unlock_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
502
|
+
unlock: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
503
|
+
user_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
504
|
+
user: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
505
|
+
userFind_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
506
|
+
userFind: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
507
|
+
userInvite_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
508
|
+
userInvite: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
509
|
+
userProtect_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
510
|
+
userProtect: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
511
|
+
userSetting_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
512
|
+
userSetting: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
513
|
+
userVerified_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
514
|
+
userVerified: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
515
|
+
verified_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
516
|
+
verified: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
517
|
+
video_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
518
|
+
video: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
519
|
+
visibilityOff: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
520
|
+
visibility: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
521
|
+
voice_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
522
|
+
voice: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
523
|
+
voiceOff_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
524
|
+
voiceOff: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
525
|
+
voiceRecord: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
526
|
+
volumeHigh_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
527
|
+
volumeHigh: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
528
|
+
volumeLow_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
529
|
+
volumeLow: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
530
|
+
volumeMute_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
531
|
+
volumeMute: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
532
|
+
vote_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
533
|
+
vote: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
534
|
+
walk: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
535
|
+
wallet_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
536
|
+
wallet: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
537
|
+
warning_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
538
|
+
warning: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
539
|
+
water_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
540
|
+
water: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
541
|
+
wifi: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
542
|
+
wind: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
543
|
+
write_fill: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
544
|
+
write: React.VFC<React.SVGProps<SVGSVGElement>>;
|
|
545
|
+
};
|
|
546
|
+
export interface IconProps extends React.SVGProps<SVGSVGElement> {
|
|
547
|
+
name: keyof typeof ICONS;
|
|
548
|
+
fill?: ColorPath | 'transparent';
|
|
549
|
+
stroke?: ColorPath | 'transparent';
|
|
550
|
+
size?: number;
|
|
551
|
+
}
|
|
552
|
+
export declare function Icon({ name, fill, stroke, size, ...props }: IconProps): React.FunctionComponentElement<React.SVGProps<SVGSVGElement>>;
|
|
553
|
+
export {};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export * from './alert';
|
|
2
|
+
export * from './badge';
|
|
3
|
+
export * from './breadcrumb';
|
|
4
|
+
export * from './button';
|
|
5
|
+
export * from './calendar';
|
|
6
|
+
export * from './card';
|
|
7
|
+
export * from './cell-picker';
|
|
8
|
+
export * from './checkbox';
|
|
9
|
+
export * from './chip';
|
|
10
|
+
export * from './combo-box';
|
|
11
|
+
export * from './description';
|
|
12
|
+
export * from './divider';
|
|
13
|
+
export * from './empty';
|
|
14
|
+
export * from './header';
|
|
15
|
+
export * from './icon';
|
|
16
|
+
export * from './input';
|
|
17
|
+
export * from './list';
|
|
18
|
+
export * from './list-group';
|
|
19
|
+
export * from './motion-pressable';
|
|
20
|
+
export * from './motion-pressable-div';
|
|
21
|
+
export * from './navigation-bar';
|
|
22
|
+
export * from './page-indicator';
|
|
23
|
+
export * from './pagination';
|
|
24
|
+
export * from './paragraph';
|
|
25
|
+
export * from './popover';
|
|
26
|
+
export * from './progress-bar';
|
|
27
|
+
export * from './radio';
|
|
28
|
+
export * from './search-bar';
|
|
29
|
+
export * from './search-box';
|
|
30
|
+
export * from './segmented-control';
|
|
31
|
+
export * from './slider';
|
|
32
|
+
export * from './snackbar';
|
|
33
|
+
export * from './switch';
|
|
34
|
+
export * from './tab-bar';
|
|
35
|
+
export * from './table';
|
|
36
|
+
export * from './tabs';
|
|
37
|
+
export * from './text';
|
|
38
|
+
export * from './timeline';
|
|
39
|
+
export * from './tooltip';
|
|
40
|
+
export * from './upload';
|
|
41
|
+
export * from './button/text';
|
|
42
|
+
export * from './table/column';
|
|
43
|
+
export * from './combo-box/text';
|
|
44
|
+
export * from './table/head-row';
|
|
45
|
+
export * from './table/head-column';
|
|
46
|
+
export * from './table/item';
|
|
47
|
+
export * from './loading';
|
|
48
|
+
export * from './color-picker';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconProps } from '../icon';
|
|
3
|
+
import { ComponentProps } from 'react';
|
|
4
|
+
type InputSize = 'small' | 'medium' | 'large';
|
|
5
|
+
type InputProps = {
|
|
6
|
+
size: InputSize;
|
|
7
|
+
placeholder: string;
|
|
8
|
+
value: string;
|
|
9
|
+
onChange: (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
|
|
10
|
+
leadingArea?: React.ReactNode;
|
|
11
|
+
trailingArea?: React.ReactNode[];
|
|
12
|
+
icon?: IconProps['name'];
|
|
13
|
+
align?: 'left' | 'center';
|
|
14
|
+
as?: 'input' | 'textarea';
|
|
15
|
+
rows?: number;
|
|
16
|
+
maxLength?: number;
|
|
17
|
+
minLength?: number;
|
|
18
|
+
} & Omit<ComponentProps<'input'>, 'size' | 'placeholder' | 'value' | 'onChange' | 'minLength'>;
|
|
19
|
+
export declare const Input: React.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IconProps } from '../icon';
|
|
2
|
+
type CompactType = 'icon' | 'radio' | 'check' | 'text';
|
|
3
|
+
type CompactProps = {
|
|
4
|
+
type: CompactType;
|
|
5
|
+
activated?: boolean;
|
|
6
|
+
label: string;
|
|
7
|
+
iconName?: IconProps['name'];
|
|
8
|
+
onChange: (value: boolean) => void;
|
|
9
|
+
};
|
|
10
|
+
export declare function Compact({ type, activated, label, iconName, onChange, }: CompactProps): JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
type Type = 'default' | 'value';
|
|
3
|
+
type Align = 'Top' | 'Center';
|
|
4
|
+
type BaseProps = {
|
|
5
|
+
align: Align;
|
|
6
|
+
leadingNumber?: string;
|
|
7
|
+
headline: string;
|
|
8
|
+
description?: string;
|
|
9
|
+
leadingArea?: React.ReactNode;
|
|
10
|
+
type: Type;
|
|
11
|
+
};
|
|
12
|
+
type DefaultTypeProps = BaseProps & {
|
|
13
|
+
subHeadline?: string;
|
|
14
|
+
trailingArea?: React.ReactNode;
|
|
15
|
+
};
|
|
16
|
+
type ValueTypeProps = BaseProps & {
|
|
17
|
+
value?: string;
|
|
18
|
+
subValue?: string;
|
|
19
|
+
};
|
|
20
|
+
type ListProps = DefaultTypeProps & ValueTypeProps;
|
|
21
|
+
export declare function Default({ align, leadingNumber, headline, description, leadingArea, subHeadline, value, subValue, type, trailingArea, }: ListProps): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
22
|
+
export {};
|