@k8o/arte-odyssey 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/dist/components/accordion/accordion-button.d.ts +2 -0
- package/dist/components/accordion/accordion-button.js +40 -0
- package/dist/components/accordion/accordion-item.d.ts +4 -0
- package/dist/components/accordion/accordion-item.js +11 -0
- package/dist/components/accordion/accordion-panel.d.ts +2 -0
- package/dist/components/accordion/accordion-panel.js +21 -0
- package/dist/components/accordion/accordion.d.ts +2 -0
- package/dist/components/accordion/accordion.js +17 -0
- package/dist/components/accordion/accordion.stories.js +89 -0
- package/dist/components/accordion/context.d.ts +10 -0
- package/dist/components/accordion/context.js +38 -0
- package/dist/components/accordion/index.d.ts +4 -0
- package/dist/components/accordion/index.js +4 -0
- package/dist/components/alert/alert.d.ts +8 -0
- package/dist/components/alert/alert.js +46 -0
- package/dist/components/alert/alert.stories.js +51 -0
- package/dist/components/alert/index.d.ts +1 -0
- package/dist/components/alert/index.js +1 -0
- package/dist/components/anchor/anchor.d.ts +14 -0
- package/dist/components/anchor/anchor.js +31 -0
- package/dist/components/anchor/anchor.stories.js +23 -0
- package/dist/components/anchor/index.d.ts +1 -0
- package/dist/components/anchor/index.js +1 -0
- package/dist/components/baseline-status/baseline-status.d.ts +16 -0
- package/dist/components/baseline-status/baseline-status.js +39 -0
- package/dist/components/baseline-status/baseline-status.stories.js +15 -0
- package/dist/components/baseline-status/index.d.ts +1 -0
- package/dist/components/baseline-status/index.js +1 -0
- package/dist/components/breadcrumb/breadcrumb.d.ts +18 -0
- package/dist/components/breadcrumb/breadcrumb.js +36 -0
- package/dist/components/breadcrumb/breadcrumb.stories.js +40 -0
- package/dist/components/breadcrumb/index.d.ts +1 -0
- package/dist/components/breadcrumb/index.js +1 -0
- package/dist/components/button/button.d.ts +10 -0
- package/dist/components/button/button.js +55 -0
- package/dist/components/button/button.stories.js +96 -0
- package/dist/components/button/index.d.ts +1 -0
- package/dist/components/button/index.js +1 -0
- package/dist/components/card/card.d.ts +3 -0
- package/dist/components/card/card.js +26 -0
- package/dist/components/card/card.stories.js +38 -0
- package/dist/components/card/index.d.ts +2 -0
- package/dist/components/card/index.js +2 -0
- package/dist/components/card/interactive-card.d.ts +3 -0
- package/dist/components/card/interactive-card.js +34 -0
- package/dist/components/card/type.d.ts +6 -0
- package/dist/components/card/type.js +0 -0
- package/dist/components/code/code.d.ts +4 -0
- package/dist/components/code/code.js +38 -0
- package/dist/components/code/code.stories.js +60 -0
- package/dist/components/code/index.d.ts +1 -0
- package/dist/components/code/index.js +4 -0
- package/dist/components/dialog/dialog.d.ts +17 -0
- package/dist/components/dialog/dialog.js +85 -0
- package/dist/components/dialog/dialog.stories.js +98 -0
- package/dist/components/dialog/index.d.ts +1 -0
- package/dist/components/dialog/index.js +1 -0
- package/dist/components/drawer/drawer.d.ts +6 -0
- package/dist/components/drawer/drawer.js +56 -0
- package/dist/components/drawer/drawer.stories.js +25 -0
- package/dist/components/drawer/index.d.ts +1 -0
- package/dist/components/drawer/index.js +1 -0
- package/dist/components/dropdown-menu/dropdown-menu.d.ts +24 -0
- package/dist/components/dropdown-menu/dropdown-menu.js +130 -0
- package/dist/components/dropdown-menu/dropdown-menu.stories.js +111 -0
- package/dist/components/dropdown-menu/hooks.d.ts +23 -0
- package/dist/components/dropdown-menu/hooks.js +56 -0
- package/dist/components/dropdown-menu/index.d.ts +1 -0
- package/dist/components/dropdown-menu/index.js +1 -0
- package/dist/components/error-boundary/index.d.ts +1 -0
- package/dist/components/error-boundary/index.js +4 -0
- package/dist/components/form/autocomplete/autocomplete.d.ts +14 -0
- package/dist/components/form/autocomplete/autocomplete.js +225 -0
- package/dist/components/form/autocomplete/autocomplete.stories.js +59 -0
- package/dist/components/form/autocomplete/index.d.ts +1 -0
- package/dist/components/form/autocomplete/index.js +1 -0
- package/dist/components/form/checkbox/checkbox.d.ts +8 -0
- package/dist/components/form/checkbox/checkbox.js +40 -0
- package/dist/components/form/checkbox/checkbox.stories.js +27 -0
- package/dist/components/form/checkbox/index.d.ts +1 -0
- package/dist/components/form/checkbox/index.js +1 -0
- package/dist/components/form/form-control/form-control.d.ts +20 -0
- package/dist/components/form/form-control/form-control.js +53 -0
- package/dist/components/form/form-control/form-control.stories.js +94 -0
- package/dist/components/form/form-control/index.d.ts +1 -0
- package/dist/components/form/form-control/index.js +1 -0
- package/dist/components/form/number-field/index.d.ts +1 -0
- package/dist/components/form/number-field/index.js +1 -0
- package/dist/components/form/number-field/number-field.d.ts +17 -0
- package/dist/components/form/number-field/number-field.js +150 -0
- package/dist/components/form/number-field/number-field.stories.js +106 -0
- package/dist/components/form/radio/index.d.ts +1 -0
- package/dist/components/form/radio/index.js +1 -0
- package/dist/components/form/radio/radio.d.ts +11 -0
- package/dist/components/form/radio/radio.js +51 -0
- package/dist/components/form/radio/radio.stories.js +55 -0
- package/dist/components/form/range-field/index.d.ts +1 -0
- package/dist/components/form/range-field/index.js +4 -0
- package/dist/components/form/range-field/range-field.d.ts +17 -0
- package/dist/components/form/range-field/range-field.js +54 -0
- package/dist/components/form/range-field/range-field.stories.js +162 -0
- package/dist/components/form/select/index.d.ts +1 -0
- package/dist/components/form/select/index.js +1 -0
- package/dist/components/form/select/select.d.ts +14 -0
- package/dist/components/form/select/select.js +39 -0
- package/dist/components/form/select/select.stories.js +58 -0
- package/dist/components/form/text-field/index.d.ts +1 -0
- package/dist/components/form/text-field/index.js +1 -0
- package/dist/components/form/text-field/text-field.d.ts +15 -0
- package/dist/components/form/text-field/text-field.js +40 -0
- package/dist/components/form/text-field/text-field.stories.js +61 -0
- package/dist/components/form/textarea/index.d.ts +1 -0
- package/dist/components/form/textarea/index.js +1 -0
- package/dist/components/form/textarea/textarea.d.ts +18 -0
- package/dist/components/form/textarea/textarea.js +56 -0
- package/dist/components/form/textarea/textarea.stories.js +92 -0
- package/dist/components/heading/heading.d.ts +8 -0
- package/dist/components/heading/heading.js +77 -0
- package/dist/components/heading/heading.stories.js +52 -0
- package/dist/components/heading/index.d.ts +1 -0
- package/dist/components/heading/index.js +1 -0
- package/dist/components/icon-button/icon-button.d.ts +8 -0
- package/dist/components/icon-button/icon-button.js +38 -0
- package/dist/components/icon-button/icon-button.stories.js +54 -0
- package/dist/components/icon-button/index.d.ts +1 -0
- package/dist/components/icon-button/index.js +1 -0
- package/dist/components/icon-link/icon-link.d.ts +17 -0
- package/dist/components/icon-link/icon-link.js +37 -0
- package/dist/components/icon-link/icon-link.stories.js +40 -0
- package/dist/components/icon-link/index.d.ts +1 -0
- package/dist/components/icon-link/index.js +1 -0
- package/dist/components/icons/arte-odyssey.d.ts +3 -0
- package/dist/components/icons/arte-odyssey.js +463 -0
- package/dist/components/icons/base.d.ts +9 -0
- package/dist/components/icons/base.js +13 -0
- package/dist/components/icons/github-mark.d.ts +3 -0
- package/dist/components/icons/github-mark.js +33 -0
- package/dist/components/icons/icons.stories.js +276 -0
- package/dist/components/icons/index.d.ts +7 -0
- package/dist/components/icons/index.js +7 -0
- package/dist/components/icons/logo.d.ts +6 -0
- package/dist/components/icons/logo.js +50 -0
- package/dist/components/icons/lucide.d.ts +50 -0
- package/dist/components/icons/lucide.js +569 -0
- package/dist/components/icons/qiita.d.ts +3 -0
- package/dist/components/icons/qiita.js +48 -0
- package/dist/components/icons/twitter.d.ts +3 -0
- package/dist/components/icons/twitter.js +34 -0
- package/dist/components/icons/zenn.d.ts +6 -0
- package/dist/components/icons/zenn.js +41 -0
- package/dist/components/index.d.ts +37 -0
- package/dist/components/index.js +37 -0
- package/dist/components/link-button/index.d.ts +1 -0
- package/dist/components/link-button/index.js +1 -0
- package/dist/components/link-button/link-button.d.ts +19 -0
- package/dist/components/link-button/link-button.js +46 -0
- package/dist/components/link-button/link-button.stories.js +51 -0
- package/dist/components/list-box/hooks.d.ts +37 -0
- package/dist/components/list-box/hooks.js +70 -0
- package/dist/components/list-box/index.d.ts +1 -0
- package/dist/components/list-box/index.js +1 -0
- package/dist/components/list-box/list-box.d.ts +22 -0
- package/dist/components/list-box/list-box.js +145 -0
- package/dist/components/list-box/list-box.stories.js +69 -0
- package/dist/components/modal/index.d.ts +1 -0
- package/dist/components/modal/index.js +1 -0
- package/dist/components/modal/modal.d.ts +8 -0
- package/dist/components/modal/modal.js +118 -0
- package/dist/components/modal/modal.stories.js +22 -0
- package/dist/components/popover/hooks.d.ts +65 -0
- package/dist/components/popover/hooks.js +187 -0
- package/dist/components/popover/index.d.ts +1 -0
- package/dist/components/popover/index.js +1 -0
- package/dist/components/popover/popover.d.ts +18 -0
- package/dist/components/popover/popover.js +141 -0
- package/dist/components/popover/popover.stories.js +45 -0
- package/dist/components/progress/index.d.ts +1 -0
- package/dist/components/progress/index.js +1 -0
- package/dist/components/progress/progress.d.ts +7 -0
- package/dist/components/progress/progress.js +21 -0
- package/dist/components/progress/progress.stories.js +16 -0
- package/dist/components/providers/component-provider.d.ts +2 -0
- package/dist/components/providers/component-provider.js +9 -0
- package/dist/components/providers/index.d.ts +2 -0
- package/dist/components/providers/index.js +2 -0
- package/dist/components/providers/portal-root.d.ts +5 -0
- package/dist/components/providers/portal-root.js +17 -0
- package/dist/components/scroll-linked/index.d.ts +1 -0
- package/dist/components/scroll-linked/index.js +1 -0
- package/dist/components/scroll-linked/scroll-linked.d.ts +2 -0
- package/dist/components/scroll-linked/scroll-linked.js +21 -0
- package/dist/components/scroll-linked/scroll-linked.stories.js +18 -0
- package/dist/components/separator/index.d.ts +1 -0
- package/dist/components/separator/index.js +1 -0
- package/dist/components/separator/separator.d.ts +4 -0
- package/dist/components/separator/separator.js +20 -0
- package/dist/components/separator/separator.stories.js +27 -0
- package/dist/components/tabs/index.d.ts +1 -0
- package/dist/components/tabs/index.js +1 -0
- package/dist/components/tabs/tabs.d.ts +16 -0
- package/dist/components/tabs/tabs.js +145 -0
- package/dist/components/tabs/tabs.stories.js +49 -0
- package/dist/components/text-tag/index.d.ts +1 -0
- package/dist/components/text-tag/index.js +1 -0
- package/dist/components/text-tag/text-tag.d.ts +5 -0
- package/dist/components/text-tag/text-tag.js +23 -0
- package/dist/components/text-tag/text-tag.stories.js +30 -0
- package/dist/components/toast/index.d.ts +1 -0
- package/dist/components/toast/index.js +5 -0
- package/dist/components/toast/provider.d.ts +11 -0
- package/dist/components/toast/provider.js +125 -0
- package/dist/components/toast/toast.d.ts +9 -0
- package/dist/components/toast/toast.js +19 -0
- package/dist/components/toast/toast.stories.js +45 -0
- package/dist/components/tooltip/index.d.ts +1 -0
- package/dist/components/tooltip/index.js +1 -0
- package/dist/components/tooltip/tooltip.d.ts +13 -0
- package/dist/components/tooltip/tooltip.js +60 -0
- package/dist/components/tooltip/tooltip.stories.js +40 -0
- package/dist/helpers/cn.d.ts +2 -0
- package/dist/helpers/cn.js +8 -0
- package/dist/helpers/color/find-all-colors.d.ts +12 -0
- package/dist/helpers/color/find-all-colors.js +210 -0
- package/dist/helpers/is-internal-route.d.ts +1 -0
- package/dist/helpers/is-internal-route.js +12 -0
- package/dist/helpers/number/between.d.ts +1 -0
- package/dist/helpers/number/between.js +19 -0
- package/dist/helpers/number/cast.d.ts +1 -0
- package/dist/helpers/number/cast.js +41 -0
- package/dist/helpers/number/commalize.d.ts +1 -0
- package/dist/helpers/number/commalize.js +22 -0
- package/dist/helpers/number/index.d.ts +4 -0
- package/dist/helpers/number/index.js +10 -0
- package/dist/helpers/number/to-precision.d.ts +1 -0
- package/dist/helpers/number/to-precision.js +17 -0
- package/dist/helpers/uuid-v4.d.ts +1 -0
- package/dist/helpers/uuid-v4.js +32 -0
- package/dist/hooks/click-away/index.d.ts +2 -0
- package/dist/hooks/click-away/index.js +24 -0
- package/dist/hooks/click-away/index.test.js +31 -0
- package/dist/hooks/client/index.d.ts +1 -0
- package/dist/hooks/client/index.js +12 -0
- package/dist/hooks/clipboard/index.d.ts +4 -0
- package/dist/hooks/clipboard/index.js +17 -0
- package/dist/hooks/clipboard/index.test.js +35 -0
- package/dist/hooks/hash/index.d.ts +1 -0
- package/dist/hooks/hash/index.js +28 -0
- package/dist/hooks/hash/index.test.js +46 -0
- package/dist/hooks/index.d.ts +10 -0
- package/dist/hooks/index.js +10 -0
- package/dist/hooks/interval/index.d.ts +1 -0
- package/dist/hooks/interval/index.js +17 -0
- package/dist/hooks/interval/index.test.js +32 -0
- package/dist/hooks/local-storage/index.d.ts +1 -0
- package/dist/hooks/local-storage/index.js +48 -0
- package/dist/hooks/local-storage/index.test.js +82 -0
- package/dist/hooks/scroll-direction/index.d.ts +6 -0
- package/dist/hooks/scroll-direction/index.js +40 -0
- package/dist/hooks/scroll-direction/index.test.js +174 -0
- package/dist/hooks/step/index.d.ts +13 -0
- package/dist/hooks/step/index.js +39 -0
- package/dist/hooks/step/index.test.js +85 -0
- package/dist/hooks/timeout/index.d.ts +1 -0
- package/dist/hooks/timeout/index.js +17 -0
- package/dist/hooks/timeout/index.test.js +31 -0
- package/dist/hooks/window-size/index.d.ts +6 -0
- package/dist/hooks/window-size/index.js +22 -0
- package/dist/hooks/window-size/index.test.js +18 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/package.json +6 -0
- package/dist/styles/index.css +394 -0
- package/dist/types/variables.d.ts +6 -0
- package/dist/types/variables.js +0 -0
- package/package.json +110 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { cn } from "./../../helpers/cn";
|
|
2
|
+
const BaseIcon = ({ size, renderItem }) => {
|
|
3
|
+
return renderItem({
|
|
4
|
+
className: cn(
|
|
5
|
+
size === "sm" && "size-4",
|
|
6
|
+
size === "md" && "size-6",
|
|
7
|
+
size === "lg" && "size-8"
|
|
8
|
+
)
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
export {
|
|
12
|
+
BaseIcon
|
|
13
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { BaseIcon } from "./base";
|
|
3
|
+
const GitHub = ({ className }) => {
|
|
4
|
+
return /* @__PURE__ */ jsx(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
className,
|
|
8
|
+
viewBox: "0 0 98 96",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
children: /* @__PURE__ */ jsx(
|
|
11
|
+
"path",
|
|
12
|
+
{
|
|
13
|
+
d: "M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z",
|
|
14
|
+
fill: "currentColor"
|
|
15
|
+
}
|
|
16
|
+
)
|
|
17
|
+
}
|
|
18
|
+
);
|
|
19
|
+
};
|
|
20
|
+
const GitHubIcon = ({ size = "md" }) => {
|
|
21
|
+
return /* @__PURE__ */ jsx(
|
|
22
|
+
BaseIcon,
|
|
23
|
+
{
|
|
24
|
+
renderItem: (props) => {
|
|
25
|
+
return /* @__PURE__ */ jsx(GitHub, { ...props });
|
|
26
|
+
},
|
|
27
|
+
size
|
|
28
|
+
}
|
|
29
|
+
);
|
|
30
|
+
};
|
|
31
|
+
export {
|
|
32
|
+
GitHubIcon
|
|
33
|
+
};
|
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { ArteOdyssey } from "./arte-odyssey";
|
|
3
|
+
import { GitHubIcon } from "./github-mark";
|
|
4
|
+
import { LogoIcon } from "./logo";
|
|
5
|
+
import {
|
|
6
|
+
AIIcon,
|
|
7
|
+
AlertIcon,
|
|
8
|
+
BadIcon,
|
|
9
|
+
BlogIcon,
|
|
10
|
+
BoringIcon,
|
|
11
|
+
CheckIcon,
|
|
12
|
+
ChevronIcon,
|
|
13
|
+
CloseIcon,
|
|
14
|
+
ColorContrastIcon,
|
|
15
|
+
ColorInfoIcon,
|
|
16
|
+
CopyIcon,
|
|
17
|
+
DarkModeIcon,
|
|
18
|
+
DifficultIcon,
|
|
19
|
+
EasyIcon,
|
|
20
|
+
ExternalLinkIcon,
|
|
21
|
+
FormIcon,
|
|
22
|
+
GoodIcon,
|
|
23
|
+
HistoryIcon,
|
|
24
|
+
InformativeIcon,
|
|
25
|
+
InterestingIcon,
|
|
26
|
+
LightModeIcon,
|
|
27
|
+
LinkIcon,
|
|
28
|
+
ListIcon,
|
|
29
|
+
LocationIcon,
|
|
30
|
+
MailIcon,
|
|
31
|
+
MinusIcon,
|
|
32
|
+
MixedColorIcon,
|
|
33
|
+
NavigationMenuIcon,
|
|
34
|
+
NewsIcon,
|
|
35
|
+
PlusIcon,
|
|
36
|
+
PrepareIcon,
|
|
37
|
+
PublishDateIcon,
|
|
38
|
+
RSSIcon,
|
|
39
|
+
SendIcon,
|
|
40
|
+
ShallowIcon,
|
|
41
|
+
SlideIcon,
|
|
42
|
+
SubscribeIcon,
|
|
43
|
+
TableIcon,
|
|
44
|
+
TagIcon,
|
|
45
|
+
UpdateDateIcon,
|
|
46
|
+
ViewIcon
|
|
47
|
+
} from "./lucide";
|
|
48
|
+
import { QiitaIcon } from "./qiita";
|
|
49
|
+
import { TwitterIcon } from "./twitter";
|
|
50
|
+
import { ZennIcon } from "./zenn";
|
|
51
|
+
const meta = {
|
|
52
|
+
title: "components/icons"
|
|
53
|
+
};
|
|
54
|
+
var icons_stories_default = meta;
|
|
55
|
+
const Primary = {
|
|
56
|
+
render: () => {
|
|
57
|
+
return /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-auto-fit-36 place-items-center gap-4", children: [
|
|
58
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
59
|
+
/* @__PURE__ */ jsx(LogoIcon, {}),
|
|
60
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Logo" })
|
|
61
|
+
] }),
|
|
62
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
63
|
+
/* @__PURE__ */ jsx(CloseIcon, {}),
|
|
64
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Close" })
|
|
65
|
+
] }),
|
|
66
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
67
|
+
/* @__PURE__ */ jsx(ChevronIcon, { direction: "left" }),
|
|
68
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Chevron Left" })
|
|
69
|
+
] }),
|
|
70
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
71
|
+
/* @__PURE__ */ jsx(ChevronIcon, { direction: "up" }),
|
|
72
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Chevron Up" })
|
|
73
|
+
] }),
|
|
74
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
75
|
+
/* @__PURE__ */ jsx(ChevronIcon, { direction: "right" }),
|
|
76
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Chevron Right" })
|
|
77
|
+
] }),
|
|
78
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
79
|
+
/* @__PURE__ */ jsx(ChevronIcon, { direction: "down" }),
|
|
80
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Chevron Down" })
|
|
81
|
+
] }),
|
|
82
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
83
|
+
/* @__PURE__ */ jsx(CheckIcon, {}),
|
|
84
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Check" })
|
|
85
|
+
] }),
|
|
86
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
87
|
+
/* @__PURE__ */ jsx(AlertIcon, { status: "info" }),
|
|
88
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Info" })
|
|
89
|
+
] }),
|
|
90
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
91
|
+
/* @__PURE__ */ jsx(AlertIcon, { status: "success" }),
|
|
92
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Success" })
|
|
93
|
+
] }),
|
|
94
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
95
|
+
/* @__PURE__ */ jsx(AlertIcon, { status: "warning" }),
|
|
96
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Warning" })
|
|
97
|
+
] }),
|
|
98
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
99
|
+
/* @__PURE__ */ jsx(AlertIcon, { status: "error" }),
|
|
100
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Error" })
|
|
101
|
+
] }),
|
|
102
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
103
|
+
/* @__PURE__ */ jsx(LinkIcon, {}),
|
|
104
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Link" })
|
|
105
|
+
] }),
|
|
106
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
107
|
+
/* @__PURE__ */ jsx(ExternalLinkIcon, {}),
|
|
108
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "External Link" })
|
|
109
|
+
] }),
|
|
110
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
111
|
+
/* @__PURE__ */ jsx(BlogIcon, {}),
|
|
112
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Blog" })
|
|
113
|
+
] }),
|
|
114
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
115
|
+
/* @__PURE__ */ jsx(SlideIcon, {}),
|
|
116
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Slide" })
|
|
117
|
+
] }),
|
|
118
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
119
|
+
/* @__PURE__ */ jsx(TagIcon, {}),
|
|
120
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Tag" })
|
|
121
|
+
] }),
|
|
122
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
123
|
+
/* @__PURE__ */ jsx(LocationIcon, {}),
|
|
124
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Location" })
|
|
125
|
+
] }),
|
|
126
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
127
|
+
/* @__PURE__ */ jsx(FormIcon, {}),
|
|
128
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Form" })
|
|
129
|
+
] }),
|
|
130
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
131
|
+
/* @__PURE__ */ jsx(TableIcon, {}),
|
|
132
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Table" })
|
|
133
|
+
] }),
|
|
134
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
135
|
+
/* @__PURE__ */ jsx(ListIcon, {}),
|
|
136
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "List" })
|
|
137
|
+
] }),
|
|
138
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
139
|
+
/* @__PURE__ */ jsx(NavigationMenuIcon, {}),
|
|
140
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Navigation Menu" })
|
|
141
|
+
] }),
|
|
142
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
143
|
+
/* @__PURE__ */ jsx(CopyIcon, {}),
|
|
144
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Copy" })
|
|
145
|
+
] }),
|
|
146
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
147
|
+
/* @__PURE__ */ jsx(PublishDateIcon, {}),
|
|
148
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u516C\u958B\u65E5\u6642" })
|
|
149
|
+
] }),
|
|
150
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
151
|
+
/* @__PURE__ */ jsx(UpdateDateIcon, {}),
|
|
152
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u66F4\u65B0\u65E5\u6642" })
|
|
153
|
+
] }),
|
|
154
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
155
|
+
/* @__PURE__ */ jsx(SendIcon, {}),
|
|
156
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u9001\u4FE1" })
|
|
157
|
+
] }),
|
|
158
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
159
|
+
/* @__PURE__ */ jsx(HistoryIcon, {}),
|
|
160
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u5C65\u6B74" })
|
|
161
|
+
] }),
|
|
162
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
163
|
+
/* @__PURE__ */ jsx(MailIcon, {}),
|
|
164
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u30E1\u30FC\u30EB" })
|
|
165
|
+
] }),
|
|
166
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
167
|
+
/* @__PURE__ */ jsx(PlusIcon, {}),
|
|
168
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u30D7\u30E9\u30B9" })
|
|
169
|
+
] }),
|
|
170
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
171
|
+
/* @__PURE__ */ jsx(MinusIcon, {}),
|
|
172
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u30DE\u30A4\u30CA\u30B9" })
|
|
173
|
+
] }),
|
|
174
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
175
|
+
/* @__PURE__ */ jsx(GoodIcon, {}),
|
|
176
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u826F\u3044" })
|
|
177
|
+
] }),
|
|
178
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
179
|
+
/* @__PURE__ */ jsx(BadIcon, {}),
|
|
180
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u60AA\u3044" })
|
|
181
|
+
] }),
|
|
182
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
183
|
+
/* @__PURE__ */ jsx(InformativeIcon, {}),
|
|
184
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u6709\u76CA" })
|
|
185
|
+
] }),
|
|
186
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
187
|
+
/* @__PURE__ */ jsx(ShallowIcon, {}),
|
|
188
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u6D45\u3044" })
|
|
189
|
+
] }),
|
|
190
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
191
|
+
/* @__PURE__ */ jsx(InterestingIcon, {}),
|
|
192
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u9762\u767D\u3044" })
|
|
193
|
+
] }),
|
|
194
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
195
|
+
/* @__PURE__ */ jsx(BoringIcon, {}),
|
|
196
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u9000\u5C48" })
|
|
197
|
+
] }),
|
|
198
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
199
|
+
/* @__PURE__ */ jsx(EasyIcon, {}),
|
|
200
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u7C21\u5358" })
|
|
201
|
+
] }),
|
|
202
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
203
|
+
/* @__PURE__ */ jsx(DifficultIcon, {}),
|
|
204
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u96E3\u89E3" })
|
|
205
|
+
] }),
|
|
206
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
207
|
+
/* @__PURE__ */ jsx(LightModeIcon, {}),
|
|
208
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u30E9\u30A4\u30C8\u30E2\u30FC\u30C9" })
|
|
209
|
+
] }),
|
|
210
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
211
|
+
/* @__PURE__ */ jsx(DarkModeIcon, {}),
|
|
212
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u30C0\u30FC\u30AF\u30E2\u30FC\u30C9" })
|
|
213
|
+
] }),
|
|
214
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
215
|
+
/* @__PURE__ */ jsx(ViewIcon, {}),
|
|
216
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u95B2\u89A7\u6570" })
|
|
217
|
+
] }),
|
|
218
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
219
|
+
/* @__PURE__ */ jsx(NewsIcon, {}),
|
|
220
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u304A\u77E5\u3089\u305B" })
|
|
221
|
+
] }),
|
|
222
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
223
|
+
/* @__PURE__ */ jsx(SubscribeIcon, {}),
|
|
224
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u30E1\u30FC\u30EB\u306E\u8CFC\u8AAD" })
|
|
225
|
+
] }),
|
|
226
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
227
|
+
/* @__PURE__ */ jsx(ColorInfoIcon, {}),
|
|
228
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u8272\u306B\u3064\u3044\u3066\u306E\u60C5\u5831" })
|
|
229
|
+
] }),
|
|
230
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
231
|
+
/* @__PURE__ */ jsx(ColorContrastIcon, {}),
|
|
232
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u30B3\u30F3\u30C8\u30E9\u30B9\u30C8" })
|
|
233
|
+
] }),
|
|
234
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
235
|
+
/* @__PURE__ */ jsx(MixedColorIcon, {}),
|
|
236
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u6DF7\u3056\u308A\u5408\u3063\u305F\u8272" })
|
|
237
|
+
] }),
|
|
238
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
239
|
+
/* @__PURE__ */ jsx(PrepareIcon, {}),
|
|
240
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "\u6E96\u5099\u4E2D" })
|
|
241
|
+
] }),
|
|
242
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
243
|
+
/* @__PURE__ */ jsx(AIIcon, {}),
|
|
244
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "AI" })
|
|
245
|
+
] }),
|
|
246
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
247
|
+
/* @__PURE__ */ jsx(RSSIcon, {}),
|
|
248
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "RSS" })
|
|
249
|
+
] }),
|
|
250
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
251
|
+
/* @__PURE__ */ jsx(GitHubIcon, {}),
|
|
252
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "GitHub" })
|
|
253
|
+
] }),
|
|
254
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
255
|
+
/* @__PURE__ */ jsx(TwitterIcon, {}),
|
|
256
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Twitter" })
|
|
257
|
+
] }),
|
|
258
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
259
|
+
/* @__PURE__ */ jsx(QiitaIcon, {}),
|
|
260
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Qiita" })
|
|
261
|
+
] }),
|
|
262
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
263
|
+
/* @__PURE__ */ jsx(ZennIcon, {}),
|
|
264
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Zenn" })
|
|
265
|
+
] }),
|
|
266
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center", children: [
|
|
267
|
+
/* @__PURE__ */ jsx(ArteOdyssey, {}),
|
|
268
|
+
/* @__PURE__ */ jsx("p", { className: "text-center", children: "Arte Odyssey" })
|
|
269
|
+
] })
|
|
270
|
+
] });
|
|
271
|
+
}
|
|
272
|
+
};
|
|
273
|
+
export {
|
|
274
|
+
Primary,
|
|
275
|
+
icons_stories_default as default
|
|
276
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { BaseIcon } from "./base";
|
|
3
|
+
const Logo = ({ className }) => {
|
|
4
|
+
return /* @__PURE__ */ jsxs(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
className,
|
|
8
|
+
viewBox: "0 128 1280 896",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
children: [
|
|
11
|
+
/* @__PURE__ */ jsx(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
className: "fill-[var(--teal-800)] dark:fill-[var(--teal-300)]",
|
|
15
|
+
d: " M790.133301,638.723633 C770.630493,652.990479 751.127747,667.257324 731.465332,681.640930 C735.438171,690.030273 742.883850,694.967834 749.515503,700.594055 C752.360901,703.007874 756.156921,704.324951 758.917542,706.810669 C767.254517,714.317078 775.486084,721.963074 783.386658,729.923889 C788.860168,735.439087 793.905640,741.412659 798.813293,747.448975 C809.381287,760.447510 809.976746,775.589172 807.586365,791.227539 C806.662170,797.273438 805.188049,803.240845 804.398376,809.300537 C802.878540,820.965027 798.521545,831.575989 793.464661,842.073303 C784.440430,860.806274 776.418457,880.026123 765.007202,897.548096 C752.081482,917.395630 736.399902,934.908569 719.766357,951.627075 C698.062683,973.441528 673.650269,991.930420 648.370972,1009.323181 C634.717468,1018.717041 619.640259,1023.739258 602.960876,1022.664612 C601.020691,1022.539612 597.834290,1019.705688 597.735901,1017.984192 C597.569946,1015.078979 599.010986,1011.824585 600.556580,1009.171631 C601.546875,1007.471741 603.932617,1006.580322 605.701904,1005.339294 C615.738708,998.298706 626.354187,991.937317 635.640503,984.017212 C643.522949,977.294678 649.626953,968.533386 656.942932,961.092102 C684.149109,933.420044 705.120728,900.970154 727.131348,869.362061 C735.179260,857.804993 741.756226,845.150757 748.244934,832.604431 C753.173096,823.075745 750.174988,813.310669 745.604004,804.557678 C742.696167,798.989380 738.613159,793.581848 733.847534,789.521912 C719.724609,777.489685 705.436096,765.553223 690.352173,754.784058 C681.153381,748.216553 670.401672,743.805969 660.252563,738.612061 C659.069458,738.006470 656.796326,737.964600 655.844971,738.707214 C641.763855,749.699402 626.509338,759.218933 615.220703,773.617798 C602.094055,790.361084 598.199890,809.253845 602.229248,829.421082 C605.042603,843.501831 614.599792,854.323181 623.626648,865.366089 C634.753601,878.978210 648.981445,886.940308 664.954834,892.858337 C669.891479,894.687378 674.501099,897.397461 679.266052,899.692383 C683.024414,901.502380 685.134094,904.633606 683.807983,908.521179 C682.918213,911.129822 680.581177,913.528809 678.320496,915.287354 C676.774780,916.489807 674.236328,916.894958 672.156555,916.856445 C655.094849,916.540833 638.076050,918.032532 621.018005,914.199158 C600.589783,909.608398 581.240173,902.620239 562.835632,892.905396 C551.312622,886.822998 543.361694,876.998596 537.048706,865.840759 C534.202942,860.810974 530.914307,855.764648 529.447266,850.291443 C527.722229,843.855469 527.701904,836.953308 527.059814,830.242004 C526.855835,828.109802 527.027954,825.941650 526.171448,823.358398 C524.918030,825.497742 523.417664,827.531616 522.451843,829.793701 C516.768738,843.104370 507.308746,852.864380 496.282867,862.243103 C484.644012,872.143250 471.631042,879.076050 458.453156,886.025146 C450.146210,890.405579 440.985474,892.613525 431.517548,892.240540 C417.087006,891.672180 402.400818,892.159485 388.320648,889.532410 C371.486938,886.391602 357.219910,878.125305 348.347351,861.856506 C339.222656,845.125366 334.010803,827.177917 329.613251,808.967041 C327.772919,801.346069 327.806274,793.065125 328.224152,785.149536 C329.092438,768.701904 323.999939,754.187256 314.335205,741.470337 C306.726410,731.458679 295.368225,725.201782 281.329590,732.108826 C272.582153,736.412537 263.862000,740.297791 256.126617,746.310913 C241.196091,757.917175 232.938934,773.904724 226.987808,791.190369 C222.564835,804.037415 218.810654,817.145020 215.425919,830.308105 C213.330643,838.456604 212.444046,846.919678 211.092743,855.254211 C210.274643,860.299927 210.152985,865.527710 208.749435,870.394226 C206.225449,879.145691 197.123444,886.360413 188.481461,886.008179 C177.178680,885.547363 165.785278,886.235901 154.563965,885.106934 C138.515533,883.492371 124.394394,877.757202 115.134651,863.159912 C109.268593,853.912537 108.937622,843.846924 109.998123,833.787903 C113.277466,802.683105 119.719162,772.109741 129.316269,742.394287 C135.065018,724.594421 143.400497,707.643616 150.179398,690.158386 C155.031586,677.642883 159.033936,664.799927 163.773315,652.238098 C168.988235,638.415894 174.789322,624.815002 180.018188,610.997803 C188.171585,589.452637 196.071945,567.811523 204.053238,546.201355 C211.640198,525.658875 219.054398,505.051331 226.802200,484.569824 C233.960037,465.647919 241.457962,446.854584 248.809341,428.005920 C251.927414,420.011292 253.842331,411.226166 258.444183,404.202484 C266.493988,391.916412 268.283508,377.992554 270.402863,364.410431 C272.908203,348.354889 269.582672,332.661469 260.535034,318.616669 C257.836334,314.427399 255.452850,310.036316 252.864502,305.774414 C248.085358,297.905243 250.508331,285.447968 257.983826,280.209839 C259.293945,279.291840 260.911499,278.404694 262.447815,278.285309 C270.826660,277.634216 279.218933,276.971130 287.616882,276.789917 C305.589752,276.402100 323.576080,275.943207 341.541626,276.293823 C347.647278,276.412964 354.135468,277.930756 359.702362,280.455414 C372.887146,286.434875 379.146454,297.901672 379.900482,311.844818 C380.646301,325.636383 381.194336,339.620819 379.740997,353.298737 C378.243652,367.390900 375.208832,381.513763 371.084045,395.087555 C364.766815,415.876373 356.794312,436.152466 346.965363,455.607452 C342.107697,465.222504 336.598389,474.533630 332.186493,484.343231 C323.405487,503.867401 315.364105,523.723572 306.642761,543.275513 C302.558807,552.431152 296.987030,560.944275 293.176056,570.196106 C285.656494,588.451111 279.094421,607.098755 271.713409,625.413513 C269.001953,632.141541 264.670135,638.207397 261.829742,644.894897 C257.375275,655.382629 253.533966,666.132019 249.536453,676.809387 C249.301331,677.437439 249.986588,678.410095 250.243561,679.222351 C251.082321,678.621399 252.173782,678.193237 252.721130,677.392883 C258.825592,668.467407 264.494720,659.221680 270.963715,650.572754 C283.585815,633.697266 295.682098,616.276550 309.790100,600.707153 C323.846710,585.194397 339.563324,571.037170 355.573029,557.492310 C367.246002,547.616638 381.183197,540.436279 392.995544,530.700928 C404.568298,521.162964 418.843964,517.621765 431.342377,510.442871 C444.671906,502.786530 458.790405,499.643127 473.706177,500.185516 C487.098450,500.672485 500.549530,501.800751 513.775269,503.901520 C524.497559,505.604584 531.552917,512.636841 536.572815,522.616516 C547.663696,544.665588 541.777283,563.866333 528.561279,582.446350 C519.713501,594.885193 507.560486,602.663330 493.633881,608.058289 C488.261932,610.139343 482.806732,612.012817 477.352875,613.873657 C465.481750,617.923950 454.933960,615.688477 445.714752,607.127686 C438.679352,600.594788 430.377350,596.135681 421.233337,593.540710 C410.442444,590.478333 400.199127,593.676758 391.302826,599.279175 C379.054688,606.992432 367.135712,615.422180 356.001068,624.660278 C342.379822,635.961426 329.700928,648.400269 316.666016,660.403076 C315.595001,661.389282 314.827484,662.750244 314.075378,664.029053 C311.999207,667.559265 312.965973,669.863586 317.015015,670.228882 C320.948059,670.583679 324.986267,670.784485 328.887360,670.308044 C347.241028,668.066833 362.048553,674.918579 375.416840,686.943848 C384.879120,695.455566 391.734589,705.708008 397.875854,716.565613 C399.540924,719.509338 400.007568,723.109131 401.227539,726.330872 C403.982147,733.605408 407.159454,740.733093 409.621796,748.101929 C413.037292,758.322937 415.236725,769.004944 419.310303,778.934265 C422.619293,786.999878 427.129883,794.896973 432.638641,801.612915 C435.892365,805.579651 441.847809,808.137817 447.068512,809.535034 C463.962372,814.055969 481.105713,813.410889 497.604919,807.904724 C507.598389,804.569641 516.932312,799.246033 526.519836,794.725159 C527.510620,794.257935 528.571228,793.326782 528.989258,792.349792 C534.206848,780.157227 543.328552,770.802490 552.131592,761.389343 C561.061157,751.840942 571.457825,743.650452 580.242920,733.984558 C590.406555,722.801880 603.074402,715.390320 615.592651,707.583801 C615.828430,707.436768 615.904907,707.034424 616.740051,705.465576 C602.914917,692.239319 588.232544,679.254150 574.856140,665.039978 C565.196838,654.775696 557.821777,642.370117 555.079468,628.294861 C553.607971,620.742249 554.675964,612.691345 554.630005,604.865112 C554.447510,573.792786 569.015625,550.476440 593.099304,532.327087 C602.863525,524.968811 612.396179,517.006958 623.065918,511.223145 C635.761292,504.341187 649.590515,499.561707 662.875244,493.749634 C666.798218,492.033356 670.540955,489.905151 674.702148,488.380005 C676.157593,498.791107 676.336243,509.015869 678.686218,518.714600 C680.664612,526.879578 685.078491,534.473877 688.643982,542.215027 C689.214966,543.454651 690.990295,544.139465 692.047058,545.388489 C686.789124,552.156372 681.338806,558.373779 676.696472,565.145020 C672.054382,571.916016 666.171448,578.789429 664.489197,586.423706 C661.626404,599.414978 661.490723,613.028076 660.565369,626.404541 C660.413879,628.594116 661.560303,631.346802 663.006714,633.094482 C670.694031,642.382629 679.527283,649.938293 691.626648,653.391968 C695.145508,654.396423 697.831543,654.188843 700.178528,652.538391 C711.812683,644.357788 724.119995,636.823975 734.460510,627.203308 C744.395630,617.959839 752.213196,606.440247 760.994568,596.317749 C762.071899,599.788513 762.896423,602.959045 764.198303,605.919617 C769.594666,618.192017 774.698792,630.734253 788.425720,636.449402 C789.179871,636.763367 789.572449,637.945557 790.133301,638.723633 z"
|
|
16
|
+
}
|
|
17
|
+
),
|
|
18
|
+
/* @__PURE__ */ jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
className: "fill-[var(--teal-700)] dark:fill-[var(--teal-400)]",
|
|
22
|
+
d: " M836.628784,192.963043 C834.948853,196.903946 833.029236,200.860199 830.809753,204.640381 C826.014832,212.806900 820.121948,220.484222 816.473267,229.120071 C813.453491,236.267410 812.435181,244.437866 811.552490,252.270218 C810.125610,264.930725 808.596191,277.665924 812.014587,290.353973 C815.756348,304.242279 821.730530,316.943237 833.948425,325.071289 C843.119202,331.172180 853.349121,335.679688 863.100647,340.909485 C868.794312,343.963013 874.663086,346.744171 880.107849,350.192841 C885.601013,353.672150 888.199707,358.833252 888.082153,365.674286 C887.877258,377.592773 886.089294,389.146484 882.744446,400.587891 C881.616455,404.446259 881.682251,408.874207 882.225525,412.903900 C882.482605,414.810699 884.856384,417.390991 886.773376,417.953033 C896.241455,420.728729 903.412659,425.987701 907.334717,435.156708 C908.282898,437.373199 908.658447,439.868958 909.059204,442.275940 C909.491211,444.870850 909.643677,447.512268 909.976135,450.541199 C899.091980,458.144470 891.610657,468.204468 884.824585,479.285522 C877.178162,491.771545 869.119019,504.277069 859.407166,515.135315 C852.312805,523.067139 845.922546,530.960022 842.395081,540.869812 C840.633728,545.817688 839.932007,551.176514 839.066528,556.401733 C837.800415,564.045898 837.616455,571.967590 835.487183,579.342529 C833.406799,586.548279 830.114441,593.611206 826.209045,600.041382 C817.003052,615.198608 805.377258,628.334045 790.439392,638.662537 C789.572449,637.945557 789.179871,636.763367 788.425720,636.449402 C774.698792,630.734253 769.594666,618.192017 764.198303,605.919617 C762.896423,602.959045 762.071899,599.788513 760.999756,595.961304 C762.069885,593.591797 763.068848,591.896545 764.284363,590.374023 C768.314148,585.326660 772.892883,580.647705 776.393738,575.263550 C782.248657,566.259216 783.438049,555.873352 784.065491,545.344360 C784.467285,538.600891 784.704041,531.538696 786.888916,525.272766 C791.931946,510.809326 801.593567,499.285248 812.397339,488.529724 C824.269043,476.711121 837.859619,465.825684 839.797546,447.303284 C840.423706,441.318665 837.753784,431.529297 830.510620,430.110046 C822.042114,428.450745 809.480042,433.658875 805.474731,441.371490 C800.382446,451.177246 795.192078,460.988739 790.995911,471.189362 C785.277100,485.091492 775.514160,494.820007 762.587219,501.796265 C757.348022,504.623718 751.995361,507.241577 746.763489,510.082062 C742.114380,512.606079 737.715393,515.638245 732.934570,517.862915 C721.210632,523.318298 709.687439,529.014893 700.125549,537.973755 C697.538269,540.397888 694.850464,542.714722 692.208862,545.080811 C690.990295,544.139465 689.214966,543.454651 688.643982,542.215027 C685.078491,534.473877 680.664612,526.879578 678.686218,518.714600 C676.336243,509.015869 676.157593,498.791107 675.065063,488.314209 C683.203003,483.131775 691.128784,478.065552 699.473083,473.822205 C709.171265,468.890289 719.823975,465.616547 728.968323,459.879242 C737.284424,454.661621 744.227966,447.210236 751.586548,440.534088 C754.762390,437.652832 757.487976,434.269501 760.359070,431.061432 C761.351379,429.952576 762.320251,428.769348 763.034058,427.473663 C766.360779,421.434204 764.367493,416.546631 758.039185,414.860077 C745.372253,411.484253 732.615723,411.803467 719.606079,412.532501 C710.143738,413.062744 700.498413,411.039062 690.988464,409.755646 C684.822266,408.923523 682.223206,404.089050 681.104675,398.654022 C679.351929,390.136932 680.155945,381.725494 683.986450,373.851715 C689.815430,361.870087 695.122131,349.542267 702.025208,338.197876 C711.295898,322.962555 721.794922,308.468292 731.916626,293.759064 C742.396729,278.528900 752.255249,262.769165 763.904846,248.479553 C772.366211,238.100739 782.767273,229.069458 793.290710,220.675095 C802.756165,213.124710 813.552734,207.239197 823.789307,200.661545 C827.906677,198.015869 832.096375,195.482834 836.628784,192.963043 z"
|
|
23
|
+
}
|
|
24
|
+
),
|
|
25
|
+
/* @__PURE__ */ jsx(
|
|
26
|
+
"path",
|
|
27
|
+
{
|
|
28
|
+
className: "fill-[var(--teal-600)] dark:fill-[var(--teal-500)]",
|
|
29
|
+
d: " M880.948120,659.655396 C880.030090,663.932678 878.446716,667.846375 878.276794,671.820435 C877.604248,687.548462 876.876526,703.304382 877.158630,719.032227 C877.341125,729.205139 879.241455,739.347351 880.639832,749.762573 C880.926208,750.465942 880.944763,750.910156 880.989136,752.099976 C881.881653,757.728027 882.759399,762.608459 883.613037,767.493103 C888.102173,793.179504 902.214172,814.167236 917.146973,834.534912 C927.872742,849.164307 943.419189,858.323120 959.062073,866.792175 C965.813904,870.447693 973.362793,873.594849 980.878662,874.667847 C995.060364,876.692566 1009.161255,874.167969 1022.445190,868.859070 C1028.044800,866.621094 1033.614380,863.291809 1037.968872,859.162781 C1047.371216,850.247192 1056.345581,840.808655 1064.788574,830.977173 C1070.789429,823.989258 1075.951660,816.211670 1080.926758,808.427673 C1089.246948,795.410095 1089.954956,780.052673 1092.719727,765.473511 C1094.419922,756.507507 1093.639526,747.085938 1094.213745,737.883972 C1094.437378,734.298767 1095.893188,730.741577 1095.811890,727.193970 C1095.303101,704.967041 1098.322998,682.654907 1094.176147,660.509216 C1092.818848,653.261841 1092.740723,645.647339 1090.469604,638.728638 C1087.089233,628.430908 1082.420166,618.540710 1078.048584,608.587280 C1070.758789,591.989563 1062.469360,576.097717 1048.416992,563.861328 C1039.476440,556.076172 1030.482056,548.382629 1019.284180,544.258972 C1011.911377,541.543884 1004.042114,540.176819 996.441528,538.218079 C994.008423,531.229797 998.612732,527.200012 1005.930664,525.347351 C1011.869324,523.843872 1017.869995,522.317078 1023.936523,521.653381 C1031.992188,520.771912 1040.392334,519.247131 1048.197388,520.592407 C1069.898560,524.332764 1089.151733,534.674927 1107.903076,545.761841 C1113.304443,548.955566 1117.994873,553.335571 1123.329102,556.662109 C1134.628418,563.708740 1143.807983,572.443176 1150.815674,584.058533 C1162.410645,603.277039 1170.840576,623.852966 1178.843018,644.639709 C1181.884521,652.540283 1183.581055,660.965210 1185.775513,669.181946 C1186.662109,672.501465 1187.921631,675.917419 1187.851074,679.265015 C1187.362305,702.476440 1186.570923,725.681519 1185.855347,748.888000 C1185.835327,749.536865 1185.626343,750.195251 1185.419678,750.820801 C1182.942505,758.315613 1180.560181,765.844299 1177.928101,773.284485 C1175.407715,780.408508 1173.595947,788.025574 1169.757080,794.391296 C1161.232544,808.526489 1152.711182,822.907227 1142.221558,835.556824 C1126.346924,854.700623 1108.024780,871.529236 1084.446533,881.194458 C1071.395264,886.544434 1058.324097,891.962097 1044.928833,896.326660 C1029.206299,901.449463 1013.477234,906.968689 996.321899,905.244995 C987.244324,904.332886 978.003967,905.140747 968.891541,904.451355 C956.066101,903.480896 945.220764,896.996277 934.438599,890.681885 C917.495605,880.759338 900.614502,871.104919 891.861450,851.752075 C885.447937,837.571594 876.914917,824.363770 869.844482,810.459106 C867.251831,805.360413 866.185791,799.492065 864.358887,793.996277 C860.609802,782.718384 856.675537,771.499573 853.104919,760.165894 C851.435669,754.867371 850.434448,749.358459 849.130371,743.944885 C849.112366,743.204895 849.094421,742.464844 849.048340,740.895874 C849.006287,725.377930 848.992310,710.688965 848.978394,696.000000 C849.028442,695.558472 849.078552,695.116943 849.090576,694.343262 C849.660522,691.810669 850.581848,689.644470 850.826660,687.404297 C852.625488,670.945679 853.949036,654.426575 856.155640,638.025146 C857.095642,631.038208 859.776306,624.283081 861.695374,617.430786 C864.773499,606.440063 867.314819,595.254883 871.158997,584.537842 C873.869812,576.980713 878.210205,569.979370 882.092529,562.877197 C890.026184,548.363892 897.909607,533.814453 906.251404,519.535583 C913.574402,507.000641 918.854919,493.636932 922.465027,479.730865 C924.878601,470.434052 924.194397,460.760956 918.050598,452.669739 C916.916382,451.176025 913.345459,451.532562 910.408691,450.584229 C909.643677,447.512268 909.491211,444.870850 909.059204,442.275940 C908.658447,439.868958 908.282898,437.373199 907.334717,435.156708 C903.412659,425.987701 896.241455,420.728729 886.773376,417.953033 C884.856384,417.390991 882.482605,414.810699 882.225525,412.903900 C881.682251,408.874207 881.616455,404.446259 882.744446,400.587891 C886.089294,389.146484 887.877258,377.592773 888.082153,365.674286 C888.199707,358.833252 885.601013,353.672150 880.107849,350.192841 C874.663086,346.744171 868.794312,343.963013 863.100647,340.909485 C853.349121,335.679688 843.119202,331.172180 833.948425,325.071289 C821.730530,316.943237 815.756348,304.242279 812.014587,290.353973 C808.596191,277.665924 810.125610,264.930725 811.552490,252.270218 C812.435181,244.437866 813.453491,236.267410 816.473267,229.120071 C820.121948,220.484222 826.014832,212.806900 830.809753,204.640381 C833.029236,200.860199 834.948853,196.903946 837.004456,193.027542 C849.732178,185.205154 862.700867,178.398071 878.397339,178.892578 C883.573669,179.055649 888.788574,176.863052 894.019531,176.672699 C903.283020,176.335617 912.582581,176.472015 921.846680,176.876450 C926.766479,177.091232 931.748169,177.883591 936.516052,179.127579 C944.252808,181.146118 952.083740,183.163513 959.423645,186.253296 C968.952515,190.264465 978.409668,194.717896 987.223816,200.087051 C998.508728,206.961243 1009.142822,214.907974 1020.011475,222.458527 C1022.732544,224.348801 1025.254395,226.523193 1027.908813,228.512497 C1037.395630,235.622131 1043.182251,245.447632 1049.593506,255.236938 C1058.522949,268.871277 1063.038696,284.301544 1070.453369,298.484467 C1076.213379,309.502533 1080.579956,321.264526 1085.277100,332.813354 C1086.679810,336.262299 1087.036865,340.126373 1088.002808,343.765808 C1089.044678,347.691528 1090.410278,351.537354 1091.321167,355.490265 C1092.382324,360.095703 1092.854370,364.842834 1094.017456,369.417816 C1098.021729,385.171692 1095.854126,401.162323 1095.646118,417.018524 C1095.548462,424.454193 1092.767578,431.835938 1091.437012,439.283966 C1090.944336,442.041565 1090.841309,444.939941 1091.046997,447.738312 C1091.766846,457.527130 1087.556641,465.634155 1081.535034,472.523071 C1079.048096,475.368134 1074.212524,476.946625 1070.212036,477.546478 C1052.652710,480.179413 1035.217285,478.975708 1019.744141,469.775696 C1012.509399,465.473999 1005.271912,461.665039 997.301758,459.740112 C986.655884,457.168915 977.547424,459.067139 970.609131,469.276459 C962.838623,480.710358 959.411621,493.634918 954.495300,505.971039 C948.175537,521.828857 939.281738,535.969971 930.272705,550.242126 C924.380981,559.575928 919.577637,569.601196 914.369141,579.360657 C908.115479,591.078674 901.380615,602.585876 895.913147,614.663696 C890.944092,625.640259 887.339294,637.239502 883.258911,648.609436 C882.264954,651.379089 881.763916,654.325684 881.106934,657.596069 C881.095825,658.440613 881.014038,658.880066 880.948120,659.655396 z"
|
|
30
|
+
}
|
|
31
|
+
)
|
|
32
|
+
]
|
|
33
|
+
}
|
|
34
|
+
);
|
|
35
|
+
};
|
|
36
|
+
const LogoIcon = ({ size = "md" }) => {
|
|
37
|
+
return /* @__PURE__ */ jsx(
|
|
38
|
+
BaseIcon,
|
|
39
|
+
{
|
|
40
|
+
renderItem: (props) => {
|
|
41
|
+
return /* @__PURE__ */ jsx(Logo, { ...props });
|
|
42
|
+
},
|
|
43
|
+
size
|
|
44
|
+
}
|
|
45
|
+
);
|
|
46
|
+
};
|
|
47
|
+
export {
|
|
48
|
+
Logo,
|
|
49
|
+
LogoIcon
|
|
50
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import type { FC } from 'react';
|
|
2
|
+
import type { Direction, Status } from './../../types/variables';
|
|
3
|
+
import { type BaseIconProps } from './base';
|
|
4
|
+
type IconProps = Partial<BaseIconProps>;
|
|
5
|
+
export declare const ChevronIcon: FC<IconProps & {
|
|
6
|
+
direction: Direction;
|
|
7
|
+
}>;
|
|
8
|
+
export declare const CloseIcon: FC<IconProps>;
|
|
9
|
+
export declare const CheckIcon: FC<IconProps>;
|
|
10
|
+
export declare const AlertIcon: FC<IconProps & {
|
|
11
|
+
status: Status;
|
|
12
|
+
}>;
|
|
13
|
+
export declare const LinkIcon: FC<IconProps>;
|
|
14
|
+
export declare const ExternalLinkIcon: FC<IconProps>;
|
|
15
|
+
export declare const BlogIcon: FC<IconProps>;
|
|
16
|
+
export declare const SlideIcon: FC<IconProps>;
|
|
17
|
+
export declare const TagIcon: FC<IconProps>;
|
|
18
|
+
export declare const LocationIcon: FC<IconProps>;
|
|
19
|
+
export declare const FormIcon: FC<IconProps>;
|
|
20
|
+
export declare const TableIcon: FC<IconProps>;
|
|
21
|
+
export declare const CopyIcon: FC<IconProps>;
|
|
22
|
+
export declare const PublishDateIcon: FC<IconProps>;
|
|
23
|
+
export declare const UpdateDateIcon: FC<IconProps>;
|
|
24
|
+
export declare const MixedColorIcon: FC<IconProps>;
|
|
25
|
+
export declare const ColorInfoIcon: FC<IconProps>;
|
|
26
|
+
export declare const ColorContrastIcon: FC<IconProps>;
|
|
27
|
+
export declare const NewsIcon: FC<IconProps>;
|
|
28
|
+
export declare const SubscribeIcon: FC<IconProps>;
|
|
29
|
+
export declare const PrepareIcon: FC<IconProps>;
|
|
30
|
+
export declare const SendIcon: FC<IconProps>;
|
|
31
|
+
export declare const MailIcon: FC<IconProps>;
|
|
32
|
+
export declare const PlusIcon: FC<IconProps>;
|
|
33
|
+
export declare const MinusIcon: FC<IconProps>;
|
|
34
|
+
export declare const DarkModeIcon: FC<IconProps>;
|
|
35
|
+
export declare const LightModeIcon: FC<IconProps>;
|
|
36
|
+
export declare const ViewIcon: FC<IconProps>;
|
|
37
|
+
export declare const AIIcon: FC<IconProps>;
|
|
38
|
+
export declare const RSSIcon: FC<IconProps>;
|
|
39
|
+
export declare const HistoryIcon: FC<IconProps>;
|
|
40
|
+
export declare const ListIcon: FC<IconProps>;
|
|
41
|
+
export declare const NavigationMenuIcon: FC<IconProps>;
|
|
42
|
+
export declare const GoodIcon: FC<IconProps>;
|
|
43
|
+
export declare const BadIcon: FC<IconProps>;
|
|
44
|
+
export declare const InterestingIcon: FC<IconProps>;
|
|
45
|
+
export declare const BoringIcon: FC<IconProps>;
|
|
46
|
+
export declare const InformativeIcon: FC<IconProps>;
|
|
47
|
+
export declare const ShallowIcon: FC<IconProps>;
|
|
48
|
+
export declare const EasyIcon: FC<IconProps>;
|
|
49
|
+
export declare const DifficultIcon: FC<IconProps>;
|
|
50
|
+
export {};
|