@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,400 @@
|
|
|
1
|
+
import { createElement as _c } from "react";
|
|
2
|
+
|
|
3
|
+
export function ArrowThickDownFill(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", {d:"m12 20-8-9h5V4h6v7h5z"}));
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export function ArrowThickDownOutline(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:"M9 11V4h6v7h5l-8 9-8-9zm-1.66 1.5h3.16v-7h3v7h3.16L12 17.742z",clipRule:"evenodd"}));
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export function ArrowThickUpFill(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:"m12 4-8 9h5v7h6v-7h5z"}));
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export function ArrowThickUpOutline(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", {fillRule:"evenodd",d:"M9 13v7h6v-7h5l-8-9-8 9zm-1.66-1.5h3.16v7h3v-7h3.16L12 6.258z",clipRule:"evenodd"}));
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export function ArrowThinDownFill(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", {d:"m12 20-7-7h6.25V4h1.5v9H19z"}));
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export function ArrowThinDownOutline(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", {d:"m18.47 11.47 1.06 1.06L12 20.06l-7.53-7.53 1.06-1.06 5.72 5.72V4h1.5v13.19z"}));
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export function ArrowThinUpFill(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", {d:"m12 4-7 7h6.25v9h1.5v-9H19z"}));
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export function ArrowThinUpOutline(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", {d:"m18.47 12.53 1.06-1.06L12 3.94l-7.53 7.53 1.06 1.06 5.72-5.72V20h1.5V6.81z"}));
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export function BookmarkFill(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", {d:"M5 6a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v14l-7-7-7 7z"}));
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export function BookmarkOutline(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", {fillRule:"evenodd",d:"M19 20V6a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v14l7-7zM6.5 16.379l5.5-5.5 5.5 5.5V6.5h-11z",clipRule:"evenodd"}));
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export function ChevronDownFill(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", {d:"m3 7 9 10 9-10-9 4.107z"}));
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export function ChevronDownOutline(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", {d:"m12 15.57 7.488-6.419-.976-1.139L12 13.594 5.488 8.012l-.976 1.14z",clipRule:"evenodd"}));
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
export function ChevronUpFill(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", {d:"m3 17 9-10 9 10-9-4.107z"}));
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
export function ChevronUpOutline(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", {d:"m12 8.012 7.488 6.419-.976 1.139L12 9.988 5.488 15.57l-.976-1.14z",clipRule:"evenodd"}));
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
export function ClapFill(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", {d:"M8.558 6.654a.89.89 0 0 1 1.272 0l3.54 3.639v-.982a1.314 1.314 0 1 1 2.628 0c0 1.957.055 3.924 0 5.88v.01a5 5 0 0 1-1.409 3.348 4.726 4.726 0 0 1-6.813 0l-4.173-4.29a.888.888 0 0 1 1.272-1.238l1.55 1.593a.444.444 0 1 0 .636-.62l-2.84-2.918a.888.888 0 1 1 1.274-1.238l2.788 2.866a.444.444 0 0 0 .636-.62L5.461 8.53a.888.888 0 0 1 1.273-1.238l3.407 3.503a.444.444 0 0 0 .636-.62l-2.22-2.281a.89.89 0 0 1 0-1.239Zm6.847 13.337a4.7 4.7 0 0 0 3.194-1.441 5 5 0 0 0 1.41-3.35v-.008c.054-1.957 0-3.923 0-5.881a1.314 1.314 0 0 0-2.627-.074c0 2.14.06 4.283 0 6.422v.01a6.1 6.1 0 0 1-1.977 4.322"}), _c("path", {fillRule:"evenodd",d:"M15 3.25a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0V4a.75.75 0 0 1 .75-.75m-3.53 1.22a.75.75 0 0 1 1.06 0l.708.707a.75.75 0 1 1-1.061 1.06l-.707-.707a.75.75 0 0 1 0-1.06m7.06 0a.75.75 0 0 1 0 1.06l-.707.707a.75.75 0 0 1-1.06-1.06l.707-.707a.75.75 0 0 1 1.06 0",clipRule:"evenodd"})]);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export function ClapOutline(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:"M15 3.25a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0V4a.75.75 0 0 1 .75-.75m-3.53 1.22a.75.75 0 0 1 1.06 0l.707.707a.75.75 0 1 1-1.06 1.06l-.707-.707a.75.75 0 0 1 0-1.06m7.06 0a.75.75 0 0 1 0 1.06l-.707.707a.75.75 0 0 1-1.06-1.06l.707-.707a.75.75 0 0 1 1.06 0m-2.177 5.036c.053-.998.859-1.83 1.894-1.83 1.072 0 1.897.891 1.897 1.936q.001.863.01 1.745c.01 1.187.022 2.39-.01 3.58-.003 1.307-.56 2.608-1.434 3.537-.937.996-2.154 1.497-3.308 1.538a.75.75 0 0 1-.054-1.5c.765-.026 1.607-.361 2.27-1.066.631-.672 1.026-1.617 1.026-2.52v-.02c.032-1.167.021-2.325.01-3.498q-.009-.89-.01-1.796c0-.266-.202-.437-.397-.437a.414.414 0 0 0-.395.395v1.837a.75.75 0 0 1-1.5 0v-1.9",clipRule:"evenodd"}), _c("path", {fillRule:"evenodd",d:"M15.692 9.551a1.882 1.882 0 0 0-3.754-.193l-1.586-1.586a1.787 1.787 0 0 0-2.725.234A1.788 1.788 0 0 0 4.813 9.84a1.788 1.788 0 0 0-.622 2.668 1.79 1.79 0 0 0-.235 2.725l3.38 3.38a4.9 4.9 0 0 0 6.929 0c1.056-1.056 1.427-2.428 1.427-3.726zm-6.153.343-.654-.655a.287.287 0 1 1 .406-.407l4.137 4.138V9.55a.382.382 0 0 1 .764 0v5.337c0 1.023-.29 1.967-.988 2.665a3.4 3.4 0 0 1-4.807 0l-3.38-3.38a.287.287 0 0 1 .406-.406l2.297 2.297a.75.75 0 0 0 1.06-1.061L5.418 11.64a.287.287 0 1 1 .406-.407l3.363 3.364a.75.75 0 0 0 1.06-1.06L6.352 9.639a.287.287 0 0 1 .406-.406l.767.766-.002.002 3.13 3.13a.75.75 0 0 0 1.061-1.06z",clipRule:"evenodd"})]);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
export function ExclamationPointFill(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", {d:"M11.494 17.924a1.75 1.75 0 1 1-3.46.535 1.75 1.75 0 0 1 3.46-.535m-3.486-3.228-1.907-4.86a2.407 2.407 0 1 1 4.642-.727l-.33 5.211a1.246 1.246 0 0 1-2.405.376m5.172-2.386-.406-5.268a2.849 2.849 0 1 1 5.534.707l-1.719 4.997a1.755 1.755 0 0 1-3.408-.435m2.928 4.838a2 2 0 1 1-3.96-.565 2 2 0 0 1 3.96.565"}));
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export function ExclamationPointOutline(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", {d:"M9.613 17.442a.5.5 0 1 0 .153.988.5.5 0 0 0-.153-.988m-1.9.8a2 2 0 1 1 3.953-.612 2 2 0 0 1-3.953.611M8.09 7.558a1.256 1.256 0 0 0-.977 1.7l1.589 4.05a.289.289 0 0 0 .557-.087l.276-4.342c.05-.8-.652-1.443-1.445-1.32M5.716 9.805a2.756 2.756 0 1 1 5.316-.831l-.276 4.342a1.789 1.789 0 0 1-3.45.54zm10.137-4.686a1.692 1.692 0 0 0-1.926 1.805l.349 4.517a.754.754 0 0 0 1.464.187l1.474-4.284a1.692 1.692 0 0 0-1.361-2.225m-3.422 1.92a3.192 3.192 0 1 1 6.201.793l-1.473 4.284a2.254 2.254 0 0 1-4.379-.56zm1.824 8.965a.75.75 0 1 0-.213 1.485.75.75 0 0 0 .213-1.485m-2.334.425a2.25 2.25 0 1 1 4.455.636 2.25 2.25 0 0 1-4.455-.636",clipRule:"evenodd"}));
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
export function HeartFill(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", {d:"M5.848 14.455C8.24 17.826 12 20 12 20s3.76-2.174 6.151-5.545 2.52-7.198.912-9.059C18.266 4.474 17.333 4 16.048 4c-1.9 0-2.886 1.158-3.823 2.256q-.112.134-.225.263-.113-.13-.225-.263C10.838 5.158 9.85 4 7.952 4c-1.285 0-2.218.474-3.015 1.396-1.608 1.861-1.48 5.688.911 9.059"}));
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
export function HeartOutline(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", {d:"M12 8.814 10.865 7.5q-.119-.137-.23-.269l-.002-.001C9.666 6.096 9.088 5.5 7.952 5.5c-.821 0-1.35.262-1.88.877-.463.536-.792 1.514-.684 2.862.107 1.321.633 2.865 1.684 4.348 1.079 1.522 2.493 2.805 3.67 3.721.483.376.917.684 1.258.914.34-.23.775-.538 1.258-.914 1.177-.916 2.591-2.2 3.67-3.72 1.051-1.483 1.577-3.028 1.683-4.35.11-1.347-.22-2.325-.683-2.861l1.135-.98c1.608 1.86 1.479 5.687-.912 9.058S12 20 12 20s-3.761-2.174-6.152-5.545-2.52-7.198-.911-9.059C5.734 4.474 6.667 4 7.952 4c1.391 0 2.293.622 3.044 1.386.274.279.528.577.779.87q.113.134.225.263.113-.13.225-.263c.25-.293.505-.591.779-.87C13.754 4.622 14.657 4 16.048 4c1.285 0 2.218.474 3.015 1.396l-1.135.98c-.531-.614-1.06-.876-1.88-.876-1.136 0-1.714.596-2.681 1.73l-.002.002-.23.268z",clipRule:"evenodd"}));
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
export function LaughingFill(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", {d:"m18.008 11.867-.474-.934-2.453.443-.117 1.04-2.301.416 1.29-7.466 2.617-.472 3.82 6.543zm-2.742-2.144 1.517-.274-1.184-2.361-.04.007zm1.628 8.679-.388-.676-1.807.424-.047.778-1.694.397.672-5.6 1.927-.451 3.091 4.717zm-2.12-1.488 1.116-.262-.97-1.71-.03.007zm-5.462-4.649.33-2.68-2.495-.307-.33 2.68-2.27-.279.87-7.064 2.269.279-.317 2.577 2.495.307.317-2.577 2.27.279-.87 7.064zm.718 6.547.21-2-1.86-.196-.212 2-1.692-.18.556-5.269 1.693.179-.203 1.922 1.86.197.204-1.922 1.692.179-.556 5.269z"}));
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
export function LaughingOutline(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", {d:"m14.97 12.732-1.56.366-.545 4.533 1.372-.321.038-.63 1.463-.343.314.547 1.42-.333zm-.517 1.35-.024.006-.094 1.591.904-.212zm-3.333 5.5.094-.782-5.247-.554.554-5.237-2.137-.262 1.07-8.698 7.378.907 3.724-.672 4.703 8.055-4.25.768 2.893 4.415zm2.55-13.253-1.044 6.045 1.863-.336.095-.843 1.986-.359.384.757 1.929-.349-3.094-5.297zm1.334 1.394-.033.006-.237 2.128 1.228-.222zm-2.69 5.371-1.37-.144-.164 1.556-1.507-.16.165-1.556-1.37-.144-.451 4.266 1.37.145.171-1.619 1.507.16-.171 1.618 1.37.145zm.14-6.673-1.837-.226-.257 2.087-2.02-.248.256-2.087L6.76 5.72l-.703 5.72 1.837.226.267-2.17 2.02.248-.267 2.17 1.838.226z",clipRule:"evenodd"}));
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
export function QuestionMarkFill(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:"M14 18a2 2 0 1 1-4 0 2 2 0 0 1 4 0m-3.086-3.6c-.089-.664-.009-1.446.73-2.256.81-.89 1.385-1.077 2.057-2.233.503-.866.332-1.865-.363-2.499s-2.049-.624-2.746.238a3 3 0 0 0-.217.295c-.386.612-.51 1.261-1.232 1.286-.578.02-1.126-.328-1.237-.896-.136-.692-.098-1.348.204-2.002C8.878 4.668 10.592 4 12.157 4c1.061 0 2.081.195 2.96.791C16.49 5.723 17 6.908 17 8.643c0 1.171-.468 1.94-1.173 2.756-.879 1.017-1.703 1.205-2.37 2.408-.247.445-.187.695-.585 1.014-.399.32-1.853.365-1.958-.422"}));
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
export function QuestionMarkOutline(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:"M12 16.95a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0m2.377-12.817c-1.216 0-2.405.514-2.926 1.643-.223.484-.28.839-.203 1.258.006.032.023.068.08.105a.46.46 0 0 0 .272.066.1.1 0 0 0 .052-.012.3.3 0 0 0 .073-.061 2 2 0 0 0 .147-.198c.044-.067.085-.134.133-.214l.067-.11a4 4 0 0 1 .327-.446 2.44 2.44 0 0 1 1.762-.883c.623-.037 1.289.147 1.773.588.882.804 1.093 2.082.467 3.159a4.3 4.3 0 0 1-1.064 1.242q-.128.104-.24.19c-.231.182-.427.335-.662.593-.23.254-.365.544-.422.8a1.2 1.2 0 0 0-.031.323.4.4 0 0 0 .021.128.26.26 0 0 0 .094.11.4.4 0 0 0 .157.052.6.6 0 0 0 .206-.012.3.3 0 0 0 .073-.026.4.4 0 0 0 .067-.064.3.3 0 0 0 .033-.06l.038-.092.043-.108c.04-.096.09-.212.165-.345.362-.654.775-1.034 1.169-1.354l.222-.178c.291-.23.54-.429.81-.74.572-.662.862-1.178.862-1.967 0-.702-.103-1.233-.308-1.662-.2-.422-.521-.797-1.04-1.15-.616-.417-1.359-.575-2.217-.575M7.839 5.898c.848-1.839 2.713-2.515 4.288-2.515 1.032 0 2.108.189 3.059.835.703.477 1.22 1.046 1.553 1.746.33.692.453 1.462.453 2.306 0 1.3-.542 2.154-1.227 2.947-.37.429-.746.726-1.046.962l-.176.14c-.318.259-.57.498-.803.917-.054.1-.072.145-.098.212a3 3 0 0 1-.093.224 1.76 1.76 0 0 1-.535.683c-.367.293-.908.408-1.39.35-.522-.063-1.105-.348-1.42-.996-.208-.428-.211-.96-.105-1.434a3.3 3.3 0 0 1 .778-1.482c.327-.36.644-.608.89-.8l.172-.136c.253-.206.472-.416.715-.833.272-.468.178-.97-.18-1.296-.135-.123-.382-.217-.673-.2a.94.94 0 0 0-.686.33 3 3 0 0 0-.214.285l-.05.084c-.117.194-.28.462-.477.676a1.65 1.65 0 0 1-1.142.55c-.78.042-1.725-.406-1.909-1.395-.147-.795-.003-1.468.316-2.16",clipRule:"evenodd"}));
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
export function StarFill(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", {d:"M11.087 4.593c.352-.79 1.474-.79 1.827 0l1.614 3.622a1 1 0 0 0 .808.587l3.944.416c.86.091 1.207 1.158.564 1.738l-2.946 2.654a1 1 0 0 0-.308.95l.823 3.88c.179.846-.729 1.505-1.478 1.073L12.5 17.532a1 1 0 0 0-1 0l-3.434 1.981c-.75.432-1.658-.227-1.478-1.074l.822-3.879a1 1 0 0 0-.308-.95l-2.946-2.654c-.643-.58-.296-1.647.565-1.738l3.943-.416a1 1 0 0 0 .808-.587z"}));
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
export function StarOutline(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:"M11.087 4.593c.352-.79 1.474-.79 1.827 0l1.614 3.622a1 1 0 0 0 .808.587l3.944.416c.86.091 1.207 1.158.564 1.738l-2.946 2.654a1 1 0 0 0-.308.95l.823 3.88c.179.846-.729 1.505-1.478 1.073L12.5 17.532a1 1 0 0 0-1 0l-3.434 1.981c-.75.432-1.658-.227-1.478-1.074l.822-3.879a1 1 0 0 0-.308-.95l-2.946-2.654c-.643-.58-.296-1.647.565-1.738l3.943-.416a1 1 0 0 0 .808-.587zm-.245 4.232L12 6.228l1.158 2.597a2.5 2.5 0 0 0 2.02 1.469l2.829.298-2.113 1.904a2.5 2.5 0 0 0-.772 2.376l.59 2.781-2.463-1.42a2.5 2.5 0 0 0-2.498 0l-2.463 1.42.59-2.781a2.5 2.5 0 0 0-.772-2.376l-2.113-1.904 2.828-.298a2.5 2.5 0 0 0 2.021-1.469",clipRule:"evenodd"}));
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
export function StarShineFill(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:"M11.087 4.049c.352-.79 1.474-.79 1.827 0l1.614 3.622a1 1 0 0 0 .808.587l3.944.416c.86.091 1.207 1.158.564 1.738L16.9 13.066a1 1 0 0 0-.31.95l.824 3.88c.18.846-.729 1.506-1.478 1.073L12.5 16.99a1 1 0 0 0-1 0l-3.434 1.98c-.75.433-1.658-.227-1.478-1.073l.823-3.88a1 1 0 0 0-.31-.95l-2.945-2.654c-.643-.58-.296-1.647.565-1.738l3.943-.416a1 1 0 0 0 .808-.587z"}), _c("path", {d:"M20.322 14.704a.75.75 0 0 1-.945.481l-.951-.309a.75.75 0 1 1 .463-1.426l.951.309a.75.75 0 0 1 .482.945m-3.179-9.783a.75.75 0 0 1 .166 1.048l-.587.809a.75.75 0 0 1-1.214-.882l.588-.809a.75.75 0 0 1 1.047-.166m-10.286 0a.75.75 0 0 1 1.048.166l.587.809a.75.75 0 0 1-1.213.882l-.588-.81a.75.75 0 0 1 .166-1.047m-3.178 9.783a.75.75 0 0 1 .481-.945l.951-.31a.75.75 0 0 1 .464 1.427l-.951.31a.75.75 0 0 1-.945-.482M12 20.75a.75.75 0 0 1-.75-.75v-1a.75.75 0 0 1 1.5 0v1a.75.75 0 0 1-.75.75",clipRule:"evenodd"})]);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
export function StarShineOutline(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:"M11.087 4.049c.352-.79 1.474-.79 1.827 0l1.614 3.622a1 1 0 0 0 .808.587l3.944.416c.86.091 1.207 1.158.564 1.738L16.9 13.066a1 1 0 0 0-.31.95l.824 3.88c.18.846-.729 1.506-1.478 1.073L12.5 16.99a1 1 0 0 0-1 0l-3.434 1.98c-.75.433-1.658-.227-1.478-1.073l.823-3.88a1 1 0 0 0-.31-.95l-2.945-2.654c-.643-.58-.296-1.647.565-1.738l3.943-.416a1 1 0 0 0 .808-.587l1.615-3.622Zm-.245 4.232L12 5.684l1.158 2.597a2.5 2.5 0 0 0 2.02 1.469l2.829.298-2.113 1.904a2.5 2.5 0 0 0-.771 2.376l.59 2.782-2.464-1.421a2.5 2.5 0 0 0-2.498 0l-2.463 1.42.59-2.781a2.5 2.5 0 0 0-.772-2.376l-2.112-1.904L8.82 9.75a2.5 2.5 0 0 0 2.021-1.469Z",clipRule:"evenodd"}), _c("path", {d:"M19.377 15.185a.75.75 0 0 0 .463-1.426l-.95-.31a.75.75 0 0 0-.464 1.427zM17.143 4.92a.75.75 0 0 1 .166 1.049l-.588.809a.75.75 0 1 1-1.213-.882l.588-.81a.75.75 0 0 1 1.047-.165Zm-9.239.167a.75.75 0 0 0-1.213.882l.588.809a.75.75 0 0 0 1.213-.882zm-4.225 9.617a.75.75 0 0 1 .481-.945l.951-.31a.75.75 0 0 1 .464 1.427l-.951.31a.75.75 0 0 1-.945-.482M11.25 20a.75.75 0 0 0 1.5 0v-1a.75.75 0 0 0-1.5 0z"})]);
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
export function ThumbsDownFill(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", {d:"M13.858 19.957a2 2 0 0 0 1.569-2.494l-.582-2.136a1 1 0 0 1 .964-1.263h2.751a2 2 0 0 0 1.962-2.392l-1.2-6a2 2 0 0 0-1.962-1.608H9.5a1 1 0 0 0-1 1v6.394c0 1.003.513 1.932 1.238 2.625.419.4.877.904 1.262 1.48.786 1.18 1.741 3.288 2.113 4.134a.505.505 0 0 0 .553.295zM5 13.064a1 1 0 0 1-1-1v-7a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1z"}));
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
export function ThumbsDownOutline(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", {fillRule:"evenodd",d:"M7.5 13c.014.01 1.505 1.01 2.5 3l1.842 3.685c.095.19.299.297.509.271l.789-.098a2.5 2.5 0 0 0 2.102-3.139l-.57-2.087a.5.5 0 0 1 .483-.632h3.405a2 2 0 0 0 1.962-2.392l-1.2-6A2 2 0 0 0 17.36 4H5a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1zm9.86-7.5H9v6.78q.2.175.436.41a10.2 10.2 0 0 1 1.906 2.64l.24.48c.016.031.01.02.004.009l.37.74c.046.092-.028-.056.018.035l.611 1.222.006.011.276.553.087-.01a1 1 0 0 0 .84-1.256l-.569-2.088a2 2 0 0 1 1.93-2.526h3.405a.5.5 0 0 0 .49-.598l-1.2-6a.5.5 0 0 0-.49-.402m-9.86 6h-2v-6h2z",clipRule:"evenodd"}));
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
export function ThumbsUpOutline(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", {fillRule:"evenodd",d:"M7.5 11c.014-.01 1.505-1.01 2.5-3l1.842-3.685a.5.5 0 0 1 .509-.271l.789.098a2.5 2.5 0 0 1 2.102 3.139l-.57 2.087a.5.5 0 0 0 .483.632h3.405a2 2 0 0 1 1.962 2.392l-1.2 6A2 2 0 0 1 17.36 20H5a1 1 0 0 1-1-1v-7a1 1 0 0 1 1-1zm9.86 7.5H9v-6.78q.2-.175.436-.41a10.2 10.2 0 0 0 1.906-2.64l.24-.48.004-.009.37-.74c.046-.092-.028.056.018-.035l.611-1.222.006-.011.276-.553.087.01a1 1 0 0 1 .84 1.256l-.569 2.088a2 2 0 0 0 1.93 2.526h3.405a.5.5 0 0 1 .49.598l-1.2 6a.5.5 0 0 1-.49.402m-9.86-6h-2v6h2z",clipRule:"evenodd"}));
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
export function ThumbsUp(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:"M13.858 4.107a2 2 0 0 1 1.569 2.494l-.582 2.136A1 1 0 0 0 15.809 10h2.751a2 2 0 0 1 1.962 2.392l-1.2 6A2 2 0 0 1 17.36 20H9.5a1 1 0 0 1-1-1v-6.394c0-1.004.513-1.932 1.238-2.625A9 9 0 0 0 11 8.5c.786-1.18 1.741-3.287 2.113-4.133a.505.505 0 0 1 .553-.295zM5 11a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-7a1 1 0 0 0-1-1z"}));
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
export function TriangleDownFill(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:"m4 7 8 10 8-10z"}));
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
export function TriangleDownOutline(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:"M4 7h16l-8 10zm3.12 1.5h9.76L12 14.599z",clipRule:"evenodd"}));
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
export function TriangleUpFill(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", {d:"m4 17 8-10 8 10z"}));
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
export function TriangleUpOutline(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:"M4 17h16L12 7zm3.12-1.5h9.76L12 9.401z",clipRule:"evenodd"}));
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
export const reactionIcons = {
|
|
364
|
+
'arrow-thick-down-fill': ArrowThickDownFill,
|
|
365
|
+
'arrow-thick-down-outline': ArrowThickDownOutline,
|
|
366
|
+
'arrow-thick-up-fill': ArrowThickUpFill,
|
|
367
|
+
'arrow-thick-up-outline': ArrowThickUpOutline,
|
|
368
|
+
'arrow-thin-down-fill': ArrowThinDownFill,
|
|
369
|
+
'arrow-thin-down-outline': ArrowThinDownOutline,
|
|
370
|
+
'arrow-thin-up-fill': ArrowThinUpFill,
|
|
371
|
+
'arrow-thin-up-outline': ArrowThinUpOutline,
|
|
372
|
+
'bookmark-fill': BookmarkFill,
|
|
373
|
+
'bookmark-outline': BookmarkOutline,
|
|
374
|
+
'chevron-down-fill': ChevronDownFill,
|
|
375
|
+
'chevron-down-outline': ChevronDownOutline,
|
|
376
|
+
'chevron-up-fill': ChevronUpFill,
|
|
377
|
+
'chevron-up-outline': ChevronUpOutline,
|
|
378
|
+
'clap-fill': ClapFill,
|
|
379
|
+
'clap-outline': ClapOutline,
|
|
380
|
+
'exclamation-point-fill': ExclamationPointFill,
|
|
381
|
+
'exclamation-point-outline': ExclamationPointOutline,
|
|
382
|
+
'heart-fill': HeartFill,
|
|
383
|
+
'heart-outline': HeartOutline,
|
|
384
|
+
'laughing-fill': LaughingFill,
|
|
385
|
+
'laughing-outline': LaughingOutline,
|
|
386
|
+
'question-mark-fill': QuestionMarkFill,
|
|
387
|
+
'question-mark-outline': QuestionMarkOutline,
|
|
388
|
+
'star-fill': StarFill,
|
|
389
|
+
'star-outline': StarOutline,
|
|
390
|
+
'star-shine-fill': StarShineFill,
|
|
391
|
+
'star-shine-outline': StarShineOutline,
|
|
392
|
+
'thumbs-down-fill': ThumbsDownFill,
|
|
393
|
+
'thumbs-down-outline': ThumbsDownOutline,
|
|
394
|
+
'thumbs-up-outline': ThumbsUpOutline,
|
|
395
|
+
'thumbs-up': ThumbsUp,
|
|
396
|
+
'triangle-down-fill': TriangleDownFill,
|
|
397
|
+
'triangle-down-outline': TriangleDownOutline,
|
|
398
|
+
'triangle-up-fill': TriangleUpFill,
|
|
399
|
+
'triangle-up-outline': TriangleUpOutline,
|
|
400
|
+
};
|