@tangible/ui 0.0.1
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 +100 -0
- package/components/Accordion/Accordion.d.ts +22 -0
- package/components/Accordion/Accordion.js +192 -0
- package/components/Accordion/AccordionContext.d.ts +5 -0
- package/components/Accordion/AccordionContext.js +23 -0
- package/components/Accordion/index.d.ts +2 -0
- package/components/Accordion/index.js +1 -0
- package/components/Accordion/types.d.ts +61 -0
- package/components/Accordion/types.js +1 -0
- package/components/Avatar/Avatar.d.ts +11 -0
- package/components/Avatar/Avatar.js +67 -0
- package/components/Avatar/AvatarGroup.d.ts +11 -0
- package/components/Avatar/AvatarGroup.js +45 -0
- package/components/Avatar/index.d.ts +9 -0
- package/components/Avatar/index.js +7 -0
- package/components/Avatar/types.d.ts +44 -0
- package/components/Avatar/types.js +12 -0
- package/components/Button/Button.d.ts +4 -0
- package/components/Button/Button.js +33 -0
- package/components/Button/index.d.ts +2 -0
- package/components/Button/index.js +1 -0
- package/components/Button/types.d.ts +127 -0
- package/components/Button/types.js +1 -0
- package/components/Card/Card.d.ts +29 -0
- package/components/Card/Card.js +47 -0
- package/components/Card/index.d.ts +2 -0
- package/components/Card/index.js +1 -0
- package/components/Chip/Chip.d.ts +24 -0
- package/components/Chip/Chip.js +37 -0
- package/components/Chip/index.d.ts +2 -0
- package/components/Chip/index.js +1 -0
- package/components/Chips/Chips.d.ts +31 -0
- package/components/Chips/Chips.js +21 -0
- package/components/Chips/index.d.ts +2 -0
- package/components/Chips/index.js +1 -0
- package/components/ContentIndicator/ContentIndicator.d.ts +2 -0
- package/components/ContentIndicator/ContentIndicator.js +21 -0
- package/components/ContentIndicator/index.d.ts +2 -0
- package/components/ContentIndicator/index.js +1 -0
- package/components/ContentIndicator/types.d.ts +57 -0
- package/components/ContentIndicator/types.js +1 -0
- package/components/Dropdown/Dropdown.d.ts +31 -0
- package/components/Dropdown/Dropdown.js +219 -0
- package/components/Dropdown/DropdownContext.d.ts +3 -0
- package/components/Dropdown/DropdownContext.js +9 -0
- package/components/Dropdown/index.d.ts +2 -0
- package/components/Dropdown/index.js +1 -0
- package/components/Dropdown/types.d.ts +102 -0
- package/components/Dropdown/types.js +8 -0
- package/components/Icon/Icon.d.ts +22 -0
- package/components/Icon/Icon.js +24 -0
- package/components/Icon/index.d.ts +2 -0
- package/components/Icon/index.js +1 -0
- package/components/IconButton/IconButton.d.ts +2 -0
- package/components/IconButton/IconButton.js +50 -0
- package/components/IconButton/index.d.ts +2 -0
- package/components/IconButton/index.js +1 -0
- package/components/IconButton/types.d.ts +79 -0
- package/components/IconButton/types.js +1 -0
- package/components/Modal/Modal.d.ts +52 -0
- package/components/Modal/Modal.js +133 -0
- package/components/Modal/context.d.ts +6 -0
- package/components/Modal/context.js +9 -0
- package/components/Modal/index.d.ts +2 -0
- package/components/Modal/index.js +1 -0
- package/components/Notice/Notice.d.ts +93 -0
- package/components/Notice/Notice.js +144 -0
- package/components/Notice/index.d.ts +2 -0
- package/components/Notice/index.js +1 -0
- package/components/OverlapStack/OverlapStack.d.ts +44 -0
- package/components/OverlapStack/OverlapStack.js +41 -0
- package/components/OverlapStack/index.d.ts +2 -0
- package/components/OverlapStack/index.js +1 -0
- package/components/Pager/Pager.d.ts +26 -0
- package/components/Pager/Pager.js +151 -0
- package/components/Pager/index.d.ts +2 -0
- package/components/Pager/index.js +1 -0
- package/components/Progress/Progress.d.ts +2 -0
- package/components/Progress/Progress.js +100 -0
- package/components/Progress/index.d.ts +4 -0
- package/components/Progress/index.js +2 -0
- package/components/Progress/types.d.ts +251 -0
- package/components/Progress/types.js +1 -0
- package/components/Progress/useProgressSegments.d.ts +40 -0
- package/components/Progress/useProgressSegments.js +42 -0
- package/components/Rating/Rating.d.ts +32 -0
- package/components/Rating/Rating.js +74 -0
- package/components/Rating/index.d.ts +2 -0
- package/components/Rating/index.js +1 -0
- package/components/SegmentedControl/SegmentedControl.d.ts +10 -0
- package/components/SegmentedControl/SegmentedControl.js +183 -0
- package/components/SegmentedControl/SegmentedControlContext.d.ts +3 -0
- package/components/SegmentedControl/SegmentedControlContext.js +9 -0
- package/components/SegmentedControl/index.d.ts +2 -0
- package/components/SegmentedControl/index.js +1 -0
- package/components/SegmentedControl/types.d.ts +63 -0
- package/components/SegmentedControl/types.js +1 -0
- package/components/Sidebar/Sidebar.d.ts +17 -0
- package/components/Sidebar/Sidebar.js +107 -0
- package/components/Sidebar/index.d.ts +2 -0
- package/components/Sidebar/index.js +1 -0
- package/components/Sidebar/types.d.ts +65 -0
- package/components/Sidebar/types.js +4 -0
- package/components/StepIndicator/StepIndicator.d.ts +2 -0
- package/components/StepIndicator/StepIndicator.js +64 -0
- package/components/StepIndicator/index.d.ts +2 -0
- package/components/StepIndicator/index.js +1 -0
- package/components/StepIndicator/types.d.ts +68 -0
- package/components/StepIndicator/types.js +1 -0
- package/components/StepList/StepList.d.ts +12 -0
- package/components/StepList/StepList.js +59 -0
- package/components/StepList/StepListContext.d.ts +3 -0
- package/components/StepList/StepListContext.js +9 -0
- package/components/StepList/index.d.ts +2 -0
- package/components/StepList/index.js +1 -0
- package/components/StepList/types.d.ts +91 -0
- package/components/StepList/types.js +4 -0
- package/components/Table/BulkActionsBar.d.ts +12 -0
- package/components/Table/BulkActionsBar.js +9 -0
- package/components/Table/DataTable.d.ts +35 -0
- package/components/Table/DataTable.js +184 -0
- package/components/Table/Pagination.d.ts +13 -0
- package/components/Table/Pagination.js +13 -0
- package/components/Table/index.d.ts +2 -0
- package/components/Table/index.js +1 -0
- package/components/Tabs/Tabs.d.ts +23 -0
- package/components/Tabs/Tabs.js +309 -0
- package/components/Tabs/TabsContext.d.ts +3 -0
- package/components/Tabs/TabsContext.js +12 -0
- package/components/Tabs/index.d.ts +2 -0
- package/components/Tabs/index.js +1 -0
- package/components/Tabs/types.d.ts +75 -0
- package/components/Tabs/types.js +1 -0
- package/components/Toolbar/Toolbar.d.ts +18 -0
- package/components/Toolbar/Toolbar.js +241 -0
- package/components/Toolbar/index.d.ts +2 -0
- package/components/Toolbar/index.js +1 -0
- package/components/Toolbar/types.d.ts +28 -0
- package/components/Toolbar/types.js +1 -0
- package/components/Tooltip/Tooltip.d.ts +15 -0
- package/components/Tooltip/Tooltip.js +166 -0
- package/components/Tooltip/TooltipContext.d.ts +15 -0
- package/components/Tooltip/TooltipContext.js +25 -0
- package/components/Tooltip/index.d.ts +2 -0
- package/components/Tooltip/index.js +1 -0
- package/components/Tooltip/types.d.ts +85 -0
- package/components/Tooltip/types.js +8 -0
- package/components/index.d.ts +52 -0
- package/components/index.js +26 -0
- package/constants.d.ts +16 -0
- package/constants.js +16 -0
- package/icons/cred/index.d.ts +31 -0
- package/icons/cred/index.js +136 -0
- package/icons/icons.svg +155 -0
- package/icons/lms/index.d.ts +21 -0
- package/icons/lms/index.js +81 -0
- package/icons/manifest.json +1226 -0
- package/icons/player/index.d.ts +55 -0
- package/icons/player/index.js +268 -0
- package/icons/reaction/index.d.ts +79 -0
- package/icons/reaction/index.js +400 -0
- package/icons/registry.d.ts +316 -0
- package/icons/registry.js +163 -0
- package/icons/system/index.d.ts +155 -0
- package/icons/system/index.js +818 -0
- package/package.json +121 -0
- package/styles/all.css +1 -0
- package/styles/all.expanded.css +4137 -0
- package/styles/all.expanded.unlayered.css +4137 -0
- package/styles/all.unlayered.css +1 -0
- package/styles/components/_bundle.scss +51 -0
- package/styles/components/index.scss +1 -0
- package/styles/components/input/index.scss +248 -0
- package/styles/index.scss +71 -0
- package/styles/system/_constants.scss +12 -0
- package/styles/system/_motion.scss +47 -0
- package/styles/system/_palette-fns.scss +10 -0
- package/styles/system/_palettes.scss +80 -0
- package/styles/system/_tokens.scss +249 -0
- package/styles/system/index.scss +4 -0
- package/styles/utilities/_index.scss +373 -0
- package/tui-manifest.json +1858 -0
- package/types/index.d.ts +2 -0
- package/types/index.js +1 -0
- package/types/index.ts +2 -0
- package/types/sizes.d.ts +17 -0
- package/types/sizes.js +10 -0
- package/types/sizes.ts +21 -0
- package/types/svg.d.ts +5 -0
- package/types/themes.d.ts +14 -0
- package/types/themes.js +9 -0
- package/types/themes.ts +17 -0
- package/utils/color/contrast.d.ts +33 -0
- package/utils/color/contrast.js +88 -0
- package/utils/color-scheme.d.ts +25 -0
- package/utils/color-scheme.js +55 -0
- package/utils/compose-refs.d.ts +17 -0
- package/utils/compose-refs.js +38 -0
- package/utils/cx.d.ts +12 -0
- package/utils/cx.js +14 -0
- package/utils/focus-trap.d.ts +40 -0
- package/utils/focus-trap.js +93 -0
- package/utils/index.d.ts +10 -0
- package/utils/index.js +16 -0
- package/utils/math.d.ts +4 -0
- package/utils/math.js +19 -0
- package/utils/merge-props.d.ts +25 -0
- package/utils/merge-props.js +60 -0
- package/utils/polymorphic.d.ts +28 -0
- package/utils/polymorphic.js +44 -0
- package/utils/portal.d.ts +11 -0
- package/utils/portal.js +105 -0
|
@@ -0,0 +1,818 @@
|
|
|
1
|
+
import { createElement as _c } from "react";
|
|
2
|
+
|
|
3
|
+
export function AlertCircleFill(props) {
|
|
4
|
+
return _c("svg", Object.assign({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
viewBox: "0 0 24 24",
|
|
7
|
+
width: "1em",
|
|
8
|
+
height: "1em",
|
|
9
|
+
fill: "currentColor"
|
|
10
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M12 20a8 8 0 1 0 0-16 8 8 0 0 0 0 16m-1-7V7h2v6zm0 2v2h2v-2z",clipRule:"evenodd"}));
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export function AlertCircleOutline(props) {
|
|
14
|
+
return _c("svg", Object.assign({
|
|
15
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
+
viewBox: "0 0 24 24",
|
|
17
|
+
width: "1em",
|
|
18
|
+
height: "1em",
|
|
19
|
+
fill: "currentColor"
|
|
20
|
+
}, props), [_c("path", {fillRule:"evenodd",d:"M12 4.75a7.25 7.25 0 1 0 0 14.5 7.25 7.25 0 0 0 0-14.5M3.25 12a8.75 8.75 0 1 1 17.5 0 8.75 8.75 0 0 1-17.5 0",clipRule:"evenodd"}), _c("path", {d:"M13 7h-2v6h2zm0 8h-2v2h2z"})]);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export function ArrowClockwise(props) {
|
|
24
|
+
return _c("svg", Object.assign({
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
viewBox: "0 0 24 24",
|
|
27
|
+
width: "1em",
|
|
28
|
+
height: "1em",
|
|
29
|
+
fill: "currentColor"
|
|
30
|
+
}, props), _c("path", {d:"m19.306 9.495-5.27.258-.073-1.498 2.93-.144a6.25 6.25 0 1 0 1.144 5.507l1.449.388a7.75 7.75 0 1 1-1.69-7.15l-.01-2.853 1.5-.005z"}));
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export function ArrowCounterclockwise(props) {
|
|
34
|
+
return _c("svg", Object.assign({
|
|
35
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
36
|
+
viewBox: "0 0 24 24",
|
|
37
|
+
width: "1em",
|
|
38
|
+
height: "1em",
|
|
39
|
+
fill: "currentColor"
|
|
40
|
+
}, props), _c("path", {d:"m4.43 9.495 5.27.258.073-1.498-2.93-.144a6.25 6.25 0 1 1-1.144 5.507l-1.45.388a7.75 7.75 0 1 0 1.69-7.15l.01-2.853-1.5-.005z"}));
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export function ArrowDown(props) {
|
|
44
|
+
return _c("svg", Object.assign({
|
|
45
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
46
|
+
viewBox: "0 0 24 24",
|
|
47
|
+
width: "1em",
|
|
48
|
+
height: "1em",
|
|
49
|
+
fill: "currentColor"
|
|
50
|
+
}, props), _c("path", {fillRule:"evenodd",d:"m6.47 14.53 1.06-1.06 3.72 3.72V4h1.5v13.19l3.72-3.72 1.06 1.06L12 20.06z",clipRule:"evenodd"}));
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export function ArrowLeft(props) {
|
|
54
|
+
return _c("svg", Object.assign({
|
|
55
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
56
|
+
viewBox: "0 0 24 24",
|
|
57
|
+
width: "1em",
|
|
58
|
+
height: "1em",
|
|
59
|
+
fill: "currentColor"
|
|
60
|
+
}, props), _c("path", {fillRule:"evenodd",d:"m9.47 6.47 1.06 1.06-3.72 3.72H20v1.5H6.81l3.72 3.72-1.06 1.06L3.94 12z",clipRule:"evenodd"}));
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export function ArrowRight(props) {
|
|
64
|
+
return _c("svg", Object.assign({
|
|
65
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
66
|
+
viewBox: "0 0 24 24",
|
|
67
|
+
width: "1em",
|
|
68
|
+
height: "1em",
|
|
69
|
+
fill: "currentColor"
|
|
70
|
+
}, props), _c("path", {fillRule:"evenodd",d:"m14.53 17.53-1.06-1.06 3.72-3.72H4v-1.5h13.19l-3.72-3.72 1.06-1.06L20.06 12z",clipRule:"evenodd"}));
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export function ArrowUp(props) {
|
|
74
|
+
return _c("svg", Object.assign({
|
|
75
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
76
|
+
viewBox: "0 0 24 24",
|
|
77
|
+
width: "1em",
|
|
78
|
+
height: "1em",
|
|
79
|
+
fill: "currentColor"
|
|
80
|
+
}, props), _c("path", {fillRule:"evenodd",d:"m17.53 9.47-1.06 1.06-3.72-3.72V20h-1.5V6.81l-3.72 3.72-1.06-1.06L12 3.94z",clipRule:"evenodd"}));
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export function Attachment(props) {
|
|
84
|
+
return _c("svg", Object.assign({
|
|
85
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
86
|
+
viewBox: "0 0 24 24",
|
|
87
|
+
width: "1em",
|
|
88
|
+
height: "1em",
|
|
89
|
+
fill: "currentColor"
|
|
90
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M10.5 3.75A2.25 2.25 0 0 0 8.25 6v10.5a3.75 3.75 0 1 0 7.5 0V7h1.5v9.5a5.25 5.25 0 1 1-10.5 0V6a3.75 3.75 0 1 1 7.5 0v10a2.25 2.25 0 0 1-4.5 0V7h1.5v9a.75.75 0 0 0 1.5 0V6a2.25 2.25 0 0 0-2.25-2.25",clipRule:"evenodd"}));
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export function BellUnread(props) {
|
|
94
|
+
return _c("svg", Object.assign({
|
|
95
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
96
|
+
viewBox: "0 0 24 24",
|
|
97
|
+
width: "1em",
|
|
98
|
+
height: "1em",
|
|
99
|
+
fill: "currentColor"
|
|
100
|
+
}, props), [_c("path", {d:"M13.969 4.39A5.1 5.1 0 0 0 12 4C9.2 4 7 6.2 7 9v2.5c0 1.353-.17 2.367-.976 3A3 3 0 0 1 5 15v1h14v-1c-.422-.124-.758-.291-1.024-.5-.806-.633-.976-1.647-.976-3V11a4 4 0 0 1-1.5-.29v.79c0 .93.066 1.98.515 2.897l.053.103H7.932l.053-.103c.449-.917.515-1.967.515-2.897V9c0-1.972 1.528-3.5 3.5-3.5.43 0 .838.072 1.214.206.167-.488.425-.933.755-1.316m-3.961 13.618q.001-.265.065-.508h3.854A1.996 1.996 0 0 1 12 20a1.99 1.99 0 0 1-1.992-1.992"}), _c("path", {d:"M19.5 7a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0"})]);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export function Bell(props) {
|
|
104
|
+
return _c("svg", Object.assign({
|
|
105
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
106
|
+
viewBox: "0 0 24 24",
|
|
107
|
+
width: "1em",
|
|
108
|
+
height: "1em",
|
|
109
|
+
fill: "currentColor"
|
|
110
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M17 11.5c0 1.353.17 2.367.976 3 .267.209.602.376 1.024.5v1H5v-1a3 3 0 0 0 1.024-.5c.806-.633.976-1.647.976-3V9c0-2.8 2.2-5 5-5s5 2.2 5 5zM15.5 9v2.5c0 .93.066 1.98.515 2.897l.053.103H7.932l.053-.103c.449-.917.515-1.967.515-2.897V9c0-1.972 1.528-3.5 3.5-3.5s3.5 1.528 3.5 3.5m-5.492 9.008q.001-.265.065-.508h3.854A1.996 1.996 0 0 1 12 20c-1.1 0-1.992-.892-1.992-1.992",clipRule:"evenodd"}));
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export function CheckSmall(props) {
|
|
114
|
+
return _c("svg", Object.assign({
|
|
115
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
116
|
+
viewBox: "0 0 24 24",
|
|
117
|
+
width: "1em",
|
|
118
|
+
height: "1em",
|
|
119
|
+
fill: "currentColor"
|
|
120
|
+
}, props), _c("path", {fillRule:"evenodd",d:"m17.93 7.978-7.2 9.681-4.515-3.358.895-1.204 3.312 2.463 6.303-8.477z",clipRule:"evenodd"}));
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
export function Check(props) {
|
|
124
|
+
return _c("svg", Object.assign({
|
|
125
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
126
|
+
viewBox: "0 0 24 24",
|
|
127
|
+
width: "1em",
|
|
128
|
+
height: "1em",
|
|
129
|
+
fill: "currentColor"
|
|
130
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M10.687 16.567 18.14 3.99l1.72 1.02-8.547 14.423-7.382-5.111 1.138-1.644z",clipRule:"evenodd"}));
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
export function Checklist(props) {
|
|
134
|
+
return _c("svg", Object.assign({
|
|
135
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
136
|
+
viewBox: "0 0 24 24",
|
|
137
|
+
width: "1em",
|
|
138
|
+
height: "1em",
|
|
139
|
+
fill: "currentColor"
|
|
140
|
+
}, props), [_c("path", {fillRule:"evenodd",d:"M20 7.75h-8.89v-1.5H20zm0 5h-8.89v-1.5H20zM6 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2m0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4m0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2m0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4",clipRule:"evenodd"}), _c("path", {fillRule:"evenodd",d:"M6 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2m0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4",clipRule:"evenodd"}), _c("path", {d:"M20 17.75h-8.89v-1.5H20z"}), _c("path", {fillRule:"evenodd",d:"M8.85 4.821 5.872 8.83 3.554 7.1l.896-1.202 1.115.831 2.083-2.802z",clipRule:"evenodd"})]);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
export function ChevronDownSmall(props) {
|
|
144
|
+
return _c("svg", Object.assign({
|
|
145
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
146
|
+
viewBox: "0 0 24 24",
|
|
147
|
+
width: "1em",
|
|
148
|
+
height: "1em",
|
|
149
|
+
fill: "currentColor"
|
|
150
|
+
}, props), _c("path", {fillRule:"evenodd",d:"m15.99 10.889-3.988 3.418-3.988-3.418.976-1.139 3.012 2.582 3.012-2.582z",clipRule:"evenodd"}));
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export function ChevronDown(props) {
|
|
154
|
+
return _c("svg", Object.assign({
|
|
155
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
156
|
+
viewBox: "0 0 24 24",
|
|
157
|
+
width: "1em",
|
|
158
|
+
height: "1em",
|
|
159
|
+
fill: "currentColor"
|
|
160
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M18.005 10.555 12 16.013l-6.004-5.458 1.009-1.11L12 13.986l4.996-4.541z",clipRule:"evenodd"}));
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
export function ChevronLeftSmall(props) {
|
|
164
|
+
return _c("svg", Object.assign({
|
|
165
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
166
|
+
viewBox: "0 0 24 24",
|
|
167
|
+
width: "1em",
|
|
168
|
+
height: "1em",
|
|
169
|
+
fill: "currentColor"
|
|
170
|
+
}, props), _c("path", {fillRule:"evenodd",d:"m13.142 16.017-3.419-3.988 3.419-3.988 1.138.976-2.581 3.012 2.581 3.012z",clipRule:"evenodd"}));
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export function ChevronLeft(props) {
|
|
174
|
+
return _c("svg", Object.assign({
|
|
175
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
176
|
+
viewBox: "0 0 24 24",
|
|
177
|
+
width: "1em",
|
|
178
|
+
height: "1em",
|
|
179
|
+
fill: "currentColor"
|
|
180
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M13.445 18.005 7.986 12l5.459-6.004 1.11 1.009L10.014 12l4.54 4.996z",clipRule:"evenodd"}));
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
export function ChevronRightSmall(props) {
|
|
184
|
+
return _c("svg", Object.assign({
|
|
185
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
186
|
+
viewBox: "0 0 24 24",
|
|
187
|
+
width: "1em",
|
|
188
|
+
height: "1em",
|
|
189
|
+
fill: "currentColor"
|
|
190
|
+
}, props), _c("path", {fillRule:"evenodd",d:"m10.862 8.04 3.418 3.989-3.418 3.988-1.139-.976 2.582-3.012-2.582-3.012z",clipRule:"evenodd"}));
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
export function ChevronRight(props) {
|
|
194
|
+
return _c("svg", Object.assign({
|
|
195
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
196
|
+
viewBox: "0 0 24 24",
|
|
197
|
+
width: "1em",
|
|
198
|
+
height: "1em",
|
|
199
|
+
fill: "currentColor"
|
|
200
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M10.555 5.996 16.013 12l-5.458 6.005-1.11-1.01L13.986 12 9.445 7.005z",clipRule:"evenodd"}));
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
export function ChevronUpSmall(props) {
|
|
204
|
+
return _c("svg", Object.assign({
|
|
205
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
206
|
+
viewBox: "0 0 24 24",
|
|
207
|
+
width: "1em",
|
|
208
|
+
height: "1em",
|
|
209
|
+
fill: "currentColor"
|
|
210
|
+
}, props), _c("path", {fillRule:"evenodd",d:"m8.014 13.168 3.988-3.418 3.988 3.418-.976 1.14-3.012-2.582-3.012 2.581z",clipRule:"evenodd"}));
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
export function ChevronUp(props) {
|
|
214
|
+
return _c("svg", Object.assign({
|
|
215
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
216
|
+
viewBox: "0 0 24 24",
|
|
217
|
+
width: "1em",
|
|
218
|
+
height: "1em",
|
|
219
|
+
fill: "currentColor"
|
|
220
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M5.996 13.445 12 7.986l6.005 5.459-1.01 1.11L12 10.014l-4.995 4.54z",clipRule:"evenodd"}));
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
export function CircleSmallFill(props) {
|
|
224
|
+
return _c("svg", Object.assign({
|
|
225
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
226
|
+
viewBox: "0 0 24 24",
|
|
227
|
+
width: "1em",
|
|
228
|
+
height: "1em",
|
|
229
|
+
fill: "currentColor"
|
|
230
|
+
}, props), _c("path", {d:"M12 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8"}));
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
export function CircleSmallOutline(props) {
|
|
234
|
+
return _c("svg", Object.assign({
|
|
235
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
236
|
+
viewBox: "0 0 24 24",
|
|
237
|
+
width: "1em",
|
|
238
|
+
height: "1em",
|
|
239
|
+
fill: "currentColor"
|
|
240
|
+
}, props), _c("path", {d:"M14.5 12a2.5 2.5 0 1 0-2.5 2.5V16a4 4 0 1 1 0-8 4 4 0 0 1 0 8v-1.5a2.5 2.5 0 0 0 2.5-2.5"}));
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
export function CloseCircleFill(props) {
|
|
244
|
+
return _c("svg", Object.assign({
|
|
245
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
246
|
+
viewBox: "0 0 24 24",
|
|
247
|
+
width: "1em",
|
|
248
|
+
height: "1em",
|
|
249
|
+
fill: "currentColor"
|
|
250
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M20 12a8 8 0 1 1-16 0 8 8 0 0 1 16 0m-4.995 4.066L12 13.06l-3.005 3.005-1.06-1.06L10.94 12 7.934 8.995l1.06-1.06L12 10.94l3.005-3.006 1.06 1.061L13.062 12l3.005 3.005z",clipRule:"evenodd"}));
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
export function CloseCircleOutline(props) {
|
|
254
|
+
return _c("svg", Object.assign({
|
|
255
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
256
|
+
viewBox: "0 0 24 24",
|
|
257
|
+
width: "1em",
|
|
258
|
+
height: "1em",
|
|
259
|
+
fill: "currentColor"
|
|
260
|
+
}, props), [_c("path", {fillRule:"evenodd",d:"M12 18.5a6.5 6.5 0 1 0 0-13 6.5 6.5 0 0 0 0 13m8-6.5a8 8 0 1 1-16 0 8 8 0 0 1 16 0",clipRule:"evenodd"}), _c("path", {d:"m12 13.06 3.005 3.006 1.06-1.06L13.062 12l3.005-3.005-1.06-1.06L12 10.94 8.995 7.934l-1.061 1.06L10.939 12l-3.005 3.005 1.06 1.061z"})]);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
export function CloseSmall(props) {
|
|
264
|
+
return _c("svg", Object.assign({
|
|
265
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
266
|
+
viewBox: "0 0 24 24",
|
|
267
|
+
width: "1em",
|
|
268
|
+
height: "1em",
|
|
269
|
+
fill: "currentColor"
|
|
270
|
+
}, props), _c("path", {d:"m12 13.06 3.712 3.713 1.061-1.06L13.061 12l3.712-3.712-1.06-1.06L12 10.938 8.288 7.227l-1.061 1.06L10.94 12l-3.712 3.712 1.06 1.061z"}));
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
export function Close(props) {
|
|
274
|
+
return _c("svg", Object.assign({
|
|
275
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
276
|
+
viewBox: "0 0 24 24",
|
|
277
|
+
width: "1em",
|
|
278
|
+
height: "1em",
|
|
279
|
+
fill: "currentColor"
|
|
280
|
+
}, props), _c("path", {fillRule:"evenodd",d:"m12 12.868-6.462 6.655-1.076-1.046 6.493-6.685-6.089-6.27 1.077-1.045L12 10.715l6.057-6.238 1.076 1.045-6.088 6.27 6.493 6.685-1.076 1.046z",clipRule:"evenodd"}));
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
export function Cog(props) {
|
|
284
|
+
return _c("svg", Object.assign({
|
|
285
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
286
|
+
viewBox: "0 0 24 24",
|
|
287
|
+
width: "1em",
|
|
288
|
+
height: "1em",
|
|
289
|
+
fill: "currentColor"
|
|
290
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M10.29 4.836A1 1 0 0 1 11.275 4h1.306a1 1 0 0 1 .986.836l.244 1.466c.788.26 1.503.679 2.108 1.218l1.393-.522a1 1 0 0 1 1.217.437l.653 1.13a1 1 0 0 1-.23 1.273l-1.148.944a6 6 0 0 1 0 2.435l1.148.946a1 1 0 0 1 .23 1.272l-.652 1.13a1 1 0 0 1-1.217.437l-1.394-.522c-.605.54-1.32.958-2.108 1.218l-.244 1.466a1 1 0 0 1-.986.836h-1.306a1 1 0 0 1-.987-.836l-.244-1.466a6 6 0 0 1-2.108-1.218l-1.394.522a1 1 0 0 1-1.217-.436l-.652-1.131a1 1 0 0 1 .23-1.272l1.148-.946a6 6 0 0 1 0-2.435l-1.147-.944a1 1 0 0 1-.23-1.272l.652-1.131a1 1 0 0 1 1.217-.437l1.393.522a6 6 0 0 1 2.108-1.218zM14.928 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0",clipRule:"evenodd"}));
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
export function Copy(props) {
|
|
294
|
+
return _c("svg", Object.assign({
|
|
295
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
296
|
+
viewBox: "0 0 24 24",
|
|
297
|
+
width: "1em",
|
|
298
|
+
height: "1em",
|
|
299
|
+
fill: "currentColor"
|
|
300
|
+
}, props), [_c("path", {d:"M17 10.25h-7v1.5h7zm-7 2.5h7v1.5h-7zm7 2.5h-7v1.5h7z"}), _c("path", {fillRule:"evenodd",d:"M17 6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h1v1a2 2 0 0 0 2 2h9a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-1zm1 2.5a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5H9a.5.5 0 0 1-.5-.5V9a.5.5 0 0 1 .5-.5zm-12 7a.5.5 0 0 1-.5-.5V6a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 .5.5v1H9a2 2 0 0 0-2 2v6.5z",clipRule:"evenodd"})]);
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
export function Download(props) {
|
|
304
|
+
return _c("svg", Object.assign({
|
|
305
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
306
|
+
viewBox: "0 0 24 24",
|
|
307
|
+
width: "1em",
|
|
308
|
+
height: "1em",
|
|
309
|
+
fill: "currentColor"
|
|
310
|
+
}, props), [_c("path", {d:"M5.5 9a.5.5 0 0 1 .5-.5h3V7H6a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8.75A1.75 1.75 0 0 0 18.25 7H15v1.5h3.25a.25.25 0 0 1 .25.25V18a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5z"}), _c("path", {d:"M12 17.004 7.002 12.56l.996-1.122 3.252 2.89V4h1.5v10.33l3.252-2.89.996 1.12z"})]);
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
export function Duplicate(props) {
|
|
314
|
+
return _c("svg", Object.assign({
|
|
315
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
316
|
+
viewBox: "0 0 24 24",
|
|
317
|
+
width: "1em",
|
|
318
|
+
height: "1em",
|
|
319
|
+
fill: "currentColor"
|
|
320
|
+
}, props), [_c("path", {d:"M14.25 12.75H17v1.5h-2.75V17h-1.5v-2.75H10v-1.5h2.75V10h1.5z"}), _c("path", {fillRule:"evenodd",d:"M17 7h1a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2v-1H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2zm-2-1.5H6a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h1V9a2 2 0 0 1 2-2h6.5V6a.5.5 0 0 0-.5-.5m-6 3h9a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5H9a.5.5 0 0 1-.5-.5V9a.5.5 0 0 1 .5-.5",clipRule:"evenodd"})]);
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
export function Edit(props) {
|
|
324
|
+
return _c("svg", Object.assign({
|
|
325
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
326
|
+
viewBox: "0 0 24 24",
|
|
327
|
+
width: "1em",
|
|
328
|
+
height: "1em",
|
|
329
|
+
fill: "currentColor"
|
|
330
|
+
}, props), _c("path", {d:"M19.864 4.304a2 2 0 0 0-2.733.732l-.635 1.1 3.464 2 .636-1.1a2 2 0 0 0-.732-2.732m-.746 5.292-3.464-2-4.903 8.49.062 3.893 3.402-1.892zM4 5.25h9v1.5H4zm7 4H4v1.5h7zm-7 4h5v1.5H4zm5 4H4v1.5h5z"}));
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
export function EllipsisH(props) {
|
|
334
|
+
return _c("svg", Object.assign({
|
|
335
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
336
|
+
viewBox: "0 0 24 24",
|
|
337
|
+
width: "1em",
|
|
338
|
+
height: "1em",
|
|
339
|
+
fill: "currentColor"
|
|
340
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M5 11h2v2H5zm6 0h2v2h-2zm6 0h2v2h-2z",clipRule:"evenodd"}));
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
export function EllipsisV(props) {
|
|
344
|
+
return _c("svg", Object.assign({
|
|
345
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
346
|
+
viewBox: "0 0 24 24",
|
|
347
|
+
width: "1em",
|
|
348
|
+
height: "1em",
|
|
349
|
+
fill: "currentColor"
|
|
350
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M11 19v-2h2v2zm0-6v-2h2v2zm0-6V5h2v2z",clipRule:"evenodd"}));
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
export function Envelope(props) {
|
|
354
|
+
return _c("svg", Object.assign({
|
|
355
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
356
|
+
viewBox: "0 0 24 24",
|
|
357
|
+
width: "1em",
|
|
358
|
+
height: "1em",
|
|
359
|
+
fill: "currentColor"
|
|
360
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M3 7a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm2-.5h14a.5.5 0 0 1 .5.5v.938L12 13.563 4.5 7.937V7a.5.5 0 0 1 .5-.5m-.5 3.312V17a.5.5 0 0 0 .5.5h14a.5.5 0 0 0 .5-.5V9.813L12 15.437z",clipRule:"evenodd"}));
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
export function ExternalLink(props) {
|
|
364
|
+
return _c("svg", Object.assign({
|
|
365
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
366
|
+
viewBox: "0 0 24 24",
|
|
367
|
+
width: "1em",
|
|
368
|
+
height: "1em",
|
|
369
|
+
fill: "currentColor"
|
|
370
|
+
}, props), [_c("path", {d:"M19.5 4.5h-7V6h4.44l-5.97 5.97 1.06 1.06L18 7.06v4.44h1.5z"}), _c("path", {d:"M6.5 5.5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-3H17v3a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h3V5.5z"})]);
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
export function Funnel(props) {
|
|
374
|
+
return _c("svg", Object.assign({
|
|
375
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
376
|
+
viewBox: "0 0 24 24",
|
|
377
|
+
width: "1em",
|
|
378
|
+
height: "1em",
|
|
379
|
+
fill: "currentColor"
|
|
380
|
+
}, props), _c("path", {d:"M10 17.5h4V16h-4zM6 6v1.5h12V6zm2 6.5h8V11H8z"}));
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
export function Globe(props) {
|
|
384
|
+
return _c("svg", Object.assign({
|
|
385
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
386
|
+
viewBox: "0 0 24 24",
|
|
387
|
+
width: "1em",
|
|
388
|
+
height: "1em",
|
|
389
|
+
fill: "currentColor"
|
|
390
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M3.25 12a8.75 8.75 0 1 1 17.5 0 8.75 8.75 0 0 1-17.5 0m2.267-3.25A7.27 7.27 0 0 1 10 5.03a8 8 0 0 0-1.19 1.875 11 11 0 0 0-.657 1.845zm-.554 1.5a7.3 7.3 0 0 0 0 3.5h2.9a13.5 13.5 0 0 1 0-3.5zm4.415 0q-.127.841-.128 1.75.001.909.128 1.75h5.244q.127-.841.128-1.75-.001-.909-.128-1.75zm6.759 0a13.5 13.5 0 0 1 0 3.5h2.9a7.3 7.3 0 0 0 0-3.5zm2.346-1.5h-2.636a11 11 0 0 0-.656-1.845A8 8 0 0 0 14 5.03a7.27 7.27 0 0 1 4.483 3.721m-4.194 0H9.711q.195-.647.458-1.211c.495-1.063 1.139-1.847 1.831-2.306.692.46 1.335 1.243 1.83 2.306q.264.563.46 1.211m-8.772 6.5h2.636a10.7 10.7 0 0 0 .7 1.938A8 8 0 0 0 10 18.97a7.27 7.27 0 0 1-4.483-3.721m8.772 0H9.711q.209.692.495 1.29c.491 1.024 1.12 1.78 1.794 2.227.692-.46 1.336-1.243 1.83-2.306a9 9 0 0 0 .46-1.211m.902 1.845c.265-.57.486-1.188.656-1.845h2.636A7.27 7.27 0 0 1 14 18.97a8.2 8.2 0 0 0 1.19-1.875",clipRule:"evenodd"}));
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
export function HandleAlt(props) {
|
|
394
|
+
return _c("svg", Object.assign({
|
|
395
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
396
|
+
viewBox: "0 0 24 24",
|
|
397
|
+
width: "1em",
|
|
398
|
+
height: "1em",
|
|
399
|
+
fill: "currentColor"
|
|
400
|
+
}, props), _c("path", {d:"M5 16v-2h2v2zm6 0v-2h2v2zm6 0v-2h2v2zM5 10V8h2v2zm6 0V8h2v2zm6 0V8h2v2z"}));
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
export function Handle(props) {
|
|
404
|
+
return _c("svg", Object.assign({
|
|
405
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
406
|
+
viewBox: "0 0 24 24",
|
|
407
|
+
width: "1em",
|
|
408
|
+
height: "1em",
|
|
409
|
+
fill: "currentColor"
|
|
410
|
+
}, props), _c("path", {d:"M7 16.5h10V15H7zm0-9V9h10V7.5z"}));
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
export function Help(props) {
|
|
414
|
+
return _c("svg", Object.assign({
|
|
415
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
416
|
+
viewBox: "0 0 24 24",
|
|
417
|
+
width: "1em",
|
|
418
|
+
height: "1em",
|
|
419
|
+
fill: "currentColor"
|
|
420
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M12 4.75a7.25 7.25 0 1 0 0 14.5 7.25 7.25 0 0 0 0-14.5M3.25 12a8.75 8.75 0 1 1 17.5 0 8.75 8.75 0 0 1-17.5 0M9 10.25a3 3 0 1 1 3.75 2.905V14h-1.5v-1.25c0-.57.452-.958.917-1.01a1.5 1.5 0 1 0-1.667-1.49zm2.25 6.25V15h1.5v1.5z",clipRule:"evenodd"}));
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
export function Hide(props) {
|
|
424
|
+
return _c("svg", Object.assign({
|
|
425
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
426
|
+
viewBox: "0 0 24 24",
|
|
427
|
+
width: "1em",
|
|
428
|
+
height: "1em",
|
|
429
|
+
fill: "currentColor"
|
|
430
|
+
}, props), _c("path", {d:"M4.67 10.664s-2.09 1.11-2.917 1.582l.494.87 1.608-.914.002.002c.343.502.86 1.17 1.563 1.84.347.33.742.663 1.185.976L5.57 16.744l.858.515 1.02-1.701a9.1 9.1 0 0 0 4.05 1.18V19h1v-2.263a9.1 9.1 0 0 0 4.052-1.18l1.02 1.7.858-.514-1.034-1.723a10.6 10.6 0 0 0 1.184-.977 11.6 11.6 0 0 0 1.563-1.839l.002-.003 1.609.914.494-.87c-1.75-.994-2.918-1.58-2.918-1.58l-.003.005-.017.031-.077.138a8 8 0 0 1-.328.52 10 10 0 0 1-1.36 1.598c-1.218 1.16-3.042 2.293-5.545 2.293-2.502 0-4.326-1.132-5.545-2.293a10 10 0 0 1-1.359-1.599 8 8 0 0 1-.422-.689z"}));
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
export function Highlight(props) {
|
|
434
|
+
return _c("svg", Object.assign({
|
|
435
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
436
|
+
viewBox: "0 0 24 24",
|
|
437
|
+
width: "1em",
|
|
438
|
+
height: "1em",
|
|
439
|
+
fill: "currentColor"
|
|
440
|
+
}, props), _c("path", {d:"M14 18.5V20H6v-1.5zm.567-4.626a1.5 1.5 0 0 1-.346.237l-2.825 1.397L10.5 17h-3l1.731-2.742-.203-3.145a1.5 1.5 0 0 1 .033-.418zm3.979-9.25a1.25 1.25 0 0 1 .457 1.708l-3.625 6.279L9.75 9.36l3.625-6.279a1.25 1.25 0 0 1 1.707-.457z"}));
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
export function Inbox(props) {
|
|
444
|
+
return _c("svg", Object.assign({
|
|
445
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
446
|
+
viewBox: "0 0 24 24",
|
|
447
|
+
width: "1em",
|
|
448
|
+
height: "1em",
|
|
449
|
+
fill: "currentColor"
|
|
450
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M4 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2zm2-.5h12a.5.5 0 0 1 .5.5v7H14a2 2 0 1 1-4 0H5.5V6a.5.5 0 0 1 .5-.5m-.5 9V18a.5.5 0 0 0 .5.5h12a.5.5 0 0 0 .5-.5v-3.5h-3.337a3.5 3.5 0 0 1-6.326 0z",clipRule:"evenodd"}));
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
export function Key(props) {
|
|
454
|
+
return _c("svg", Object.assign({
|
|
455
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
456
|
+
viewBox: "0 0 24 24",
|
|
457
|
+
width: "1em",
|
|
458
|
+
height: "1em",
|
|
459
|
+
fill: "currentColor"
|
|
460
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M9 13.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3M9 16a4 4 0 0 0 3.8-2.75H15V16h2.5v-2.75H19v-2.5h-6.2A4.002 4.002 0 0 0 5 12a4 4 0 0 0 4 4",clipRule:"evenodd"}));
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
export function Link(props) {
|
|
464
|
+
return _c("svg", Object.assign({
|
|
465
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
466
|
+
viewBox: "0 0 24 24",
|
|
467
|
+
width: "1em",
|
|
468
|
+
height: "1em",
|
|
469
|
+
fill: "currentColor"
|
|
470
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M10.083 17.639H8.444a5.194 5.194 0 1 1 0-10.389h1.64v1.5h-1.64a3.694 3.694 0 0 0 0 7.389h1.64zM13.917 7.25h1.639a5.194 5.194 0 0 1 0 10.39h-1.64v-1.5h1.64a3.694 3.694 0 0 0 0-7.39h-1.64zm-4.584 6.084h5.334v-1.5H9.333z",clipRule:"evenodd"}));
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
export function LockOutline(props) {
|
|
474
|
+
return _c("svg", Object.assign({
|
|
475
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
476
|
+
viewBox: "0 0 24 24",
|
|
477
|
+
width: "1em",
|
|
478
|
+
height: "1em",
|
|
479
|
+
fill: "currentColor"
|
|
480
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M12 3.25A3.75 3.75 0 0 0 8.25 7v3H7a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1h-1.25V7A3.75 3.75 0 0 0 12 3.25M14.25 10V7a2.25 2.25 0 0 0-4.5 0v3zM7.5 18.5v-7h9v7z",clipRule:"evenodd"}));
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
export function LockSmall(props) {
|
|
484
|
+
return _c("svg", Object.assign({
|
|
485
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
486
|
+
viewBox: "0 0 24 24",
|
|
487
|
+
width: "1em",
|
|
488
|
+
height: "1em",
|
|
489
|
+
fill: "currentColor"
|
|
490
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M12 6.25A2.75 2.75 0 0 0 9.25 9v2H9a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-.25V9A2.75 2.75 0 0 0 12 6.25M13.25 11V9a1.25 1.25 0 1 0-2.5 0v2z",clipRule:"evenodd"}));
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
export function Lock(props) {
|
|
494
|
+
return _c("svg", Object.assign({
|
|
495
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
496
|
+
viewBox: "0 0 24 24",
|
|
497
|
+
width: "1em",
|
|
498
|
+
height: "1em",
|
|
499
|
+
fill: "currentColor"
|
|
500
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M12 3.25A3.75 3.75 0 0 0 8.25 7v3H7a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1h-1.25V7A3.75 3.75 0 0 0 12 3.25M14.25 10V7a2.25 2.25 0 0 0-4.5 0v3z",clipRule:"evenodd"}));
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
export function MinusCircleFill(props) {
|
|
504
|
+
return _c("svg", Object.assign({
|
|
505
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
506
|
+
viewBox: "0 0 24 24",
|
|
507
|
+
width: "1em",
|
|
508
|
+
height: "1em",
|
|
509
|
+
fill: "currentColor"
|
|
510
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M20 12a8 8 0 1 1-16 0 8 8 0 0 1 16 0m-11.998.75h7.996v-1.5H8.002z",clipRule:"evenodd"}));
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
export function MinusCircleOutline(props) {
|
|
514
|
+
return _c("svg", Object.assign({
|
|
515
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
516
|
+
viewBox: "0 0 24 24",
|
|
517
|
+
width: "1em",
|
|
518
|
+
height: "1em",
|
|
519
|
+
fill: "currentColor"
|
|
520
|
+
}, props), [_c("path", {fillRule:"evenodd",d:"M12 18.5a6.5 6.5 0 1 0 0-13 6.5 6.5 0 0 0 0 13m8-6.5a8 8 0 1 1-16 0 8 8 0 0 1 16 0",clipRule:"evenodd"}), _c("path", {fillRule:"evenodd",d:"M15.998 12.75H8.002v-1.5h7.996z",clipRule:"evenodd"})]);
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
export function Minus(props) {
|
|
524
|
+
return _c("svg", Object.assign({
|
|
525
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
526
|
+
viewBox: "0 0 24 24",
|
|
527
|
+
width: "1em",
|
|
528
|
+
height: "1em",
|
|
529
|
+
fill: "currentColor"
|
|
530
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M17 13H7v-1.5h10z",clipRule:"evenodd"}));
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
export function Paste(props) {
|
|
534
|
+
return _c("svg", Object.assign({
|
|
535
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
536
|
+
viewBox: "0 0 24 24",
|
|
537
|
+
width: "1em",
|
|
538
|
+
height: "1em",
|
|
539
|
+
fill: "currentColor"
|
|
540
|
+
}, props), [_c("path", {d:"M17 10.75h-5v1.5h5zm-5 2.5h5v1.5h-5zm5 2.5h-5v1.5h5z"}), _c("path", {fillRule:"evenodd",d:"M6 4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h3v1a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2h-1V6a2 2 0 0 0-2-2zm3 6v5.5H6a.5.5 0 0 1-.5-.5V6a.5.5 0 0 1 .5-.5h1v1.25h7V5.5h1a.5.5 0 0 1 .5.5v2H11a2 2 0 0 0-2 2m9-.5h-7a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.5-.5",clipRule:"evenodd"})]);
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
export function PinSmall(props) {
|
|
544
|
+
return _c("svg", Object.assign({
|
|
545
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
546
|
+
viewBox: "0 0 24 24",
|
|
547
|
+
width: "1em",
|
|
548
|
+
height: "1em",
|
|
549
|
+
fill: "currentColor"
|
|
550
|
+
}, props), _c("path", {d:"M10.97 10.159a3.38 3.38 0 0 0-2.857.955l1.724 1.723-2.836 2.913L7 17h1.25l2.913-2.837 1.723 1.723a3.4 3.4 0 0 0 .606-.825c.33-.63.446-1.343.35-2.032L17 10.695 13.305 7z"}));
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
export function Pin(props) {
|
|
554
|
+
return _c("svg", Object.assign({
|
|
555
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
556
|
+
viewBox: "0 0 24 24",
|
|
557
|
+
width: "1em",
|
|
558
|
+
height: "1em",
|
|
559
|
+
fill: "currentColor"
|
|
560
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M7.138 8.765a6 6 0 0 1 3.614-.62l4.15-5.617 6.57 6.57-5.617 4.15a6 6 0 0 1-.771 3.886q-.378.642-.927 1.195l-3.713-3.713-5.692 5.693h-1.06v-1.061l5.692-5.692L5.67 9.843a6 6 0 0 1 1.467-1.078m7.935-3.944 4.106 4.105-4.933 3.647.124.884c.122.87-.01 1.766-.394 2.57l-6.003-6.003a4.5 4.5 0 0 1 2.57-.394l.884.124z",clipRule:"evenodd"}));
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
export function PlusCircleFill(props) {
|
|
564
|
+
return _c("svg", Object.assign({
|
|
565
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
566
|
+
viewBox: "0 0 24 24",
|
|
567
|
+
width: "1em",
|
|
568
|
+
height: "1em",
|
|
569
|
+
fill: "currentColor"
|
|
570
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M12 4a8 8 0 1 1 0 16 8 8 0 0 1 0-16m-.75 4v3.25H8.002v1.5h3.248v3.245h1.5V12.75h3.248v-1.5H12.75V8z",clipRule:"evenodd"}));
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
export function PlusCircleOutline(props) {
|
|
574
|
+
return _c("svg", Object.assign({
|
|
575
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
576
|
+
viewBox: "0 0 24 24",
|
|
577
|
+
width: "1em",
|
|
578
|
+
height: "1em",
|
|
579
|
+
fill: "currentColor"
|
|
580
|
+
}, props), [_c("path", {d:"M12.75 11.25h3.248v1.5H12.75v3.245l-1.5.001V12.75H8.002v-1.5h3.248V8.001L12.75 8z"}), _c("path", {fillRule:"evenodd",d:"M12 4a8 8 0 1 1 0 16 8 8 0 0 1 0-16m0 1.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13",clipRule:"evenodd"})]);
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
export function Plus(props) {
|
|
584
|
+
return _c("svg", Object.assign({
|
|
585
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
586
|
+
viewBox: "0 0 24 24",
|
|
587
|
+
width: "1em",
|
|
588
|
+
height: "1em",
|
|
589
|
+
fill: "currentColor"
|
|
590
|
+
}, props), _c("path", {d:"M11.25 12.75V16h1.5v-3.25H16v-1.5h-3.25V8h-1.5v3.25H8v1.5z"}));
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
export function Recurring(props) {
|
|
594
|
+
return _c("svg", Object.assign({
|
|
595
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
596
|
+
viewBox: "0 0 24 24",
|
|
597
|
+
width: "1em",
|
|
598
|
+
height: "1em",
|
|
599
|
+
fill: "currentColor"
|
|
600
|
+
}, props), [_c("path", {d:"M11.592 5.763a6.25 6.25 0 0 1 6.135 3.733l-2.572-.542-.31 1.468 5.162 1.088 1.378-5.322-1.453-.376-.81 3.131a7.75 7.75 0 1 0-.41 6.932l-1.299-.75a6.25 6.25 0 1 1-5.821-9.362"}), _c("path", {d:"M12 7.25a.75.75 0 0 1 .75.75v3.598l2.666 1.778a.75.75 0 0 1-.832 1.248l-2.986-1.991a.8.8 0 0 1-.232-.232.75.75 0 0 1-.116-.401V8a.75.75 0 0 1 .75-.75"})]);
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
export function Reverse(props) {
|
|
604
|
+
return _c("svg", Object.assign({
|
|
605
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
606
|
+
viewBox: "0 0 24 24",
|
|
607
|
+
width: "1em",
|
|
608
|
+
height: "1em",
|
|
609
|
+
fill: "currentColor"
|
|
610
|
+
}, props), _c("path", {d:"m14.474 4.53 2.72 2.72H6.003v1.5h11.191l-2.72 2.72 1.061 1.06L20.065 8l-4.53-4.53zM9.53 19.47l-2.72-2.72h11.192v-1.5H6.811l2.72-2.72-1.061-1.06L3.94 16l4.53 4.53z"}));
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
export function Send(props) {
|
|
614
|
+
return _c("svg", Object.assign({
|
|
615
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
616
|
+
viewBox: "0 0 24 24",
|
|
617
|
+
width: "1em",
|
|
618
|
+
height: "1em",
|
|
619
|
+
fill: "currentColor"
|
|
620
|
+
}, props), _c("path", {d:"M6.332 5.748c-1.03-.426-2.06.607-1.632 1.636l1.702 3.93 7.481.575c.123.01.123.19 0 .2l-7.483.575-1.7 3.909c-.429 1.029.602 2.062 1.632 1.636l12.265-5.076c1.03-.426 1.03-1.884 0-2.31z"}));
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
export function Settings(props) {
|
|
624
|
+
return _c("svg", Object.assign({
|
|
625
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
626
|
+
viewBox: "0 0 24 24",
|
|
627
|
+
width: "1em",
|
|
628
|
+
height: "1em",
|
|
629
|
+
fill: "currentColor"
|
|
630
|
+
}, props), _c("path", {d:"M7.114 8.5H4V7h3.114a2.501 2.501 0 0 1 4.772 0H20v1.5h-8.114a2.501 2.501 0 0 1-4.772 0M4 17h8.115a2.501 2.501 0 0 0 4.77 0H20v-1.5h-3.114a2.501 2.501 0 0 0-4.771 0H4z"}));
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
export function Show(props) {
|
|
634
|
+
return _c("svg", Object.assign({
|
|
635
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
636
|
+
viewBox: "0 0 24 24",
|
|
637
|
+
width: "1em",
|
|
638
|
+
height: "1em",
|
|
639
|
+
fill: "currentColor"
|
|
640
|
+
}, props), _c("path", {d:"m4 13 .67.336.003-.005.017-.032.077-.138c.07-.122.18-.302.328-.52.298-.435.75-1.017 1.36-1.598C7.672 9.883 9.496 8.75 12 8.75c2.502 0 4.326 1.132 5.545 2.293.61.581 1.061 1.163 1.359 1.599a8 8 0 0 1 .422.689l.003.005L20 13l.671-.336-.001-.003-.003-.005-.008-.015-.027-.052-.1-.18a10 10 0 0 0-.389-.613c-.343-.502-.86-1.17-1.563-1.84C17.173 8.619 14.997 7.25 12 7.25S6.827 8.618 5.42 9.957a11.6 11.6 0 0 0-1.562 1.839 10 10 0 0 0-.516.845l-.008.015-.003.005v.002s-.001.002.67.337m8 3a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7"}));
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
export function StarFill(props) {
|
|
644
|
+
return _c("svg", Object.assign({
|
|
645
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
646
|
+
viewBox: "0 0 24 24",
|
|
647
|
+
width: "1em",
|
|
648
|
+
height: "1em",
|
|
649
|
+
fill: "currentColor"
|
|
650
|
+
}, props), _c("path", {d:"M11.776 4.454a.25.25 0 0 1 .448 0l2.07 4.192a.25.25 0 0 0 .187.137l4.626.672a.25.25 0 0 1 .139.427l-3.347 3.262a.25.25 0 0 0-.072.222l.79 4.607a.25.25 0 0 1-.363.264l-4.138-2.176a.25.25 0 0 0-.232 0l-4.138 2.175a.25.25 0 0 1-.362-.263l.79-4.607a.25.25 0 0 0-.072-.222L4.754 9.882a.25.25 0 0 1 .139-.427l4.626-.672a.25.25 0 0 0 .188-.137z"}));
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
export function StarHalf(props) {
|
|
654
|
+
return _c("svg", Object.assign({
|
|
655
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
656
|
+
viewBox: "0 0 24 24",
|
|
657
|
+
width: "1em",
|
|
658
|
+
height: "1em",
|
|
659
|
+
fill: "currentColor"
|
|
660
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M9.519 8.783a.25.25 0 0 0 .188-.137l2.069-4.192a.25.25 0 0 1 .448 0l2.07 4.192a.25.25 0 0 0 .187.137l4.626.672a.25.25 0 0 1 .139.427l-3.347 3.262a.25.25 0 0 0-.072.222l.79 4.607a.25.25 0 0 1-.363.264l-4.138-2.176a.25.25 0 0 0-.232 0l-4.138 2.175a.25.25 0 0 1-.362-.263l.79-4.607a.25.25 0 0 0-.072-.222L4.754 9.882a.25.25 0 0 1 .139-.427zM12 14.533c.28 0 .56.067.815.2l1.895.997-.362-2.11a1.75 1.75 0 0 1 .503-1.55l1.534-1.495-2.12-.308a1.75 1.75 0 0 1-1.317-.957L12 7.39z",clipRule:"evenodd"}));
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
export function StarOutline(props) {
|
|
664
|
+
return _c("svg", Object.assign({
|
|
665
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
666
|
+
viewBox: "0 0 24 24",
|
|
667
|
+
width: "1em",
|
|
668
|
+
height: "1em",
|
|
669
|
+
fill: "currentColor"
|
|
670
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M11.186 14.734a1.75 1.75 0 0 1 1.629 0l1.895.996-.362-2.11a1.75 1.75 0 0 1 .503-1.55l1.534-1.495-2.12-.308.216-1.484 4.626.672a.25.25 0 0 1 .139.427l-3.347 3.262a.25.25 0 0 0-.072.222l.79 4.607a.25.25 0 0 1-.363.264l-4.138-2.176a.25.25 0 0 0-.232 0l-4.138 2.175a.25.25 0 0 1-.362-.263l.79-4.607a.25.25 0 0 0-.072-.222L4.754 9.882a.25.25 0 0 1 .139-.427l4.626-.672.216 1.484-2.12.308L9.15 12.07c.412.402.6.982.503 1.55l-.362 2.11zM9.707 8.645a.25.25 0 0 1-.188.137l.216 1.484a1.75 1.75 0 0 0 1.317-.957L12 7.39l.948 1.92a1.75 1.75 0 0 0 1.318.957l.215-1.484a.25.25 0 0 1-.188-.137l-2.069-4.192a.25.25 0 0 0-.448 0z",clipRule:"evenodd"}));
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
export function Tool(props) {
|
|
674
|
+
return _c("svg", Object.assign({
|
|
675
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
676
|
+
viewBox: "0 0 24 24",
|
|
677
|
+
width: "1em",
|
|
678
|
+
height: "1em",
|
|
679
|
+
fill: "currentColor"
|
|
680
|
+
}, props), _c("path", {fillRule:"evenodd",d:"m13.862 7.492 2.26-2.26a4 4 0 0 0-5.208 4.804l-5.328 5.328a2 2 0 1 0 2.828 2.828l5.328-5.328a4 4 0 0 0 4.804-5.208l-2.26 2.26-1.912-.512zm-7.216 9.64a.5.5 0 1 1 .708-.707.5.5 0 0 1-.708.707",clipRule:"evenodd"}));
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
export function Trash(props) {
|
|
684
|
+
return _c("svg", Object.assign({
|
|
685
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
686
|
+
viewBox: "0 0 24 24",
|
|
687
|
+
width: "1em",
|
|
688
|
+
height: "1em",
|
|
689
|
+
fill: "currentColor"
|
|
690
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M12 3.714A2.286 2.286 0 0 0 9.714 6H4v1.5h1.385l1.772 10.962a2 2 0 0 0 1.974 1.68h5.738a2 2 0 0 0 1.974-1.68L18.615 7.5H20V6h-5.714A2.286 2.286 0 0 0 12 3.714M6.905 7.5h10.19l-1.733 10.723a.5.5 0 0 1-.493.42H9.13a.5.5 0 0 1-.493-.42z",clipRule:"evenodd"}));
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
export function Unlink(props) {
|
|
694
|
+
return _c("svg", Object.assign({
|
|
695
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
696
|
+
viewBox: "0 0 24 24",
|
|
697
|
+
width: "1em",
|
|
698
|
+
height: "1em",
|
|
699
|
+
fill: "currentColor"
|
|
700
|
+
}, props), _c("path", {d:"m14.835 7.25 1.62-3.543-.91-.416-3.905 8.543H9v1.5h1.954l-1.282 2.805H8.445a3.694 3.694 0 0 1 0-7.389h1.639v-1.5h-1.64a5.194 5.194 0 1 0 0 10.39h.542l-1.44 3.151.909.416 5.694-12.456h1.407a3.694 3.694 0 1 1 0 7.389h-1.64v1.5h1.64a5.194 5.194 0 1 0 0-10.39z"}));
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
export function Unlock(props) {
|
|
704
|
+
return _c("svg", Object.assign({
|
|
705
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
706
|
+
viewBox: "0 0 24 24",
|
|
707
|
+
width: "1em",
|
|
708
|
+
height: "1em",
|
|
709
|
+
fill: "currentColor"
|
|
710
|
+
}, props), _c("path", {d:"M8.25 7a3.75 3.75 0 1 1 7.5 0v3H17a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h7.25V7a2.25 2.25 0 0 0-4.5 0z"}));
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
export function UserCircleFill(props) {
|
|
714
|
+
return _c("svg", Object.assign({
|
|
715
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
716
|
+
viewBox: "0 0 24 24",
|
|
717
|
+
width: "1em",
|
|
718
|
+
height: "1em",
|
|
719
|
+
fill: "currentColor"
|
|
720
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M7.05 18.286a5.001 5.001 0 0 1 9.9 0 8 8 0 1 0-9.899 0M15 10a3 3 0 1 1-6 0 3 3 0 0 1 6 0",clipRule:"evenodd"}));
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
export function UserCircleOutline(props) {
|
|
724
|
+
return _c("svg", Object.assign({
|
|
725
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
726
|
+
viewBox: "0 0 24 24",
|
|
727
|
+
width: "1em",
|
|
728
|
+
height: "1em",
|
|
729
|
+
fill: "currentColor"
|
|
730
|
+
}, props), [_c("path", {fillRule:"evenodd",d:"M7.05 18.286a8 8 0 1 1 9.9-12.571 8 8 0 0 1-9.898 12.57m8.177-.643A6.47 6.47 0 0 1 12 18.5a6.47 6.47 0 0 1-3.227-.857 3.5 3.5 0 0 1 6.454 0m1.23-.912a5 5 0 0 0-8.914 0 6.5 6.5 0 1 1 8.914 0",clipRule:"evenodd"}), _c("path", {fillRule:"evenodd",d:"M12 11.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m0 1.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6",clipRule:"evenodd"})]);
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
export function View(props) {
|
|
734
|
+
return _c("svg", Object.assign({
|
|
735
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
736
|
+
viewBox: "0 0 24 24",
|
|
737
|
+
width: "1em",
|
|
738
|
+
height: "1em",
|
|
739
|
+
fill: "currentColor"
|
|
740
|
+
}, props), [_c("path", {d:"M12 15.5a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7"}), _c("path", {fillRule:"evenodd",d:"M12 6c6 0 9 6 9 6s-3 6-9 6-9-6-9-6 3-6 9-6m-7.259 6 .07-.105a12 12 0 0 1 1.5-1.834C7.647 8.724 9.538 7.5 12 7.5s4.353 1.224 5.69 2.56A12 12 0 0 1 19.258 12l-.07.105a12 12 0 0 1-1.5 1.834C16.353 15.276 14.462 16.5 12 16.5s-4.353-1.224-5.69-2.56A12 12 0 0 1 4.742 12",clipRule:"evenodd"})]);
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
export const systemIcons = {
|
|
744
|
+
'alert-circle-fill': AlertCircleFill,
|
|
745
|
+
'alert-circle-outline': AlertCircleOutline,
|
|
746
|
+
'arrow-clockwise': ArrowClockwise,
|
|
747
|
+
'arrow-counterclockwise': ArrowCounterclockwise,
|
|
748
|
+
'arrow-down': ArrowDown,
|
|
749
|
+
'arrow-left': ArrowLeft,
|
|
750
|
+
'arrow-right': ArrowRight,
|
|
751
|
+
'arrow-up': ArrowUp,
|
|
752
|
+
'attachment': Attachment,
|
|
753
|
+
'bell-unread': BellUnread,
|
|
754
|
+
'bell': Bell,
|
|
755
|
+
'check-small': CheckSmall,
|
|
756
|
+
'check': Check,
|
|
757
|
+
'checklist': Checklist,
|
|
758
|
+
'chevron-down-small': ChevronDownSmall,
|
|
759
|
+
'chevron-down': ChevronDown,
|
|
760
|
+
'chevron-left-small': ChevronLeftSmall,
|
|
761
|
+
'chevron-left': ChevronLeft,
|
|
762
|
+
'chevron-right-small': ChevronRightSmall,
|
|
763
|
+
'chevron-right': ChevronRight,
|
|
764
|
+
'chevron-up-small': ChevronUpSmall,
|
|
765
|
+
'chevron-up': ChevronUp,
|
|
766
|
+
'circle-small-fill': CircleSmallFill,
|
|
767
|
+
'circle-small-outline': CircleSmallOutline,
|
|
768
|
+
'close-circle-fill': CloseCircleFill,
|
|
769
|
+
'close-circle-outline': CloseCircleOutline,
|
|
770
|
+
'close-small': CloseSmall,
|
|
771
|
+
'close': Close,
|
|
772
|
+
'cog': Cog,
|
|
773
|
+
'copy': Copy,
|
|
774
|
+
'download': Download,
|
|
775
|
+
'duplicate': Duplicate,
|
|
776
|
+
'edit': Edit,
|
|
777
|
+
'ellipsis-h': EllipsisH,
|
|
778
|
+
'ellipsis-v': EllipsisV,
|
|
779
|
+
'envelope': Envelope,
|
|
780
|
+
'external-link': ExternalLink,
|
|
781
|
+
'funnel': Funnel,
|
|
782
|
+
'globe': Globe,
|
|
783
|
+
'handle-alt': HandleAlt,
|
|
784
|
+
'handle': Handle,
|
|
785
|
+
'help': Help,
|
|
786
|
+
'hide': Hide,
|
|
787
|
+
'highlight': Highlight,
|
|
788
|
+
'inbox': Inbox,
|
|
789
|
+
'key': Key,
|
|
790
|
+
'link': Link,
|
|
791
|
+
'lock-outline': LockOutline,
|
|
792
|
+
'lock-small': LockSmall,
|
|
793
|
+
'lock': Lock,
|
|
794
|
+
'minus-circle-fill': MinusCircleFill,
|
|
795
|
+
'minus-circle-outline': MinusCircleOutline,
|
|
796
|
+
'minus': Minus,
|
|
797
|
+
'paste': Paste,
|
|
798
|
+
'pin-small': PinSmall,
|
|
799
|
+
'pin': Pin,
|
|
800
|
+
'plus-circle-fill': PlusCircleFill,
|
|
801
|
+
'plus-circle-outline': PlusCircleOutline,
|
|
802
|
+
'plus': Plus,
|
|
803
|
+
'recurring': Recurring,
|
|
804
|
+
'reverse': Reverse,
|
|
805
|
+
'send': Send,
|
|
806
|
+
'settings': Settings,
|
|
807
|
+
'show': Show,
|
|
808
|
+
'star-fill': StarFill,
|
|
809
|
+
'star-half': StarHalf,
|
|
810
|
+
'star-outline': StarOutline,
|
|
811
|
+
'tool': Tool,
|
|
812
|
+
'trash': Trash,
|
|
813
|
+
'unlink': Unlink,
|
|
814
|
+
'unlock': Unlock,
|
|
815
|
+
'user-circle-fill': UserCircleFill,
|
|
816
|
+
'user-circle-outline': UserCircleOutline,
|
|
817
|
+
'view': View,
|
|
818
|
+
};
|