@lism-css/ui 0.9.2 → 0.10.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.
Files changed (189) hide show
  1. package/README.ja.md +137 -0
  2. package/README.md +93 -5
  3. package/dist/components/Accordion/getProps.js +53 -0
  4. package/dist/components/Accordion/react/AccIcon.js +9 -0
  5. package/dist/components/Accordion/react/Accordion.d.ts +5 -6
  6. package/dist/components/Accordion/react/Accordion.js +45 -0
  7. package/dist/components/Accordion/react/index.js +6 -0
  8. package/dist/components/Alert/getProps.js +20 -0
  9. package/dist/components/Alert/presets.js +29 -0
  10. package/dist/components/Alert/react/Alert.js +16 -0
  11. package/dist/components/Avatar/react/Avatar.js +8 -0
  12. package/dist/components/Badge/react/Badge.js +12 -0
  13. package/dist/components/Button/react/Button.js +12 -0
  14. package/dist/components/Callout/getProps.js +22 -0
  15. package/dist/components/Callout/presets.js +29 -0
  16. package/dist/components/Callout/react/Callout.js +20 -0
  17. package/dist/components/Chat/getProps.js +47 -0
  18. package/dist/components/Chat/react/Chat.js +22 -0
  19. package/dist/components/Details/getProps.js +15 -0
  20. package/dist/components/Details/react/Details.js +28 -0
  21. package/dist/components/Details/react/index.js +5 -0
  22. package/dist/components/DummyImage/astro/index.d.ts +1 -0
  23. package/dist/components/DummyImage/react/DummyImage.d.ts +2 -0
  24. package/dist/components/DummyImage/react/DummyImage.js +8 -0
  25. package/dist/components/DummyImage/react/index.d.ts +1 -0
  26. package/dist/components/DummyText/astro/index.d.ts +1 -0
  27. package/dist/components/DummyText/getContent.d.ts +11 -0
  28. package/dist/components/DummyText/getContent.js +9 -0
  29. package/dist/components/DummyText/react/DummyText.d.ts +10 -0
  30. package/dist/components/DummyText/react/DummyText.js +10 -0
  31. package/dist/components/DummyText/react/index.d.ts +1 -0
  32. package/dist/components/DummyText/texts.d.ts +22 -0
  33. package/dist/components/DummyText/texts.js +39 -0
  34. package/dist/components/Modal/getProps.js +25 -0
  35. package/dist/components/Modal/react/Body.js +9 -0
  36. package/dist/components/Modal/react/CloseBtn.js +13 -0
  37. package/dist/components/Modal/react/Inner.js +9 -0
  38. package/dist/components/Modal/react/Modal.d.ts +1 -2
  39. package/dist/components/Modal/react/Modal.js +17 -0
  40. package/dist/components/Modal/react/OpenBtn.js +9 -0
  41. package/dist/components/Modal/react/index.js +9 -0
  42. package/dist/components/Modal/setModal.js +16 -17
  43. package/dist/components/NavMenu/getProps.js +40 -0
  44. package/dist/components/NavMenu/react/NavMenu.js +24 -0
  45. package/dist/components/NavMenu/react/index.js +5 -0
  46. package/dist/components/ShapeDivider/getProps.js +22 -0
  47. package/dist/components/ShapeDivider/react/ShapeDivider.js +26 -0
  48. package/dist/components/Tabs/getProps.js +10 -0
  49. package/dist/components/Tabs/react/Tab.js +9 -0
  50. package/dist/components/Tabs/react/TabItem.js +7 -0
  51. package/dist/components/Tabs/react/TabList.js +8 -0
  52. package/dist/components/Tabs/react/TabPanel.js +9 -0
  53. package/dist/components/Tabs/react/Tabs.d.ts +1 -2
  54. package/dist/components/Tabs/react/Tabs.js +48 -0
  55. package/dist/components/Tabs/react/index.js +9 -0
  56. package/dist/components/Tabs/setTabs.js +10 -11
  57. package/dist/components/astro.d.ts +2 -0
  58. package/dist/components/react.d.ts +2 -0
  59. package/dist/components/react.js +30 -0
  60. package/dist/lism-css/dist/components/Center/index.js +8 -0
  61. package/dist/lism-css/dist/components/Flex/index.js +8 -0
  62. package/dist/lism-css/dist/components/Flow/index.js +8 -0
  63. package/dist/lism-css/dist/components/Frame/index.js +8 -0
  64. package/dist/lism-css/dist/components/Grid/index.js +8 -0
  65. package/dist/lism-css/dist/components/Lism/index.js +8 -0
  66. package/dist/lism-css/dist/components/Stack/index.js +8 -0
  67. package/dist/lism-css/dist/components/atomic/Decorator/getProps.js +15 -0
  68. package/dist/lism-css/dist/components/atomic/Decorator/index.js +9 -0
  69. package/dist/lism-css/dist/components/atomic/Icon/SVG.js +22 -0
  70. package/dist/lism-css/dist/components/atomic/Icon/getProps.js +56 -0
  71. package/dist/lism-css/dist/components/atomic/Icon/index.js +12 -0
  72. package/dist/lism-css/dist/components/atomic/Icon/presets.js +276 -0
  73. package/dist/lism-css/dist/config/default-config.js +11 -0
  74. package/dist/lism-css/dist/config/defaults/props.js +340 -0
  75. package/dist/lism-css/dist/config/defaults/states.js +39 -0
  76. package/dist/lism-css/dist/config/defaults/tokens.js +30 -0
  77. package/dist/lism-css/dist/config/helper/getSvgUrl.js +4 -0
  78. package/dist/lism-css/dist/config/helper.js +27 -0
  79. package/dist/lism-css/dist/config/index.js +17 -0
  80. package/dist/lism-css/dist/lib/getBpData.js +19 -0
  81. package/dist/lism-css/dist/lib/getLayoutProps.js +30 -0
  82. package/dist/lism-css/dist/lib/getLismProps.js +188 -0
  83. package/dist/lism-css/dist/lib/getMaybeCssVar.js +42 -0
  84. package/dist/lism-css/dist/lib/getMaybeTokenValue.js +26 -0
  85. package/dist/lism-css/dist/lib/getUtilKey.js +13 -0
  86. package/dist/lism-css/dist/lib/helper/atts.js +11 -0
  87. package/dist/lism-css/dist/lib/helper/filterEmptyObj.js +10 -0
  88. package/dist/lism-css/dist/lib/helper/hasSomeKeys.js +6 -0
  89. package/dist/lism-css/dist/lib/helper/isEmptyObj.js +6 -0
  90. package/dist/lism-css/dist/lib/helper/isNumStr.js +6 -0
  91. package/dist/lism-css/dist/lib/helper/splitWithComma.js +6 -0
  92. package/dist/lism-css/dist/lib/isPresetValue.js +13 -0
  93. package/dist/lism-css/dist/lib/isTokenValue.js +27 -0
  94. package/dist/style.css +1 -1
  95. package/dist/ui.css +1 -0
  96. package/package.json +9 -7
  97. package/src/components/Accordion/_style.css +69 -69
  98. package/src/components/Accordion/astro/Button.astro +2 -2
  99. package/src/components/Accordion/astro/Heading.astro +1 -1
  100. package/src/components/Accordion/astro/Item.astro +7 -7
  101. package/src/components/Accordion/astro/Panel.astro +3 -3
  102. package/src/components/Accordion/astro/Root.astro +3 -3
  103. package/src/components/Accordion/getProps.js +54 -54
  104. package/src/components/Accordion/react/AccIcon.jsx +1 -1
  105. package/src/components/Accordion/react/Accordion.jsx +37 -36
  106. package/src/components/Accordion/script.js +1 -1
  107. package/src/components/Accordion/setAccordion.js +93 -93
  108. package/src/components/Alert/astro/Alert.astro +6 -6
  109. package/src/components/Alert/getProps.ts +22 -22
  110. package/src/components/Alert/presets.ts +26 -26
  111. package/src/components/Alert/react/Alert.tsx +9 -9
  112. package/src/components/Avatar/astro/Avatar.astro +2 -2
  113. package/src/components/Avatar/react/Avatar.jsx +5 -5
  114. package/src/components/Badge/_style.css +14 -14
  115. package/src/components/Badge/astro/Badge.astro +4 -4
  116. package/src/components/Badge/react/Badge.jsx +6 -6
  117. package/src/components/Button/_style.css +29 -29
  118. package/src/components/Button/astro/Button.astro +4 -4
  119. package/src/components/Button/react/Button.jsx +6 -6
  120. package/src/components/Callout/astro/Callout.astro +13 -13
  121. package/src/components/Callout/getProps.ts +24 -24
  122. package/src/components/Callout/presets.ts +26 -26
  123. package/src/components/Callout/react/Callout.tsx +16 -16
  124. package/src/components/Chat/_style.css +49 -49
  125. package/src/components/Chat/astro/Chat.astro +27 -27
  126. package/src/components/Chat/getProps.js +40 -45
  127. package/src/components/Chat/react/Chat.jsx +17 -17
  128. package/src/components/Details/_style.css +39 -39
  129. package/src/components/Details/astro/Content.astro +3 -3
  130. package/src/components/Details/astro/Details.astro +1 -1
  131. package/src/components/Details/astro/Icon.astro +1 -1
  132. package/src/components/Details/astro/Summary.astro +2 -2
  133. package/src/components/Details/astro/Title.astro +1 -1
  134. package/src/components/Details/getProps.js +7 -7
  135. package/src/components/Details/react/Details.jsx +24 -24
  136. package/src/components/DummyImage/astro/DummyImage.astro +7 -0
  137. package/src/components/DummyImage/astro/index.ts +1 -0
  138. package/src/components/DummyImage/react/DummyImage.tsx +5 -0
  139. package/src/components/DummyImage/react/index.ts +1 -0
  140. package/src/components/DummyText/astro/DummyText.astro +9 -0
  141. package/src/components/DummyText/astro/index.ts +1 -0
  142. package/src/components/DummyText/getContent.ts +39 -0
  143. package/src/components/DummyText/react/DummyText.tsx +15 -0
  144. package/src/components/DummyText/react/index.ts +1 -0
  145. package/src/components/DummyText/texts.ts +39 -0
  146. package/src/components/Modal/_style.css +34 -34
  147. package/src/components/Modal/astro/Body.astro +1 -1
  148. package/src/components/Modal/astro/CloseBtn.astro +10 -10
  149. package/src/components/Modal/astro/Inner.astro +1 -1
  150. package/src/components/Modal/astro/Modal.astro +3 -3
  151. package/src/components/Modal/astro/OpenBtn.astro +1 -1
  152. package/src/components/Modal/getProps.js +19 -19
  153. package/src/components/Modal/react/Body.jsx +5 -5
  154. package/src/components/Modal/react/CloseBtn.jsx +13 -13
  155. package/src/components/Modal/react/Inner.jsx +1 -1
  156. package/src/components/Modal/react/Modal.jsx +12 -11
  157. package/src/components/Modal/react/OpenBtn.jsx +5 -5
  158. package/src/components/Modal/script.js +1 -1
  159. package/src/components/Modal/setModal.ts +92 -92
  160. package/src/components/NavMenu/_style.css +17 -17
  161. package/src/components/NavMenu/astro/Item.astro +1 -1
  162. package/src/components/NavMenu/astro/Link.astro +1 -1
  163. package/src/components/NavMenu/astro/Nest.astro +1 -1
  164. package/src/components/NavMenu/astro/Root.astro +1 -1
  165. package/src/components/NavMenu/getProps.js +28 -28
  166. package/src/components/NavMenu/react/NavMenu.jsx +4 -4
  167. package/src/components/ShapeDivider/_style.css +51 -51
  168. package/src/components/ShapeDivider/astro/ShapeDivider.astro +20 -20
  169. package/src/components/ShapeDivider/getProps.js +23 -23
  170. package/src/components/ShapeDivider/react/ShapeDivider.jsx +24 -24
  171. package/src/components/Tabs/_style.css +29 -29
  172. package/src/components/Tabs/astro/Tab.astro +2 -2
  173. package/src/components/Tabs/astro/TabItem.astro +1 -1
  174. package/src/components/Tabs/astro/TabList.astro +2 -2
  175. package/src/components/Tabs/astro/TabPanel.astro +2 -2
  176. package/src/components/Tabs/astro/Tabs.astro +20 -20
  177. package/src/components/Tabs/astro/transformTabitems.js +30 -30
  178. package/src/components/Tabs/getProps.js +4 -4
  179. package/src/components/Tabs/react/Tab.jsx +4 -12
  180. package/src/components/Tabs/react/TabItem.jsx +1 -1
  181. package/src/components/Tabs/react/TabList.jsx +2 -2
  182. package/src/components/Tabs/react/TabPanel.jsx +2 -2
  183. package/src/components/Tabs/react/Tabs.jsx +46 -47
  184. package/src/components/Tabs/script.js +4 -4
  185. package/src/components/Tabs/setTabs.js +70 -70
  186. package/src/components/astro.ts +2 -0
  187. package/src/components/react.ts +2 -0
  188. package/src/helper/animation.ts +10 -10
  189. package/src/helper/uuid.js +3 -3
@@ -10,3 +10,5 @@ export { default as Modal } from './Modal/astro';
10
10
  export { default as NavMenu } from './NavMenu/astro';
11
11
  export { default as ShapeDivider } from './ShapeDivider/astro';
12
12
  export { default as Tabs } from './Tabs/astro';
13
+ export { default as DummyText } from './DummyText/astro';
14
+ export { default as DummyImage } from './DummyImage/astro';
@@ -10,3 +10,5 @@ export { default as Modal } from './Modal/react';
10
10
  export { default as NavMenu } from './NavMenu/react';
11
11
  export { default as ShapeDivider } from './ShapeDivider/react';
12
12
  export { default as Tabs } from './Tabs/react';
13
+ export { default as DummyText } from './DummyText/react';
14
+ export { default as DummyImage } from './DummyImage/react';
@@ -0,0 +1,30 @@
1
+ import { default as t } from "./Accordion/react/index.js";
2
+ import { default as r } from "./Details/react/index.js";
3
+ import { default as l } from "./Modal/react/index.js";
4
+ import { default as u } from "./NavMenu/react/index.js";
5
+ import { default as s } from "./Tabs/react/index.js";
6
+ import { default as x } from "./Alert/react/Alert.js";
7
+ import { default as D } from "./Avatar/react/Avatar.js";
8
+ import { default as v } from "./Badge/react/Badge.js";
9
+ import { default as c } from "./Button/react/Button.js";
10
+ import { default as h } from "./Callout/react/Callout.js";
11
+ import { default as B } from "./Chat/react/Chat.js";
12
+ import { default as M } from "./DummyImage/react/DummyImage.js";
13
+ import { default as b } from "./DummyText/react/DummyText.js";
14
+ import { default as N } from "./ShapeDivider/react/ShapeDivider.js";
15
+ export {
16
+ t as Accordion,
17
+ x as Alert,
18
+ D as Avatar,
19
+ v as Badge,
20
+ c as Button,
21
+ h as Callout,
22
+ B as Chat,
23
+ r as Details,
24
+ M as DummyImage,
25
+ b as DummyText,
26
+ l as Modal,
27
+ u as NavMenu,
28
+ N as ShapeDivider,
29
+ s as Tabs
30
+ };
@@ -0,0 +1,8 @@
1
+ import { jsx as t } from "react/jsx-runtime";
2
+ import o from "../Lism/index.js";
3
+ function n(r) {
4
+ return /* @__PURE__ */ t(o, { layout: "center", ...r });
5
+ }
6
+ export {
7
+ n as default
8
+ };
@@ -0,0 +1,8 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ import t from "../Lism/index.js";
3
+ function e(o) {
4
+ return /* @__PURE__ */ r(t, { layout: "flex", ...o });
5
+ }
6
+ export {
7
+ e as default
8
+ };
@@ -0,0 +1,8 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ import t from "../Lism/index.js";
3
+ function m(o) {
4
+ return /* @__PURE__ */ r(t, { layout: "flow", ...o });
5
+ }
6
+ export {
7
+ m as default
8
+ };
@@ -0,0 +1,8 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ import t from "../Lism/index.js";
3
+ function m(r) {
4
+ return /* @__PURE__ */ o(t, { layout: "frame", ...r });
5
+ }
6
+ export {
7
+ m as default
8
+ };
@@ -0,0 +1,8 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ import t from "../Lism/index.js";
3
+ function m(r) {
4
+ return /* @__PURE__ */ o(t, { layout: "grid", ...r });
5
+ }
6
+ export {
7
+ m as default
8
+ };
@@ -0,0 +1,8 @@
1
+ import { jsx as t } from "react/jsx-runtime";
2
+ import f from "../../lib/getLismProps.js";
3
+ function m({ children: r, as: o, exProps: e, ...i }) {
4
+ return /* @__PURE__ */ t(o || "div", { ...f(i), ...e, children: r });
5
+ }
6
+ export {
7
+ m as default
8
+ };
@@ -0,0 +1,8 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ import r from "../Lism/index.js";
3
+ function m(t) {
4
+ return /* @__PURE__ */ o(r, { layout: "stack", ...t });
5
+ }
6
+ export {
7
+ m as default
8
+ };
@@ -0,0 +1,15 @@
1
+ import c from "../../../lib/helper/atts.js";
2
+ function d({ lismClass: e, size: s, clipPath: a, boxSizing: r, style: l, ...n }) {
3
+ const i = l ?? {};
4
+ a && (i.clipPath = a), r && (i.boxSizing = r);
5
+ const t = { ...n };
6
+ s && (t.ar = "1/1", t.w = s), t.style = i;
7
+ const o = {
8
+ lismClass: c(e, "a--decorator"),
9
+ "aria-hidden": "true"
10
+ };
11
+ return Object.assign(o, t);
12
+ }
13
+ export {
14
+ d as default
15
+ };
@@ -0,0 +1,9 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ import t from "./getProps.js";
3
+ import f from "../../Lism/index.js";
4
+ function e(r) {
5
+ return /* @__PURE__ */ o(f, { ...t(r) });
6
+ }
7
+ export {
8
+ e as default
9
+ };
@@ -0,0 +1,22 @@
1
+ import { jsx as o, jsxs as w } from "react/jsx-runtime";
2
+ function f({ size: e = "1em", fill: l = "currentColor", viewBox: t = "0 0 24 24", path: i, children: r, __html: s, ...h }) {
3
+ return s ? /* @__PURE__ */ o(
4
+ "svg",
5
+ {
6
+ dangerouslySetInnerHTML: { __html: s },
7
+ ...h,
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: t,
10
+ width: e,
11
+ height: e,
12
+ fill: l,
13
+ focusable: "false"
14
+ }
15
+ ) : /* @__PURE__ */ w("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: t, width: e, height: e, fill: l, focusable: "false", ...h, children: [
16
+ i && /* @__PURE__ */ o("path", { d: i }),
17
+ r
18
+ ] });
19
+ }
20
+ export {
21
+ f as default
22
+ };
@@ -0,0 +1,56 @@
1
+ import C from "./presets.js";
2
+ import h from "../../../lib/helper/atts.js";
3
+ function x(m) {
4
+ const a = {}, s = m.match(/<svg([^>]*?)>([\s\S]*?)<\/svg>/i);
5
+ if (s) {
6
+ const [, c, e] = s, p = /([\w-]+)=["']([^"']*)["']/g;
7
+ let o;
8
+ for (; (o = p.exec(c)) !== null; ) {
9
+ const [, i, f] = o;
10
+ if (i === "style") {
11
+ const g = {};
12
+ f.split(";").forEach((l) => {
13
+ const [n, r] = l.split(":").map((t) => t.trim());
14
+ n && r && (g[n] = r);
15
+ }), a[i] = g;
16
+ } else
17
+ a[i] = f;
18
+ }
19
+ return { svgProps: a, svgContent: e };
20
+ }
21
+ return {};
22
+ }
23
+ function b({ lismClass: m, as: a, icon: s, label: c, exProps: e = {}, ...p }) {
24
+ let o = a || "span", i = "";
25
+ const {
26
+ style: f = {},
27
+ className: g = "",
28
+ ...l
29
+ } = p;
30
+ let n = f, r = g;
31
+ if (l.viewBox) {
32
+ o = "svg";
33
+ const t = l.size;
34
+ t && delete l.size, l.width || (e.width = t || "1em"), l.height || (e.height = t || "1em");
35
+ } else if (l.src)
36
+ o = "img";
37
+ else if (s)
38
+ if (typeof s == "string")
39
+ if (s.startsWith("<svg")) {
40
+ o = "_SVG_";
41
+ const { svgProps: t = {}, svgContent: u = "" } = x(s), { class: v, style: d, ...y } = t;
42
+ r = h(r, v), n = { ...n, ...d }, e = { ...e, ...y, fill: "currentColor" }, i = u;
43
+ } else {
44
+ const t = C[s] || null;
45
+ t != null && (o = "_SVG_", e = { ...e, ...t });
46
+ }
47
+ else if (typeof s == "object" && s.as) {
48
+ const { as: t, ...u } = s;
49
+ o = t, e = { ...e, ...u };
50
+ } else
51
+ o = s;
52
+ return c ? (e["aria-label"] = c, e.role = "img") : e["aria-hidden"] = "true", l.lismClass = h(m, "a--icon", r), l.style = { ...n }, { Component: o, lismProps: l, exProps: e, content: i };
53
+ }
54
+ export {
55
+ b as default
56
+ };
@@ -0,0 +1,12 @@
1
+ import { jsx as i } from "react/jsx-runtime";
2
+ import f from "../../../lib/getLismProps.js";
3
+ import l from "./getProps.js";
4
+ import s from "./SVG.js";
5
+ function d({ children: e, ...n }) {
6
+ const { Component: r, lismProps: p, exProps: t = {}, content: m } = l(n);
7
+ let o;
8
+ return r === "_SVG_" ? (o = s, m && (t.__html = m)) : o = r, /* @__PURE__ */ i(o, { ...f(p), ...t, children: e });
9
+ }
10
+ export {
11
+ d as default
12
+ };
@@ -0,0 +1,276 @@
1
+ const a = {
2
+ folder: {
3
+ viewBox: "0 0 256 256",
4
+ path: "M216,72H130.67L102.93,51.2a16.12,16.12,0,0,0-9.6-3.2H40A16,16,0,0,0,24,64V200a16,16,0,0,0,16,16H216.89A15.13,15.13,0,0,0,232,200.89V88A16,16,0,0,0,216,72Zm0,128H40V64H93.33L123.2,86.4A8,8,0,0,0,128,88h88Z"
5
+ },
6
+ tag: {
7
+ viewBox: "0 0 256 256",
8
+ path: "M243.31,136,144,36.69A15.86,15.86,0,0,0,132.69,32H40a8,8,0,0,0-8,8v92.69A15.86,15.86,0,0,0,36.69,144L136,243.31a16,16,0,0,0,22.63,0l84.68-84.68a16,16,0,0,0,0-22.63Zm-96,96L48,132.69V48h84.69L232,147.31ZM96,84A12,12,0,1,1,84,72,12,12,0,0,1,96,84Z"
9
+ },
10
+ calendar: {
11
+ viewBox: "0 0 256 256",
12
+ path: "M208,32H184V24a8,8,0,0,0-16,0v8H88V24a8,8,0,0,0-16,0v8H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM72,48v8a8,8,0,0,0,16,0V48h80v8a8,8,0,0,0,16,0V48h24V80H48V48ZM208,208H48V96H208V208Zm-68-76a12,12,0,1,1-12-12A12,12,0,0,1,140,132Zm44,0a12,12,0,1,1-12-12A12,12,0,0,1,184,132ZM96,172a12,12,0,1,1-12-12A12,12,0,0,1,96,172Zm44,0a12,12,0,1,1-12-12A12,12,0,0,1,140,172Zm44,0a12,12,0,1,1-12-12A12,12,0,0,1,184,172Z"
13
+ },
14
+ clock: {
15
+ viewBox: "0 0 256 256",
16
+ path: "M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm64-88a8,8,0,0,1-8,8H128a8,8,0,0,1-8-8V72a8,8,0,0,1,16,0v48h48A8,8,0,0,1,192,128Z"
17
+ },
18
+ clockwise: {
19
+ viewBox: "0 0 256 256",
20
+ path: "M136,80v43.47l36.12,21.67a8,8,0,0,1-8.24,13.72l-40-24A8,8,0,0,1,120,128V80a8,8,0,0,1,16,0Zm88-24a8,8,0,0,0-8,8V82c-6.35-7.36-12.83-14.45-20.12-21.83a96,96,0,1,0-2,137.7,8,8,0,0,0-11-11.64A80,80,0,1,1,184.54,71.4C192.68,79.64,199.81,87.58,207,96H184a8,8,0,0,0,0,16h40a8,8,0,0,0,8-8V64A8,8,0,0,0,224,56Z"
21
+ },
22
+ check: {
23
+ viewBox: "0 0 256 256",
24
+ path: "M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"
25
+ },
26
+ "check-circle": {
27
+ viewBox: "0 0 256 256",
28
+ path: "M173.66,98.34a8,8,0,0,1,0,11.32l-56,56a8,8,0,0,1-11.32,0l-24-24a8,8,0,0,1,11.32-11.32L112,148.69l50.34-50.35A8,8,0,0,1,173.66,98.34ZM232,128A104,104,0,1,1,128,24,104.11,104.11,0,0,1,232,128Zm-16,0a88,88,0,1,0-88,88A88.1,88.1,0,0,0,216,128Z"
29
+ },
30
+ // prohibit
31
+ ban: {
32
+ viewBox: "0 0 256 256",
33
+ path: "M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm88,104a87.56,87.56,0,0,1-20.41,56.28L71.72,60.4A88,88,0,0,1,216,128ZM40,128A87.56,87.56,0,0,1,60.41,71.72L184.28,195.6A88,88,0,0,1,40,128Z"
34
+ },
35
+ alert: {
36
+ viewBox: "0 0 256 256",
37
+ path: "M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm-8-80V80a8,8,0,0,1,16,0v56a8,8,0,0,1-16,0Zm20,36a12,12,0,1,1-12-12A12,12,0,0,1,140,172Z"
38
+ },
39
+ // 'alert-fill': {
40
+ // viewBox: '0 0 256 256',
41
+ // path: 'M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm-8,56a8,8,0,0,1,16,0v56a8,8,0,0,1-16,0Zm8,104a12,12,0,1,1,12-12A12,12,0,0,1,128,184Z',
42
+ // },
43
+ warning: {
44
+ viewBox: "0 0 256 256",
45
+ path: "M236.8,188.09,149.35,36.22h0a24.76,24.76,0,0,0-42.7,0L19.2,188.09a23.51,23.51,0,0,0,0,23.72A24.35,24.35,0,0,0,40.55,224h174.9a24.35,24.35,0,0,0,21.33-12.19A23.51,23.51,0,0,0,236.8,188.09ZM222.93,203.8a8.5,8.5,0,0,1-7.48,4.2H40.55a8.5,8.5,0,0,1-7.48-4.2,7.59,7.59,0,0,1,0-7.72L120.52,44.21a8.75,8.75,0,0,1,15,0l87.45,151.87A7.59,7.59,0,0,1,222.93,203.8ZM120,144V104a8,8,0,0,1,16,0v40a8,8,0,0,1-16,0Zm20,36a12,12,0,1,1-12-12A12,12,0,0,1,140,180Z"
46
+ },
47
+ // 'warning-fill': {
48
+ // viewBox: '0 0 256 256',
49
+ // path: 'M236.8,188.09,149.35,36.22h0a24.76,24.76,0,0,0-42.7,0L19.2,188.09a23.51,23.51,0,0,0,0,23.72A24.35,24.35,0,0,0,40.55,224h174.9a24.35,24.35,0,0,0,21.33-12.19A23.51,23.51,0,0,0,236.8,188.09ZM120,104a8,8,0,0,1,16,0v40a8,8,0,0,1-16,0Zm8,88a12,12,0,1,1,12-12A12,12,0,0,1,128,192Z',
50
+ // },
51
+ question: {
52
+ viewBox: "0 0 256 256",
53
+ path: "M140,180a12,12,0,1,1-12-12A12,12,0,0,1,140,180ZM128,72c-22.06,0-40,16.15-40,36v4a8,8,0,0,0,16,0v-4c0-11,10.77-20,24-20s24,9,24,20-10.77,20-24,20a8,8,0,0,0-8,8v8a8,8,0,0,0,16,0v-.72c18.24-3.35,32-17.9,32-35.28C168,88.15,150.06,72,128,72Zm104,56A104,104,0,1,1,128,24,104.11,104.11,0,0,1,232,128Zm-16,0a88,88,0,1,0-88,88A88.1,88.1,0,0,0,216,128Z"
54
+ },
55
+ // 'question-fill': {
56
+ // viewBox: '0 0 256 256',
57
+ // path: 'M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,168a12,12,0,1,1,12-12A12,12,0,0,1,128,192Zm8-48.72V144a8,8,0,0,1-16,0v-8a8,8,0,0,1,8-8c13.23,0,24-9,24-20s-10.77-20-24-20-24,9-24,20v4a8,8,0,0,1-16,0v-4c0-19.85,17.94-36,40-36s40,16.15,40,36C168,125.38,154.24,139.93,136,143.28Z',
58
+ // },
59
+ info: {
60
+ viewBox: "0 0 256 256",
61
+ path: "M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm16-40a8,8,0,0,1-8,8,16,16,0,0,1-16-16V128a8,8,0,0,1,0-16,16,16,0,0,1,16,16v40A8,8,0,0,1,144,176ZM112,84a12,12,0,1,1,12,12A12,12,0,0,1,112,84Z"
62
+ },
63
+ // 'info-fill': {
64
+ // viewBox: '0 0 256 256',
65
+ // path: 'M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm-4,48a12,12,0,1,1-12,12A12,12,0,0,1,124,72Zm12,112a16,16,0,0,1-16-16V128a8,8,0,0,1,0-16,16,16,0,0,1,16,16v40a8,8,0,0,1,0,16Z',
66
+ // },
67
+ good: {
68
+ viewBox: "0 0 256 256",
69
+ path: "M234,80.12A24,24,0,0,0,216,72H160V56a40,40,0,0,0-40-40,8,8,0,0,0-7.16,4.42L75.06,96H32a16,16,0,0,0-16,16v88a16,16,0,0,0,16,16H204a24,24,0,0,0,23.82-21l12-96A24,24,0,0,0,234,80.12ZM32,112H72v88H32ZM223.94,97l-12,96a8,8,0,0,1-7.94,7H88V105.89l36.71-73.43A24,24,0,0,1,144,56V80a8,8,0,0,0,8,8h64a8,8,0,0,1,7.94,9Z"
70
+ },
71
+ bad: {
72
+ viewBox: "0 0 256 256",
73
+ path: "M239.82,157l-12-96A24,24,0,0,0,204,40H32A16,16,0,0,0,16,56v88a16,16,0,0,0,16,16H75.06l37.78,75.58A8,8,0,0,0,120,240a40,40,0,0,0,40-40V184h56a24,24,0,0,0,23.82-27ZM72,144H32V56H72Zm150,21.29a7.88,7.88,0,0,1-6,2.71H152a8,8,0,0,0-8,8v24a24,24,0,0,1-19.29,23.54L88,150.11V56H204a8,8,0,0,1,7.94,7l12,96A7.87,7.87,0,0,1,222,165.29Z"
74
+ },
75
+ bookmark: {
76
+ viewBox: "0 0 256 256",
77
+ path: "M184,32H72A16,16,0,0,0,56,48V224a8,8,0,0,0,12.24,6.78L128,193.43l59.77,37.35A8,8,0,0,0,200,224V48A16,16,0,0,0,184,32Zm0,177.57-51.77-32.35a8,8,0,0,0-8.48,0L72,209.57V48H184Z"
78
+ },
79
+ "bookmark-fill": {
80
+ viewBox: "0 0 256 256",
81
+ path: "M184,32H72A16,16,0,0,0,56,48V224a8,8,0,0,0,12.24,6.78L128,193.43l59.77,37.35A8,8,0,0,0,200,224V48A16,16,0,0,0,184,32Z"
82
+ },
83
+ heart: {
84
+ viewBox: "0 0 256 256",
85
+ path: "M178,40c-20.65,0-38.73,8.88-50,23.89C116.73,48.88,98.65,40,78,40a62.07,62.07,0,0,0-62,62c0,70,103.79,126.66,108.21,129a8,8,0,0,0,7.58,0C136.21,228.66,240,172,240,102A62.07,62.07,0,0,0,178,40ZM128,214.8C109.74,204.16,32,155.69,32,102A46.06,46.06,0,0,1,78,56c19.45,0,35.78,10.36,42.6,27a8,8,0,0,0,14.8,0c6.82-16.67,23.15-27,42.6-27a46.06,46.06,0,0,1,46,46C224,155.61,146.24,204.15,128,214.8Z"
86
+ },
87
+ "heart-fill": {
88
+ viewBox: "0 0 256 256",
89
+ path: "M240,102c0,70-103.79,126.66-108.21,129a8,8,0,0,1-7.58,0C119.79,228.66,16,172,16,102A62.07,62.07,0,0,1,78,40c20.65,0,38.73,8.88,50,23.89C139.27,48.88,157.35,40,178,40A62.07,62.07,0,0,1,240,102Z"
90
+ },
91
+ star: {
92
+ viewBox: "0 0 256 256",
93
+ path: "M239.2,97.29a16,16,0,0,0-13.81-11L166,81.17,142.72,25.81h0a15.95,15.95,0,0,0-29.44,0L90.07,81.17,30.61,86.32a16,16,0,0,0-9.11,28.06L66.61,153.8,53.09,212.34a16,16,0,0,0,23.84,17.34l51-31,51.11,31a16,16,0,0,0,23.84-17.34l-13.51-58.6,45.1-39.36A16,16,0,0,0,239.2,97.29Zm-15.22,5-45.1,39.36a16,16,0,0,0-5.08,15.71L187.35,216v0l-51.07-31a15.9,15.9,0,0,0-16.54,0l-51,31h0L82.2,157.4a16,16,0,0,0-5.08-15.71L32,102.35a.37.37,0,0,1,0-.09l59.44-5.14a16,16,0,0,0,13.35-9.75L128,32.08l23.2,55.29a16,16,0,0,0,13.35,9.75L224,102.26S224,102.32,224,102.33Z"
94
+ },
95
+ "star-fill": {
96
+ viewBox: "0 0 256 256",
97
+ path: "M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z"
98
+ },
99
+ "star-half": {
100
+ viewBox: "0 0 256 256",
101
+ path: "M239.2,97.29a16,16,0,0,0-13.81-11L166,81.17,142.72,25.81a15.95,15.95,0,0,0-29.44,0L90.07,81.17,30.61,86.31a16,16,0,0,0-9.11,28.07L66.61,153.8,53.09,212.34a16,16,0,0,0,23.84,17.34l51-31,51.11,31a16,16,0,0,0,23.84-17.34l-13.51-58.6,45.1-39.36A16,16,0,0,0,239.2,97.29Zm-15.22,5-45.1,39.36a16,16,0,0,0-5.08,15.71L187.35,216v0l-51.07-31a15.9,15.9,0,0,0-8.27-2.32V32.09h0l23.2,55.28a16,16,0,0,0,13.35,9.75L224,102.26S224,102.32,224,102.33Z"
102
+ },
103
+ book: {
104
+ viewBox: "0 0 256 256",
105
+ path: "M208,24H72A32,32,0,0,0,40,56V224a8,8,0,0,0,8,8H192a8,8,0,0,0,0-16H56a16,16,0,0,1,16-16H208a8,8,0,0,0,8-8V32A8,8,0,0,0,208,24Zm-8,160H72a31.82,31.82,0,0,0-16,4.29V56A16,16,0,0,1,72,40H200Z"
106
+ },
107
+ // 'book-open': {
108
+ // viewBox: '0 0 256 256',
109
+ // path: 'M224,48H160a40,40,0,0,0-32,16A40,40,0,0,0,96,48H32A16,16,0,0,0,16,64V192a16,16,0,0,0,16,16H96a24,24,0,0,1,24,24,8,8,0,0,0,16,0,24,24,0,0,1,24-24h64a16,16,0,0,0,16-16V64A16,16,0,0,0,224,48ZM96,192H32V64H96a24,24,0,0,1,24,24V200A39.81,39.81,0,0,0,96,192Zm128,0H160a39.81,39.81,0,0,0-24,8V88a24,24,0,0,1,24-24h64ZM160,88h40a8,8,0,0,1,0,16H160a8,8,0,0,1,0-16Zm48,40a8,8,0,0,1-8,8H160a8,8,0,0,1,0-16h40A8,8,0,0,1,208,128Zm0,32a8,8,0,0,1-8,8H160a8,8,0,0,1,0-16h40A8,8,0,0,1,208,160Z',
110
+ // },
111
+ note: {
112
+ viewBox: "0 0 256 256",
113
+ path: "M229.66,58.34l-32-32a8,8,0,0,0-11.32,0l-96,96A8,8,0,0,0,88,128v32a8,8,0,0,0,8,8h32a8,8,0,0,0,5.66-2.34l96-96A8,8,0,0,0,229.66,58.34ZM124.69,152H104V131.31l64-64L188.69,88ZM200,76.69,179.31,56,192,43.31,212.69,64ZM224,120v88a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V48A16,16,0,0,1,48,32h88a8,8,0,0,1,0,16H48V208H208V120a8,8,0,0,1,16,0Z"
114
+ },
115
+ chat: {
116
+ viewBox: "0 0 256 256",
117
+ path: "M116,128a12,12,0,1,1,12,12A12,12,0,0,1,116,128ZM84,140a12,12,0,1,0-12-12A12,12,0,0,0,84,140Zm88,0a12,12,0,1,0-12-12A12,12,0,0,0,172,140Zm60-76V192a16,16,0,0,1-16,16H83l-32.6,28.16-.09.07A15.89,15.89,0,0,1,40,240a16.13,16.13,0,0,1-6.8-1.52A15.85,15.85,0,0,1,24,224V64A16,16,0,0,1,40,48H216A16,16,0,0,1,232,64ZM40,224h0ZM216,64H40V224l34.77-30A8,8,0,0,1,80,192H216Z"
118
+ },
119
+ lightbulb: {
120
+ viewBox: "0 0 256 256",
121
+ path: "M176,232a8,8,0,0,1-8,8H88a8,8,0,0,1,0-16h80A8,8,0,0,1,176,232Zm40-128a87.55,87.55,0,0,1-33.64,69.21A16.24,16.24,0,0,0,176,186v6a16,16,0,0,1-16,16H96a16,16,0,0,1-16-16v-6a16,16,0,0,0-6.23-12.66A87.59,87.59,0,0,1,40,104.49C39.74,56.83,78.26,17.14,125.88,16A88,88,0,0,1,216,104Zm-16,0a72,72,0,0,0-73.74-72c-39,.92-70.47,33.39-70.26,72.39a71.65,71.65,0,0,0,27.64,56.3A32,32,0,0,1,96,186v6h64v-6a32.15,32.15,0,0,1,12.47-25.35A71.65,71.65,0,0,0,200,104Zm-16.11-9.34a57.6,57.6,0,0,0-46.56-46.55,8,8,0,0,0-2.66,15.78c16.57,2.79,30.63,16.85,33.44,33.45A8,8,0,0,0,176,104a9,9,0,0,0,1.35-.11A8,8,0,0,0,183.89,94.66Z"
122
+ },
123
+ link: {
124
+ viewBox: "0 0 256 256",
125
+ path: "M240,88.23a54.43,54.43,0,0,1-16,37L189.25,160a54.27,54.27,0,0,1-38.63,16h-.05A54.63,54.63,0,0,1,96,119.84a8,8,0,0,1,16,.45A38.62,38.62,0,0,0,150.58,160h0a38.39,38.39,0,0,0,27.31-11.31l34.75-34.75a38.63,38.63,0,0,0-54.63-54.63l-11,11A8,8,0,0,1,135.7,59l11-11A54.65,54.65,0,0,1,224,48,54.86,54.86,0,0,1,240,88.23ZM109,185.66l-11,11A38.41,38.41,0,0,1,70.6,208h0a38.63,38.63,0,0,1-27.29-65.94L78,107.31A38.63,38.63,0,0,1,144,135.71a8,8,0,0,0,16,.45A54.86,54.86,0,0,0,144,96a54.65,54.65,0,0,0-77.27,0L32,130.75A54.62,54.62,0,0,0,70.56,224h0a54.28,54.28,0,0,0,38.64-16l11-11A8,8,0,0,0,109,185.66Z"
126
+ },
127
+ cart: {
128
+ viewBox: "0 0 256 256",
129
+ path: "M230.14,58.87A8,8,0,0,0,224,56H62.68L56.6,22.57A8,8,0,0,0,48.73,16H24a8,8,0,0,0,0,16h18L67.56,172.29a24,24,0,0,0,5.33,11.27,28,28,0,1,0,44.4,8.44h45.42A27.75,27.75,0,0,0,160,204a28,28,0,1,0,28-28H91.17a8,8,0,0,1-7.87-6.57L80.13,152h116a24,24,0,0,0,23.61-19.71l12.16-66.86A8,8,0,0,0,230.14,58.87ZM104,204a12,12,0,1,1-12-12A12,12,0,0,1,104,204Zm96,0a12,12,0,1,1-12-12A12,12,0,0,1,200,204Zm4-74.57A8,8,0,0,1,196.1,136H77.22L65.59,72H214.41Z"
130
+ },
131
+ gear: {
132
+ viewBox: "0 0 256 256",
133
+ path: "M128,80a48,48,0,1,0,48,48A48.05,48.05,0,0,0,128,80Zm0,80a32,32,0,1,1,32-32A32,32,0,0,1,128,160Zm88-29.84q.06-2.16,0-4.32l14.92-18.64a8,8,0,0,0,1.48-7.06,107.21,107.21,0,0,0-10.88-26.25,8,8,0,0,0-6-3.93l-23.72-2.64q-1.48-1.56-3-3L186,40.54a8,8,0,0,0-3.94-6,107.71,107.71,0,0,0-26.25-10.87,8,8,0,0,0-7.06,1.49L130.16,40Q128,40,125.84,40L107.2,25.11a8,8,0,0,0-7.06-1.48A107.6,107.6,0,0,0,73.89,34.51a8,8,0,0,0-3.93,6L67.32,64.27q-1.56,1.49-3,3L40.54,70a8,8,0,0,0-6,3.94,107.71,107.71,0,0,0-10.87,26.25,8,8,0,0,0,1.49,7.06L40,125.84Q40,128,40,130.16L25.11,148.8a8,8,0,0,0-1.48,7.06,107.21,107.21,0,0,0,10.88,26.25,8,8,0,0,0,6,3.93l23.72,2.64q1.49,1.56,3,3L70,215.46a8,8,0,0,0,3.94,6,107.71,107.71,0,0,0,26.25,10.87,8,8,0,0,0,7.06-1.49L125.84,216q2.16.06,4.32,0l18.64,14.92a8,8,0,0,0,7.06,1.48,107.21,107.21,0,0,0,26.25-10.88,8,8,0,0,0,3.93-6l2.64-23.72q1.56-1.48,3-3L215.46,186a8,8,0,0,0,6-3.94,107.71,107.71,0,0,0,10.87-26.25,8,8,0,0,0-1.49-7.06Zm-16.1-6.5a73.93,73.93,0,0,1,0,8.68,8,8,0,0,0,1.74,5.48l14.19,17.73a91.57,91.57,0,0,1-6.23,15L187,173.11a8,8,0,0,0-5.1,2.64,74.11,74.11,0,0,1-6.14,6.14,8,8,0,0,0-2.64,5.1l-2.51,22.58a91.32,91.32,0,0,1-15,6.23l-17.74-14.19a8,8,0,0,0-5-1.75h-.48a73.93,73.93,0,0,1-8.68,0,8,8,0,0,0-5.48,1.74L100.45,215.8a91.57,91.57,0,0,1-15-6.23L82.89,187a8,8,0,0,0-2.64-5.1,74.11,74.11,0,0,1-6.14-6.14,8,8,0,0,0-5.1-2.64L46.43,170.6a91.32,91.32,0,0,1-6.23-15l14.19-17.74a8,8,0,0,0,1.74-5.48,73.93,73.93,0,0,1,0-8.68,8,8,0,0,0-1.74-5.48L40.2,100.45a91.57,91.57,0,0,1,6.23-15L69,82.89a8,8,0,0,0,5.1-2.64,74.11,74.11,0,0,1,6.14-6.14A8,8,0,0,0,82.89,69L85.4,46.43a91.32,91.32,0,0,1,15-6.23l17.74,14.19a8,8,0,0,0,5.48,1.74,73.93,73.93,0,0,1,8.68,0,8,8,0,0,0,5.48-1.74L155.55,40.2a91.57,91.57,0,0,1,15,6.23L173.11,69a8,8,0,0,0,2.64,5.1,74.11,74.11,0,0,1,6.14,6.14,8,8,0,0,0,5.1,2.64l22.58,2.51a91.32,91.32,0,0,1,6.23,15l-14.19,17.74A8,8,0,0,0,199.87,123.66Z"
134
+ },
135
+ home: {
136
+ viewBox: "0 0 256 256",
137
+ path: "M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z"
138
+ },
139
+ search: {
140
+ viewBox: "0 0 256 256",
141
+ path: "M229.66,218.34l-50.07-50.06a88.11,88.11,0,1,0-11.31,11.31l50.06,50.07a8,8,0,0,0,11.32-11.32ZM40,112a72,72,0,1,1,72,72A72.08,72.08,0,0,1,40,112ZZ"
142
+ },
143
+ "sign-in": {
144
+ viewBox: "0 0 256 256",
145
+ path: "M141.66,133.66l-40,40a8,8,0,0,1-11.32-11.32L116.69,136H24a8,8,0,0,1,0-16h92.69L90.34,93.66a8,8,0,0,1,11.32-11.32l40,40A8,8,0,0,1,141.66,133.66ZM200,32H136a8,8,0,0,0,0,16h56V208H136a8,8,0,0,0,0,16h64a8,8,0,0,0,8-8V40A8,8,0,0,0,200,32Z"
146
+ },
147
+ "sign-out": {
148
+ viewBox: "0 0 256 256",
149
+ path: "M120,216a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V40a8,8,0,0,1,8-8h64a8,8,0,0,1,0,16H56V208h56A8,8,0,0,1,120,216Zm109.66-93.66-40-40a8,8,0,0,0-11.32,11.32L204.69,120H112a8,8,0,0,0,0,16h92.69l-26.35,26.34a8,8,0,0,0,11.32,11.32l40-40A8,8,0,0,0,229.66,122.34Z"
150
+ },
151
+ user: {
152
+ viewBox: "0 0 256 256",
153
+ path: "M230.92,212c-15.23-26.33-38.7-45.21-66.09-54.16a72,72,0,1,0-73.66,0C63.78,166.78,40.31,185.66,25.08,212a8,8,0,1,0,13.85,8c18.84-32.56,52.14-52,89.07-52s70.23,19.44,89.07,52a8,8,0,1,0,13.85-8ZM72,96a56,56,0,1,1,56,56A56.06,56.06,0,0,1,72,96Z"
154
+ },
155
+ lock: {
156
+ viewBox: "0 0 256 256",
157
+ path: "M208,80H176V56a48,48,0,0,0-96,0V80H48A16,16,0,0,0,32,96V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V96A16,16,0,0,0,208,80ZM96,56a32,32,0,0,1,64,0V80H96ZM208,208H48V96H208V208Zm-68-56a12,12,0,1,1-12-12A12,12,0,0,1,140,152Z"
158
+ },
159
+ "lock-open": {
160
+ viewBox: "0 0 256 256",
161
+ path: "M208,80H96V56a32,32,0,0,1,32-32c15.37,0,29.2,11,32.16,25.59a8,8,0,0,0,15.68-3.18C171.32,24.15,151.2,8,128,8A48.05,48.05,0,0,0,80,56V80H48A16,16,0,0,0,32,96V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V96A16,16,0,0,0,208,80Zm0,128H48V96H208V208Zm-68-56a12,12,0,1,1-12-12A12,12,0,0,1,140,152Z"
162
+ },
163
+ x: {
164
+ viewBox: "0 0 256 256",
165
+ path: "M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z"
166
+ },
167
+ menu: {
168
+ viewBox: "0 0 256 256",
169
+ path: "M224,128a8,8,0,0,1-8,8H40a8,8,0,0,1,0-16H216A8,8,0,0,1,224,128ZM40,72H216a8,8,0,0,0,0-16H40a8,8,0,0,0,0,16ZM216,184H40a8,8,0,0,0,0,16H216a8,8,0,0,0,0-16Z"
170
+ },
171
+ dot: {
172
+ viewBox: "0 0 10 10",
173
+ path: "M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
174
+ },
175
+ dots: {
176
+ viewBox: "0 0 256 256",
177
+ path: "M140,128a12,12,0,1,1-12-12A12,12,0,0,1,140,128Zm56-12a12,12,0,1,0,12,12A12,12,0,0,0,196,116ZM60,116a12,12,0,1,0,12,12A12,12,0,0,0,60,116Z"
178
+ },
179
+ // Memo: caretは細すぎないように Boldで。
180
+ "caret-down": {
181
+ viewBox: "0 0 256 256",
182
+ path: "M216.49,104.49l-80,80a12,12,0,0,1-17,0l-80-80a12,12,0,0,1,17-17L128,159l71.51-71.52a12,12,0,0,1,17,17Z"
183
+ },
184
+ "caret-right": {
185
+ viewBox: "0 0 256 256",
186
+ path: "M184.49,136.49l-80,80a12,12,0,0,1-17-17L159,128,87.51,56.49a12,12,0,1,1,17-17l80,80A12,12,0,0,1,184.49,136.49Z"
187
+ // path: 'M181.66,133.66l-80,80a8,8,0,0,1-11.32-11.32L164.69,128,90.34,53.66a8,8,0,0,1,11.32-11.32l80,80A8,8,0,0,1,181.66,133.66Z',
188
+ },
189
+ "caret-down-fill": {
190
+ viewBox: "0 0 256 256",
191
+ path: "M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,48,88H208a8,8,0,0,1,5.66,13.66Z"
192
+ },
193
+ "caret-right-fill": {
194
+ viewBox: "0 0 256 256",
195
+ path: "M181.66,133.66l-80,80A8,8,0,0,1,88,208V48a8,8,0,0,1,13.66-5.66l80,80A8,8,0,0,1,181.66,133.66Z"
196
+ },
197
+ "arrow-down": {
198
+ viewBox: "0 0 256 256",
199
+ path: "M208.49,152.49l-72,72a12,12,0,0,1-17,0l-72-72a12,12,0,0,1,17-17L116,187V40a12,12,0,0,1,24,0V187l51.51-51.52a12,12,0,0,1,17,17Z"
200
+ // path: 'M205.66,149.66l-72,72a8,8,0,0,1-11.32,0l-72-72a8,8,0,0,1,11.32-11.32L120,196.69V40a8,8,0,0,1,16,0V196.69l58.34-58.35a8,8,0,0,1,11.32,11.32Z',
201
+ },
202
+ "arrow-right": {
203
+ viewBox: "0 0 256 256",
204
+ path: "M224.49,136.49l-72,72a12,12,0,0,1-17-17L187,140H40a12,12,0,0,1,0-24H187L135.51,64.48a12,12,0,0,1,17-17l72,72A12,12,0,0,1,224.49,136.49Z"
205
+ // path: 'M221.66,133.66l-72,72a8,8,0,0,1-11.32-11.32L196.69,136H40a8,8,0,0,1,0-16H196.69L138.34,61.66a8,8,0,0,1,11.32-11.32l72,72A8,8,0,0,1,221.66,133.66',
206
+ }
207
+ // 右矢印、
208
+ }, l = {
209
+ "logo-facebook": {
210
+ viewBox: "0 0 48 48",
211
+ path: "m34.5 26.8 1.2-8.1h-7.8v-5.3c0-2.2 1.1-4.4 4.6-4.4h3.6V2.1s-3.2-.6-6.3-.6c-6.4 0-10.6 3.9-10.6 11v6.2H12v8.1h7.2v19.7H28V26.8h6.5z"
212
+ },
213
+ "logo-instagram": {
214
+ viewBox: "0 0 48 48",
215
+ path: "M24 12.2c-6.5 0-11.8 5.2-11.8 11.8S17.4 35.8 24 35.8 35.8 30.6 35.8 24 30.5 12.2 24 12.2zm0 19.4c-4.2 0-7.6-3.4-7.6-7.6s3.4-7.6 7.6-7.6 7.6 3.4 7.6 7.6-3.4 7.6-7.6 7.6zm15-19.8c0 1.6-1.3 2.7-2.7 2.7-1.6 0-2.7-1.3-2.7-2.7s1.3-2.7 2.7-2.7 2.7 1.1 2.7 2.7zm7.8 2.7c-.2-3.7-1-6.9-3.8-9.6s-6-3.5-9.6-3.8c-3.8-.1-15-.1-18.9.1-3.7.2-6.9 1-9.6 3.7s-3.5 5.9-3.8 9.6c-.2 3.8-.2 15.1 0 18.9.2 3.7 1 6.9 3.8 9.6s5.9 3.5 9.6 3.8c3.8.2 15.1.2 18.9 0 3.7-.2 6.9-1 9.6-3.8 2.7-2.7 3.5-5.9 3.8-9.6.3-3.8.3-15 0-18.9zM42 37.6c-.8 2-2.3 3.5-4.4 4.4-3 1.1-10.2.9-13.6.9s-10.5.3-13.6-.9c-2-.8-3.5-2.3-4.4-4.4-1.1-3-.8-10.2-.8-13.6s-.3-10.5 1-13.6c.7-2 2.3-3.5 4.3-4.3 3-1.3 10.2-.9 13.6-.9s10.5-.3 13.6.9c2 .8 3.5 2.3 4.4 4.4 1.1 3 .9 10.2.9 13.6s.1 10.4-1 13.5z"
216
+ },
217
+ "logo-line": {
218
+ viewBox: "0 0 48 48",
219
+ path: "M20.2 39.2c2.7.6 2.4 1.6 1.8 5.2-.1.6-.4 2.3 2 1.3 2.5-1 13.3-7.8 18.1-13.4 3.3-3.7 4.9-7.4 4.9-11.5C47 10.4 36.6 2 24 2S1 10.4 1 20.8C1 30 9.2 37.7 20.2 39.2zm12.3-23c0-.2.2-.4.4-.4h6.5c.2 0 .4.2.4.4v1.6c0 .2-.2.4-.4.4H35v1.7h4.4c.2 0 .4.2.4.4V22c0 .2-.2.4-.4.4H35V24h4.4c.2 0 .4.2.4.4V26c0 .2-.2.4-.4.4h-6.5c-.2 0-.4-.2-.4-.4v-9.8zm-11.1.1c0-.2.2-.4.4-.4h1.6c.1 0 .3.1.4.2l4.6 6.2v-6c0-.2.2-.4.4-.4h1.6c.2 0 .4.2.4.4v10c0 .2-.2.4-.4.4h-1.6c-.1 0-.3-.1-.4-.2l-4.6-6.2v6c0 .2-.2.4-.4.4h-1.6c-.2 0-.4-.2-.4-.4v-10zm-4.2-.1c0-.2.2-.4.4-.4h1.6c.2 0 .4.2.4.4v10c0 .2-.2.4-.4.4h-1.5c-.2 0-.4-.2-.4-.4v-10h-.1zm-8.7 0c0-.2.2-.4.4-.4h1.6c.2 0 .4.2.4.4v7.9h4.4c.2 0 .4.2.4.4v1.6c0 .2-.2.4-.4.4H8.9c-.1 0-.2-.1-.3-.1-.1-.1-.1-.2-.1-.3v-9.9z"
220
+ },
221
+ "logo-pinterest": {
222
+ viewBox: "0 0 48 48",
223
+ path: "M47 24c0 12.8-10.2 23-23 23-2.4 0-4.7-.3-6.8-1 .9-1.6 2.3-4.1 2.8-6.1.3-1 1.5-5.4 1.5-5.4.7 1.5 2.9 2.6 5.2 2.6 6.9 0 11.9-6.4 11.9-14.3 0-7.6-6.2-13.3-14.2-13.3-9.9 0-15.2 6.7-15.2 13.9 0 3.3 1.8 7.5 4.7 8.9.4.2.6.1.7-.3.1-.3.4-1.9.6-2.6.1-.2 0-.4-.2-.6-.9-1.2-1.7-3.2-1.7-5.2 0-5.1 3.9-9.9 10.4-9.9 5.6 0 9.6 3.9 9.6 9.4 0 6.3-3.1 10.6-7.2 10.6-2.3 0-4-1.9-3.4-4.2.6-2.7 1.9-5.6 1.9-7.6 0-1.8-.9-3.2-2.9-3.2-2.3 0-4.2 2.4-4.2 5.5 0 2.1.7 3.4.7 3.4s-2.3 9.6-2.7 11.4c-.4 2-.3 4.8-.1 6.6C7.1 42.1 1 33.7 1 24 1 11.2 11.2 1 24 1s23 10.2 23 23z"
224
+ },
225
+ "logo-tiktok": {
226
+ viewBox: "0 0 48 48",
227
+ path: "M43.2 20c-3.8 0-7.5-1.2-10.6-3.4V32c0 7.7-6.3 14-14 14s-14-6.3-14-14 6.3-14 14-14c.6 0 1.3 0 1.9.1v7.7c-3.4-1.1-7 .8-8 4.2s.8 7 4.2 8c3.4 1.1 7-.8 8-4.2.2-.6.3-1.3.3-1.9V2h7.6c0 .6 0 1.3.2 1.9.5 2.8 2.2 5.3 4.6 6.9 1.7 1.1 3.7 1.7 5.8 1.7V20z"
228
+ },
229
+ // 'logo-twitter': {
230
+ // viewBox: '0 0 48 48',
231
+ // path: 'M41.5 15v1.2c0 11.9-9.1 25.7-25.7 25.7-5.1 0-9.9-1.5-13.8-4 .7.1 1.4.1 2.2.1 4.2 0 8.1-1.4 11.2-3.9-4-.1-7.3-2.7-8.4-6.3.5.1 1.1.2 1.6.2.8 0 1.6-.1 2.4-.3-4.1-.8-7.2-4.5-7.2-8.9v-.1c1.2.7 2.6 1.1 4.1 1.1-2.4-1.6-4-4.4-4-7.5 0-1.7.4-3.2 1.2-4.6 4.4 5.5 11.1 9 18.6 9.4-.1-.7-.2-1.4-.2-2.1 0-5 4-9 9-9 2.6 0 4.9 1.1 6.6 2.8 2-.4 4-1.1 5.7-2.2-.7 2.1-2.1 3.9-4 5 1.8-.2 3.6-.7 5.2-1.4-1.2 2-2.8 3.6-4.5 4.8z',
232
+ // },
233
+ "logo-x": {
234
+ viewBox: "0 0 48 48",
235
+ path: "M28.1,20.6L44.1,2h-3.8L26.4,18.2L15.3,2H2.5l16.8,24.5L2.5,46h3.8L21,28.9L32.7,46h12.8L28.1,20.6L28.1,20.6z M22.9,26.7 l-1.7-2.4L7.6,4.9h5.8l10.9,15.6l1.7,2.4l14.2,20.3h-5.8L22.9,26.7L22.9,26.7z"
236
+ },
237
+ "logo-youtube": {
238
+ viewBox: "0 0 48 48",
239
+ path: "M46.1 12.9c-.5-2-2.1-3.6-4.1-4.1-3.6-1-18-1-18-1s-14.4 0-18 .9c-2 .5-3.6 2.1-4.1 4.1C1 16.5 1 24 1 24s0 7.5.9 11.2c.5 2 2.1 3.5 4.1 4.1 3.6.9 18 .9 18 .9s14.4 0 18-.9c2-.5 3.6-2 4.1-4.1.9-3.7.9-11.2.9-11.2s0-7.5-.9-11.1zm-26.8 18V17.2l12 6.8-12 6.9z"
240
+ },
241
+ "logo-codepen": {
242
+ viewBox: "0 0 48 48",
243
+ path: "M45.7 15.5 25.2 1.8c-.7-.4-1.4-.4-2.1 0L2.4 15.5c-.5.3-.8 1-.8 1.6v13.7c0 .6.3 1.2.8 1.6L23 46.1c.7.4 1.4.4 2.1 0l20.6-13.7c.5-.3.8-1 .8-1.6V17.1c0-.6-.3-1.2-.8-1.6zM26 7l15.1 10.1-6.8 4.5L26 16V7zm-3.9 0v9l-8.4 5.6L7 17.1 22.1 7zM5.4 20.7l4.8 3.3-4.8 3.3v-6.6zM22.1 41 7 30.9l6.7-4.5 8.4 5.6v9zM24 28.6 17.2 24l6.9-4.6L31 24l-7 4.6zM26 41v-9l8.4-5.6 6.8 4.5L26 41zm16.7-13.7L37.8 24l4.8-3.3v6.6h.1z"
244
+ },
245
+ "logo-github": {
246
+ viewBox: "0 0 48 48",
247
+ path: "M23.7 1.5C10.8 1.5 1 11.3 1 24.2c0 10.2 6.5 19.1 15.7 22.2 1.1.2 1.6-.5 1.6-1.1v-5.6s-6.5 1.4-7.8-2.7c0 0-1-2.7-2.6-3.3 0 0-2.1-1.5.1-1.5 0 0 2.3.2 3.6 2.4 2 3.6 5.4 2.5 6.8 2 .2-1.5.8-2.5 1.5-3.1-5.2-.5-10.5-1.4-10.5-10.2 0-2.5.7-3.9 2.2-5.4-.2-.6-1-3.1.2-6.3 2-.6 6.4 2.5 6.4 2.5 1.9-.5 3.9-.8 5.9-.8s4 .3 5.9.8c0 0 4.5-3.1 6.4-2.5 1.3 3.2.5 5.6.2 6.3 1.5 1.7 2.4 2.9 2.4 5.4 0 9-5.4 9.6-10.7 10.2.8.7 1.6 2.1 1.6 4.3v7.7c0 .6.4 1.4 1.6 1.2 9.5-3.1 15.8-12 15.8-22.3C47 11.3 36.5 1.5 23.7 1.5z"
248
+ },
249
+ // 'logo-medium': {
250
+ // viewBox: '0 0 48 48',
251
+ // path: 'M14 10.9C6.9 10.9 1 16.8 1 24s5.9 13.1 13 13.1S27 31.2 27 24s-5.8-13.1-13-13.1zm20.7.8c-3.6 0-6.5 5.5-6.5 12.3s2.9 12.3 6.5 12.3 6.5-5.5 6.5-12.3c-.1-6.8-2.9-12.3-6.5-12.3zm10 1.3c-1.3 0-2.3 4.9-2.3 11s1 11 2.3 11C46 35 47 30.1 47 24s-1-11-2.3-11z',
252
+ // },
253
+ "logo-tumblr": {
254
+ viewBox: "0 0 48 48",
255
+ path: "M36.9 43.3c-1.2 1.3-4.3 2.7-8.4 2.7-10.4 0-12.6-7.6-12.6-12.1V21.6h-4.1c-.5 0-.9-.4-.9-.9v-5.9c0-.6.4-1.2 1-1.4 5.3-1.9 7-6.6 7.2-10.1.1-1 .6-1.4 1.4-1.4h6.1c.5 0 .9.4.9.9v9.9h7.1c.5 0 .9.4.9.9v7c0 .5-.4.9-.9.9h-7.1V33c0 2.9 2.1 4.6 5.9 3 .4-.2.8-.3 1.1-.2.3.1.5.3.7.7l1.9 5.6c0 .4.1.9-.2 1.2z"
256
+ },
257
+ "logo-amazon": {
258
+ viewBox: "0 0 48 48",
259
+ path: "M27.4 15c-4.9.2-17.2 1.6-17.2 11.9 0 11.1 14 11.6 18.6 4.4.7 1 3.6 3.8 4.6 4.7l5.8-5.7s-3.3-2.6-3.3-5.4V10.1c0-2.6-2.5-8.3-11.4-8.3S10.8 7.4 10.8 12.4l7.5.7c1.7-5 5.5-5 5.5-5 4.1-.1 3.6 3 3.6 6.9zm0 8.8c0 8.1-8.5 6.9-8.5 1.7 0-4.8 5.1-5.7 8.5-5.9v4.2zm13.8 16.6c-.8 1-7.1 6.8-17.7 6.8S4.8 40 2.3 37c-.7-.8.1-1.1.6-.8 7.4 4.5 19 11.9 37.8 3.1.7-.5 1.2.1.5 1.1zm4 .2c-.7 1.6-1.6 2.7-2.1 3.1-.6.5-1 .3-.7-.4s2-4.7 1.3-5.6c-.7-.8-3.8-.4-4.9-.3-1.1.1-1.3.2-1.4 0-.2-.6 2.2-1.6 3.8-1.8s4.2-.1 4.7.6c.3.6 0 2.8-.7 4.4z"
260
+ }
261
+ // 'logo-wordpress': {
262
+ // viewBox: '0 0 48 48',
263
+ // path: 'm6 15.9 9.4 25.8C8.8 38.5 4.2 31.8 4.2 24c0-2.8.7-5.5 1.8-8.1zm31.3 7.2c0-2.4-.8-4.1-1.7-5.4-1-1.7-2-3-2-4.6 0-1.8 1.4-3.6 3.3-3.6h.2C33.6 6.2 29 4.2 23.9 4.2c-6.9 0-13 3.6-16.5 8.9h1.3c2.1 0 5.2-.2 5.2-.2 1-.1 1.2 1.5.1 1.7 0 0-1 .1-2.3.2l7.2 21.3 4.3-13-3-8.5c-1-.1-2.1-.2-2.1-.2-1-.1-.9-1.7.1-1.7 0 0 3.2.2 5.2.2 2.1 0 5.2-.2 5.2-.2 1-.1 1.1 1.5.1 1.7 0 0-1 .1-2.3.2l7.1 21.2 2-6.6c1.1-2.6 1.8-4.5 1.8-6.1zm-13 2.6-6 17.2c1.8.5 3.7.8 5.5.8 2.3 0 4.5-.4 6.6-1.1-.1-.1-.1-.2-.1-.3l-6-16.6zm17.1-11.2c.1.6.1 1.3.1 2 0 2-.4 4.3-1.5 7.1L33.9 41c5.9-3.5 9.8-9.7 9.8-17 .1-3.4-.9-6.7-2.3-9.5zM47 24c0 12.6-10.4 23-23 23S1 36.6 1 24 11.3 1 24 1s23 10.3 23 23zm-1 0c0-12.1-9.8-22-22-22S2 11.9 2 24s9.8 22 22 22 22-9.9 22-22z',
264
+ // },
265
+ // WhatsApp,
266
+ // LinkdIn,
267
+ // Snapchat
268
+ }, h = {
269
+ ...a,
270
+ ...l
271
+ };
272
+ export {
273
+ h as default,
274
+ l as logoIcons,
275
+ a as phIcons
276
+ };
@@ -0,0 +1,11 @@
1
+ import o from "./defaults/tokens.js";
2
+ import t from "./defaults/props.js";
3
+ import r from "./defaults/states.js";
4
+ const e = {
5
+ tokens: o,
6
+ props: t,
7
+ states: r
8
+ };
9
+ export {
10
+ e as default
11
+ };