@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,569 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import {
|
|
3
|
+
AlignRight,
|
|
4
|
+
Angry,
|
|
5
|
+
Annoyed,
|
|
6
|
+
Bell,
|
|
7
|
+
Blend,
|
|
8
|
+
Bookmark,
|
|
9
|
+
BookText,
|
|
10
|
+
Bot,
|
|
11
|
+
Calendar,
|
|
12
|
+
Check,
|
|
13
|
+
ChevronDown,
|
|
14
|
+
ChevronLeft,
|
|
15
|
+
ChevronRight,
|
|
16
|
+
ChevronUp,
|
|
17
|
+
CircleAlert,
|
|
18
|
+
CircleCheck,
|
|
19
|
+
ClipboardPenLine,
|
|
20
|
+
Clock,
|
|
21
|
+
Contrast,
|
|
22
|
+
Droplets,
|
|
23
|
+
ExternalLink,
|
|
24
|
+
Eye,
|
|
25
|
+
History,
|
|
26
|
+
Info,
|
|
27
|
+
Laugh,
|
|
28
|
+
Lightbulb,
|
|
29
|
+
Link,
|
|
30
|
+
List,
|
|
31
|
+
ListMinus,
|
|
32
|
+
Mail,
|
|
33
|
+
MapPin,
|
|
34
|
+
Minus,
|
|
35
|
+
MoonStar,
|
|
36
|
+
PaintBucket,
|
|
37
|
+
Plus,
|
|
38
|
+
Presentation,
|
|
39
|
+
Rocket,
|
|
40
|
+
Rss,
|
|
41
|
+
Send,
|
|
42
|
+
Smile,
|
|
43
|
+
Sun,
|
|
44
|
+
Table2,
|
|
45
|
+
Tag,
|
|
46
|
+
ThumbsDown,
|
|
47
|
+
ThumbsUp,
|
|
48
|
+
TriangleAlert,
|
|
49
|
+
X
|
|
50
|
+
} from "lucide-react";
|
|
51
|
+
import { BaseIcon } from "./base";
|
|
52
|
+
const ChevronIcon = ({
|
|
53
|
+
direction,
|
|
54
|
+
size = "md"
|
|
55
|
+
}) => {
|
|
56
|
+
return /* @__PURE__ */ jsx(
|
|
57
|
+
BaseIcon,
|
|
58
|
+
{
|
|
59
|
+
renderItem: (props) => {
|
|
60
|
+
switch (direction) {
|
|
61
|
+
case "up":
|
|
62
|
+
return /* @__PURE__ */ jsx(ChevronUp, { ...props });
|
|
63
|
+
case "down":
|
|
64
|
+
return /* @__PURE__ */ jsx(ChevronDown, { ...props });
|
|
65
|
+
case "left":
|
|
66
|
+
return /* @__PURE__ */ jsx(ChevronLeft, { ...props });
|
|
67
|
+
case "right":
|
|
68
|
+
return /* @__PURE__ */ jsx(ChevronRight, { ...props });
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
size
|
|
72
|
+
}
|
|
73
|
+
);
|
|
74
|
+
};
|
|
75
|
+
const CloseIcon = ({ size = "md" }) => {
|
|
76
|
+
return /* @__PURE__ */ jsx(
|
|
77
|
+
BaseIcon,
|
|
78
|
+
{
|
|
79
|
+
renderItem: (props) => {
|
|
80
|
+
return /* @__PURE__ */ jsx(X, { ...props });
|
|
81
|
+
},
|
|
82
|
+
size
|
|
83
|
+
}
|
|
84
|
+
);
|
|
85
|
+
};
|
|
86
|
+
const CheckIcon = ({ size = "md" }) => {
|
|
87
|
+
return /* @__PURE__ */ jsx(
|
|
88
|
+
BaseIcon,
|
|
89
|
+
{
|
|
90
|
+
renderItem: (props) => {
|
|
91
|
+
return /* @__PURE__ */ jsx(Check, { ...props });
|
|
92
|
+
},
|
|
93
|
+
size
|
|
94
|
+
}
|
|
95
|
+
);
|
|
96
|
+
};
|
|
97
|
+
const AlertIcon = ({
|
|
98
|
+
status,
|
|
99
|
+
size = "md"
|
|
100
|
+
}) => {
|
|
101
|
+
return /* @__PURE__ */ jsx(
|
|
102
|
+
BaseIcon,
|
|
103
|
+
{
|
|
104
|
+
renderItem: (props) => {
|
|
105
|
+
switch (status) {
|
|
106
|
+
case "success":
|
|
107
|
+
return /* @__PURE__ */ jsx(CircleCheck, { ...props });
|
|
108
|
+
case "info":
|
|
109
|
+
return /* @__PURE__ */ jsx(Info, { ...props });
|
|
110
|
+
case "warning":
|
|
111
|
+
return /* @__PURE__ */ jsx(TriangleAlert, { ...props });
|
|
112
|
+
case "error":
|
|
113
|
+
return /* @__PURE__ */ jsx(CircleAlert, { ...props });
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
size
|
|
117
|
+
}
|
|
118
|
+
);
|
|
119
|
+
};
|
|
120
|
+
const LinkIcon = ({ size = "md" }) => {
|
|
121
|
+
return /* @__PURE__ */ jsx(
|
|
122
|
+
BaseIcon,
|
|
123
|
+
{
|
|
124
|
+
renderItem: (props) => {
|
|
125
|
+
return /* @__PURE__ */ jsx(Link, { ...props });
|
|
126
|
+
},
|
|
127
|
+
size
|
|
128
|
+
}
|
|
129
|
+
);
|
|
130
|
+
};
|
|
131
|
+
const ExternalLinkIcon = ({ size = "md" }) => {
|
|
132
|
+
return /* @__PURE__ */ jsx(
|
|
133
|
+
BaseIcon,
|
|
134
|
+
{
|
|
135
|
+
renderItem: (props) => {
|
|
136
|
+
return /* @__PURE__ */ jsx(ExternalLink, { ...props });
|
|
137
|
+
},
|
|
138
|
+
size
|
|
139
|
+
}
|
|
140
|
+
);
|
|
141
|
+
};
|
|
142
|
+
const BlogIcon = ({ size = "md" }) => {
|
|
143
|
+
return /* @__PURE__ */ jsx(
|
|
144
|
+
BaseIcon,
|
|
145
|
+
{
|
|
146
|
+
renderItem: (props) => {
|
|
147
|
+
return /* @__PURE__ */ jsx(BookText, { ...props });
|
|
148
|
+
},
|
|
149
|
+
size
|
|
150
|
+
}
|
|
151
|
+
);
|
|
152
|
+
};
|
|
153
|
+
const SlideIcon = ({ size = "md" }) => {
|
|
154
|
+
return /* @__PURE__ */ jsx(
|
|
155
|
+
BaseIcon,
|
|
156
|
+
{
|
|
157
|
+
renderItem: (props) => {
|
|
158
|
+
return /* @__PURE__ */ jsx(Presentation, { ...props });
|
|
159
|
+
},
|
|
160
|
+
size
|
|
161
|
+
}
|
|
162
|
+
);
|
|
163
|
+
};
|
|
164
|
+
const TagIcon = ({ size = "md" }) => {
|
|
165
|
+
return /* @__PURE__ */ jsx(
|
|
166
|
+
BaseIcon,
|
|
167
|
+
{
|
|
168
|
+
renderItem: (props) => {
|
|
169
|
+
return /* @__PURE__ */ jsx(Tag, { ...props });
|
|
170
|
+
},
|
|
171
|
+
size
|
|
172
|
+
}
|
|
173
|
+
);
|
|
174
|
+
};
|
|
175
|
+
const LocationIcon = ({ size = "md" }) => {
|
|
176
|
+
return /* @__PURE__ */ jsx(
|
|
177
|
+
BaseIcon,
|
|
178
|
+
{
|
|
179
|
+
renderItem: (props) => {
|
|
180
|
+
return /* @__PURE__ */ jsx(MapPin, { ...props });
|
|
181
|
+
},
|
|
182
|
+
size
|
|
183
|
+
}
|
|
184
|
+
);
|
|
185
|
+
};
|
|
186
|
+
const FormIcon = ({ size = "md" }) => {
|
|
187
|
+
return /* @__PURE__ */ jsx(
|
|
188
|
+
BaseIcon,
|
|
189
|
+
{
|
|
190
|
+
renderItem: (props) => {
|
|
191
|
+
return /* @__PURE__ */ jsx(ListMinus, { ...props });
|
|
192
|
+
},
|
|
193
|
+
size
|
|
194
|
+
}
|
|
195
|
+
);
|
|
196
|
+
};
|
|
197
|
+
const TableIcon = ({ size = "md" }) => {
|
|
198
|
+
return /* @__PURE__ */ jsx(
|
|
199
|
+
BaseIcon,
|
|
200
|
+
{
|
|
201
|
+
renderItem: (props) => {
|
|
202
|
+
return /* @__PURE__ */ jsx(Table2, { ...props });
|
|
203
|
+
},
|
|
204
|
+
size
|
|
205
|
+
}
|
|
206
|
+
);
|
|
207
|
+
};
|
|
208
|
+
const CopyIcon = ({ size = "md" }) => {
|
|
209
|
+
return /* @__PURE__ */ jsx(
|
|
210
|
+
BaseIcon,
|
|
211
|
+
{
|
|
212
|
+
renderItem: (props) => {
|
|
213
|
+
return /* @__PURE__ */ jsx(ClipboardPenLine, { ...props });
|
|
214
|
+
},
|
|
215
|
+
size
|
|
216
|
+
}
|
|
217
|
+
);
|
|
218
|
+
};
|
|
219
|
+
const PublishDateIcon = ({ size = "md" }) => {
|
|
220
|
+
return /* @__PURE__ */ jsx(
|
|
221
|
+
BaseIcon,
|
|
222
|
+
{
|
|
223
|
+
renderItem: (props) => {
|
|
224
|
+
return /* @__PURE__ */ jsx(Calendar, { ...props });
|
|
225
|
+
},
|
|
226
|
+
size
|
|
227
|
+
}
|
|
228
|
+
);
|
|
229
|
+
};
|
|
230
|
+
const UpdateDateIcon = ({ size = "md" }) => {
|
|
231
|
+
return /* @__PURE__ */ jsx(
|
|
232
|
+
BaseIcon,
|
|
233
|
+
{
|
|
234
|
+
renderItem: (props) => {
|
|
235
|
+
return /* @__PURE__ */ jsx(Clock, { ...props });
|
|
236
|
+
},
|
|
237
|
+
size
|
|
238
|
+
}
|
|
239
|
+
);
|
|
240
|
+
};
|
|
241
|
+
const MixedColorIcon = ({ size = "md" }) => {
|
|
242
|
+
return /* @__PURE__ */ jsx(
|
|
243
|
+
BaseIcon,
|
|
244
|
+
{
|
|
245
|
+
renderItem: (props) => {
|
|
246
|
+
return /* @__PURE__ */ jsx(Blend, { ...props });
|
|
247
|
+
},
|
|
248
|
+
size
|
|
249
|
+
}
|
|
250
|
+
);
|
|
251
|
+
};
|
|
252
|
+
const ColorInfoIcon = ({ size = "md" }) => {
|
|
253
|
+
return /* @__PURE__ */ jsx(
|
|
254
|
+
BaseIcon,
|
|
255
|
+
{
|
|
256
|
+
renderItem: (props) => {
|
|
257
|
+
return /* @__PURE__ */ jsx(PaintBucket, { ...props });
|
|
258
|
+
},
|
|
259
|
+
size
|
|
260
|
+
}
|
|
261
|
+
);
|
|
262
|
+
};
|
|
263
|
+
const ColorContrastIcon = ({ size = "md" }) => {
|
|
264
|
+
return /* @__PURE__ */ jsx(
|
|
265
|
+
BaseIcon,
|
|
266
|
+
{
|
|
267
|
+
renderItem: (props) => {
|
|
268
|
+
return /* @__PURE__ */ jsx(Contrast, { ...props });
|
|
269
|
+
},
|
|
270
|
+
size
|
|
271
|
+
}
|
|
272
|
+
);
|
|
273
|
+
};
|
|
274
|
+
const NewsIcon = ({ size = "md" }) => {
|
|
275
|
+
return /* @__PURE__ */ jsx(
|
|
276
|
+
BaseIcon,
|
|
277
|
+
{
|
|
278
|
+
renderItem: (props) => {
|
|
279
|
+
return /* @__PURE__ */ jsx(Bell, { ...props });
|
|
280
|
+
},
|
|
281
|
+
size
|
|
282
|
+
}
|
|
283
|
+
);
|
|
284
|
+
};
|
|
285
|
+
const SubscribeIcon = ({ size = "md" }) => {
|
|
286
|
+
return /* @__PURE__ */ jsx(
|
|
287
|
+
BaseIcon,
|
|
288
|
+
{
|
|
289
|
+
renderItem: (props) => {
|
|
290
|
+
return /* @__PURE__ */ jsx(Bookmark, { ...props });
|
|
291
|
+
},
|
|
292
|
+
size
|
|
293
|
+
}
|
|
294
|
+
);
|
|
295
|
+
};
|
|
296
|
+
const PrepareIcon = ({ size = "md" }) => {
|
|
297
|
+
return /* @__PURE__ */ jsx(
|
|
298
|
+
BaseIcon,
|
|
299
|
+
{
|
|
300
|
+
renderItem: (props) => {
|
|
301
|
+
return /* @__PURE__ */ jsx(Rocket, { ...props });
|
|
302
|
+
},
|
|
303
|
+
size
|
|
304
|
+
}
|
|
305
|
+
);
|
|
306
|
+
};
|
|
307
|
+
const SendIcon = ({ size = "md" }) => {
|
|
308
|
+
return /* @__PURE__ */ jsx(
|
|
309
|
+
BaseIcon,
|
|
310
|
+
{
|
|
311
|
+
renderItem: (props) => {
|
|
312
|
+
return /* @__PURE__ */ jsx(Send, { ...props });
|
|
313
|
+
},
|
|
314
|
+
size
|
|
315
|
+
}
|
|
316
|
+
);
|
|
317
|
+
};
|
|
318
|
+
const MailIcon = ({ size = "md" }) => {
|
|
319
|
+
return /* @__PURE__ */ jsx(
|
|
320
|
+
BaseIcon,
|
|
321
|
+
{
|
|
322
|
+
renderItem: (props) => {
|
|
323
|
+
return /* @__PURE__ */ jsx(Mail, { ...props });
|
|
324
|
+
},
|
|
325
|
+
size
|
|
326
|
+
}
|
|
327
|
+
);
|
|
328
|
+
};
|
|
329
|
+
const PlusIcon = ({ size = "md" }) => {
|
|
330
|
+
return /* @__PURE__ */ jsx(
|
|
331
|
+
BaseIcon,
|
|
332
|
+
{
|
|
333
|
+
renderItem: (props) => {
|
|
334
|
+
return /* @__PURE__ */ jsx(Plus, { ...props });
|
|
335
|
+
},
|
|
336
|
+
size
|
|
337
|
+
}
|
|
338
|
+
);
|
|
339
|
+
};
|
|
340
|
+
const MinusIcon = ({ size = "md" }) => {
|
|
341
|
+
return /* @__PURE__ */ jsx(
|
|
342
|
+
BaseIcon,
|
|
343
|
+
{
|
|
344
|
+
renderItem: (props) => {
|
|
345
|
+
return /* @__PURE__ */ jsx(Minus, { ...props });
|
|
346
|
+
},
|
|
347
|
+
size
|
|
348
|
+
}
|
|
349
|
+
);
|
|
350
|
+
};
|
|
351
|
+
const DarkModeIcon = ({ size = "md" }) => {
|
|
352
|
+
return /* @__PURE__ */ jsx(
|
|
353
|
+
BaseIcon,
|
|
354
|
+
{
|
|
355
|
+
renderItem: (props) => {
|
|
356
|
+
return /* @__PURE__ */ jsx(MoonStar, { ...props });
|
|
357
|
+
},
|
|
358
|
+
size
|
|
359
|
+
}
|
|
360
|
+
);
|
|
361
|
+
};
|
|
362
|
+
const LightModeIcon = ({ size = "md" }) => {
|
|
363
|
+
return /* @__PURE__ */ jsx(
|
|
364
|
+
BaseIcon,
|
|
365
|
+
{
|
|
366
|
+
renderItem: (props) => {
|
|
367
|
+
return /* @__PURE__ */ jsx(Sun, { ...props });
|
|
368
|
+
},
|
|
369
|
+
size
|
|
370
|
+
}
|
|
371
|
+
);
|
|
372
|
+
};
|
|
373
|
+
const ViewIcon = ({ size = "md" }) => {
|
|
374
|
+
return /* @__PURE__ */ jsx(
|
|
375
|
+
BaseIcon,
|
|
376
|
+
{
|
|
377
|
+
renderItem: (props) => {
|
|
378
|
+
return /* @__PURE__ */ jsx(Eye, { ...props });
|
|
379
|
+
},
|
|
380
|
+
size
|
|
381
|
+
}
|
|
382
|
+
);
|
|
383
|
+
};
|
|
384
|
+
const AIIcon = ({ size = "md" }) => {
|
|
385
|
+
return /* @__PURE__ */ jsx(
|
|
386
|
+
BaseIcon,
|
|
387
|
+
{
|
|
388
|
+
renderItem: (props) => {
|
|
389
|
+
return /* @__PURE__ */ jsx(Bot, { ...props });
|
|
390
|
+
},
|
|
391
|
+
size
|
|
392
|
+
}
|
|
393
|
+
);
|
|
394
|
+
};
|
|
395
|
+
const RSSIcon = ({ size = "md" }) => {
|
|
396
|
+
return /* @__PURE__ */ jsx(
|
|
397
|
+
BaseIcon,
|
|
398
|
+
{
|
|
399
|
+
renderItem: (props) => {
|
|
400
|
+
return /* @__PURE__ */ jsx(Rss, { ...props });
|
|
401
|
+
},
|
|
402
|
+
size
|
|
403
|
+
}
|
|
404
|
+
);
|
|
405
|
+
};
|
|
406
|
+
const HistoryIcon = ({ size = "md" }) => {
|
|
407
|
+
return /* @__PURE__ */ jsx(
|
|
408
|
+
BaseIcon,
|
|
409
|
+
{
|
|
410
|
+
renderItem: (props) => {
|
|
411
|
+
return /* @__PURE__ */ jsx(History, { ...props });
|
|
412
|
+
},
|
|
413
|
+
size
|
|
414
|
+
}
|
|
415
|
+
);
|
|
416
|
+
};
|
|
417
|
+
const ListIcon = ({ size = "md" }) => {
|
|
418
|
+
return /* @__PURE__ */ jsx(
|
|
419
|
+
BaseIcon,
|
|
420
|
+
{
|
|
421
|
+
renderItem: (props) => {
|
|
422
|
+
return /* @__PURE__ */ jsx(List, { ...props });
|
|
423
|
+
},
|
|
424
|
+
size
|
|
425
|
+
}
|
|
426
|
+
);
|
|
427
|
+
};
|
|
428
|
+
const NavigationMenuIcon = ({ size = "md" }) => {
|
|
429
|
+
return /* @__PURE__ */ jsx(
|
|
430
|
+
BaseIcon,
|
|
431
|
+
{
|
|
432
|
+
renderItem: (props) => {
|
|
433
|
+
return /* @__PURE__ */ jsx(AlignRight, { ...props });
|
|
434
|
+
},
|
|
435
|
+
size
|
|
436
|
+
}
|
|
437
|
+
);
|
|
438
|
+
};
|
|
439
|
+
const GoodIcon = ({ size = "md" }) => {
|
|
440
|
+
return /* @__PURE__ */ jsx(
|
|
441
|
+
BaseIcon,
|
|
442
|
+
{
|
|
443
|
+
renderItem: (props) => {
|
|
444
|
+
return /* @__PURE__ */ jsx(ThumbsUp, { ...props });
|
|
445
|
+
},
|
|
446
|
+
size
|
|
447
|
+
}
|
|
448
|
+
);
|
|
449
|
+
};
|
|
450
|
+
const BadIcon = ({ size = "md" }) => {
|
|
451
|
+
return /* @__PURE__ */ jsx(
|
|
452
|
+
BaseIcon,
|
|
453
|
+
{
|
|
454
|
+
renderItem: (props) => {
|
|
455
|
+
return /* @__PURE__ */ jsx(ThumbsDown, { ...props });
|
|
456
|
+
},
|
|
457
|
+
size
|
|
458
|
+
}
|
|
459
|
+
);
|
|
460
|
+
};
|
|
461
|
+
const InterestingIcon = ({ size = "md" }) => {
|
|
462
|
+
return /* @__PURE__ */ jsx(
|
|
463
|
+
BaseIcon,
|
|
464
|
+
{
|
|
465
|
+
renderItem: (props) => {
|
|
466
|
+
return /* @__PURE__ */ jsx(Smile, { ...props });
|
|
467
|
+
},
|
|
468
|
+
size
|
|
469
|
+
}
|
|
470
|
+
);
|
|
471
|
+
};
|
|
472
|
+
const BoringIcon = ({ size = "md" }) => {
|
|
473
|
+
return /* @__PURE__ */ jsx(
|
|
474
|
+
BaseIcon,
|
|
475
|
+
{
|
|
476
|
+
renderItem: (props) => {
|
|
477
|
+
return /* @__PURE__ */ jsx(Annoyed, { ...props });
|
|
478
|
+
},
|
|
479
|
+
size
|
|
480
|
+
}
|
|
481
|
+
);
|
|
482
|
+
};
|
|
483
|
+
const InformativeIcon = ({ size = "md" }) => {
|
|
484
|
+
return /* @__PURE__ */ jsx(
|
|
485
|
+
BaseIcon,
|
|
486
|
+
{
|
|
487
|
+
renderItem: (props) => {
|
|
488
|
+
return /* @__PURE__ */ jsx(Lightbulb, { ...props });
|
|
489
|
+
},
|
|
490
|
+
size
|
|
491
|
+
}
|
|
492
|
+
);
|
|
493
|
+
};
|
|
494
|
+
const ShallowIcon = ({ size = "md" }) => {
|
|
495
|
+
return /* @__PURE__ */ jsx(
|
|
496
|
+
BaseIcon,
|
|
497
|
+
{
|
|
498
|
+
renderItem: (props) => {
|
|
499
|
+
return /* @__PURE__ */ jsx(Droplets, { ...props });
|
|
500
|
+
},
|
|
501
|
+
size
|
|
502
|
+
}
|
|
503
|
+
);
|
|
504
|
+
};
|
|
505
|
+
const EasyIcon = ({ size = "md" }) => {
|
|
506
|
+
return /* @__PURE__ */ jsx(
|
|
507
|
+
BaseIcon,
|
|
508
|
+
{
|
|
509
|
+
renderItem: (props) => {
|
|
510
|
+
return /* @__PURE__ */ jsx(Laugh, { ...props });
|
|
511
|
+
},
|
|
512
|
+
size
|
|
513
|
+
}
|
|
514
|
+
);
|
|
515
|
+
};
|
|
516
|
+
const DifficultIcon = ({ size = "md" }) => {
|
|
517
|
+
return /* @__PURE__ */ jsx(
|
|
518
|
+
BaseIcon,
|
|
519
|
+
{
|
|
520
|
+
renderItem: (props) => {
|
|
521
|
+
return /* @__PURE__ */ jsx(Angry, { ...props });
|
|
522
|
+
},
|
|
523
|
+
size
|
|
524
|
+
}
|
|
525
|
+
);
|
|
526
|
+
};
|
|
527
|
+
export {
|
|
528
|
+
AIIcon,
|
|
529
|
+
AlertIcon,
|
|
530
|
+
BadIcon,
|
|
531
|
+
BlogIcon,
|
|
532
|
+
BoringIcon,
|
|
533
|
+
CheckIcon,
|
|
534
|
+
ChevronIcon,
|
|
535
|
+
CloseIcon,
|
|
536
|
+
ColorContrastIcon,
|
|
537
|
+
ColorInfoIcon,
|
|
538
|
+
CopyIcon,
|
|
539
|
+
DarkModeIcon,
|
|
540
|
+
DifficultIcon,
|
|
541
|
+
EasyIcon,
|
|
542
|
+
ExternalLinkIcon,
|
|
543
|
+
FormIcon,
|
|
544
|
+
GoodIcon,
|
|
545
|
+
HistoryIcon,
|
|
546
|
+
InformativeIcon,
|
|
547
|
+
InterestingIcon,
|
|
548
|
+
LightModeIcon,
|
|
549
|
+
LinkIcon,
|
|
550
|
+
ListIcon,
|
|
551
|
+
LocationIcon,
|
|
552
|
+
MailIcon,
|
|
553
|
+
MinusIcon,
|
|
554
|
+
MixedColorIcon,
|
|
555
|
+
NavigationMenuIcon,
|
|
556
|
+
NewsIcon,
|
|
557
|
+
PlusIcon,
|
|
558
|
+
PrepareIcon,
|
|
559
|
+
PublishDateIcon,
|
|
560
|
+
RSSIcon,
|
|
561
|
+
SendIcon,
|
|
562
|
+
ShallowIcon,
|
|
563
|
+
SlideIcon,
|
|
564
|
+
SubscribeIcon,
|
|
565
|
+
TableIcon,
|
|
566
|
+
TagIcon,
|
|
567
|
+
UpdateDateIcon,
|
|
568
|
+
ViewIcon
|
|
569
|
+
};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { BaseIcon } from "./base";
|
|
3
|
+
const Qiita = ({ className }) => {
|
|
4
|
+
return /* @__PURE__ */ jsxs(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
className,
|
|
8
|
+
enableBackground: "new 0 0 300 300",
|
|
9
|
+
version: "1.1",
|
|
10
|
+
viewBox: "0 0 300 300",
|
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
12
|
+
children: [
|
|
13
|
+
/* @__PURE__ */ jsx(
|
|
14
|
+
"path",
|
|
15
|
+
{
|
|
16
|
+
d: "\nM170.000000,301.000000 \n C155.979111,301.000000 141.958206,301.000000 127.345764,300.629639 \n C126.239006,299.869110 125.762238,299.207245 125.203033,299.128113 \n C106.989998,296.551727 90.219421,289.994354 74.408813,280.788544 \n C57.083073,270.700592 42.210533,257.637878 30.401751,241.568222 \n C17.259384,223.683792 7.533754,204.007355 3.831533,181.762802 \n C3.441022,179.416443 1.969823,177.249939 0.999998,175.000000 \n C1.000000,159.312439 1.000000,143.624878 1.370366,127.345764 \n C2.158406,125.906921 2.752678,125.101463 2.964882,124.205513 \n C4.269327,118.697952 5.149469,113.067192 6.791410,107.666100 \n C14.922722,80.918518 29.169430,58.105297 50.064369,39.282753 \n C66.691437,24.304787 85.516151,13.547151 106.805115,7.032844 \n C114.437439,4.697392 122.262764,2.992616 130.000000,0.999999 \n C144.354233,1.000000 158.708450,1.000000 173.671295,1.361813 \n C175.169434,2.129513 176.023727,2.661134 176.953934,2.921903 \n C186.592621,5.623932 196.436935,7.734229 205.854401,11.056800 \n C232.833069,20.575109 254.469681,37.783997 271.493408,60.348236 \n C284.871704,78.080574 294.486145,97.924057 298.162964,120.224716 \n C298.550507,122.575172 300.028107,124.745895 301.000000,127.000000 \n C301.000000,127.000000 301.000000,127.500000 300.671753,127.849342 \n C300.562347,129.132462 300.781158,130.066238 301.000000,131.000000 \n C301.000000,145.354233 301.000000,159.708450 300.629639,174.654236 \n C299.171234,179.593353 298.115143,183.949219 296.989014,188.286880 \n C293.931519,200.063629 289.705322,211.372101 283.829315,222.004288 \n C274.894348,218.557892 269.438446,218.192047 260.010956,219.870041 \n C258.349915,220.165695 256.086395,220.077896 254.829315,219.164688 \n C245.126648,212.116272 238.846954,205.039108 243.475754,192.582794 \n C246.148499,185.390274 247.366974,177.402039 247.771225,169.694901 \n C248.162460,162.236069 246.965790,154.638504 245.950226,147.172104 \n C243.286118,127.585983 235.478455,110.158607 223.218216,94.679520 \n C221.024734,91.910141 217.973633,89.201195 217.250397,86.024498 \n C216.023682,80.636421 216.256302,74.901382 216.028015,69.305954 \n C215.878708,65.646271 216.192627,61.963074 215.956909,58.312504 \n C215.467712,50.736240 210.890488,48.355881 204.493225,52.185108 \n C199.484238,55.183346 194.132187,57.742550 189.570175,61.311783 \n C185.799606,64.261810 182.755142,63.557652 178.911240,62.052422 \n C163.352173,55.959682 147.249557,55.541851 131.037292,58.512772 \n C117.563240,60.981918 105.902451,67.683006 94.499496,74.962189 \n C92.475288,76.254356 89.336090,76.721367 86.927635,76.308891 \n C80.881927,75.273514 74.984543,73.403992 68.980583,72.083038 \n C63.874626,70.959656 60.615265,74.591972 61.897961,79.728706 \n C62.917603,83.812019 63.679840,87.980576 65.003036,91.962868 \n C68.001892,100.988197 67.465935,108.978676 62.427811,117.706459 \n C56.071018,128.718628 53.742241,141.571228 53.231621,154.218140 \n C52.788898,165.183334 53.418179,176.383179 55.232830,187.201004 \n C57.648373,201.600983 63.625504,214.933578 73.514030,225.895630 \n C90.289635,244.492462 112.103630,252.717087 136.564270,253.806870 \n C147.362289,254.287949 158.273514,252.894623 169.097687,251.945709 \n C181.313354,250.874802 193.160629,247.931686 203.901901,241.907135 \n C211.074463,237.884247 217.715607,232.913864 223.483047,229.102097 \n C228.864258,234.439667 233.766571,240.463348 239.805130,244.961761 \n C245.717926,249.366486 252.788116,252.217545 259.766663,255.974686 \n C254.959473,260.094696 249.638489,264.894928 244.066971,269.384247 \n C228.576508,281.865814 211.133575,290.646606 191.990906,295.945251 \n C184.749069,297.949768 177.335373,299.333374 170.000000,301.000000 \nz",
|
|
17
|
+
fill: "#55C500",
|
|
18
|
+
opacity: "1.000000",
|
|
19
|
+
stroke: "none"
|
|
20
|
+
}
|
|
21
|
+
),
|
|
22
|
+
/* @__PURE__ */ jsx(
|
|
23
|
+
"path",
|
|
24
|
+
{
|
|
25
|
+
d: "\nM201.225189,166.276794 \n C189.031174,176.100708 175.086823,180.471069 160.137070,181.956238 \n C150.819595,182.881897 141.426971,184.137253 132.118484,183.810059 \n C118.485313,183.330841 105.088982,180.780624 94.964722,170.370422 \n C86.975929,162.155975 83.842285,151.873108 83.871910,140.384537 \n C79.755951,142.146729 75.807930,143.837021 71.859909,145.527313 \n C71.426521,145.030685 70.993141,144.534042 70.559761,144.037399 \n C71.605118,142.712494 72.390259,140.915161 73.752190,140.165009 \n C76.273209,138.776428 79.261017,138.239395 81.794548,136.867722 \n C83.040543,136.193130 83.705650,134.445633 85.179832,132.440857 \n C79.511604,132.440857 75.184845,132.440857 70.376671,132.440857 \n C70.295670,131.767517 70.156448,130.610168 70.024399,129.512482 \n C75.184860,127.892395 81.266022,130.216797 85.992661,124.268692 \n C81.129585,123.773880 77.317062,123.373009 73.501640,123.002037 \n C70.696785,122.729332 68.221008,122.199181 69.412491,117.908295 \n C73.094612,118.514526 76.738632,119.062492 80.361443,119.726273 \n C83.667381,120.331993 85.657936,120.257996 87.215927,116.056198 \n C96.187126,91.861618 113.308662,77.035995 139.129654,73.009537 \n C162.044128,69.436325 181.371948,76.328560 196.897110,93.513306 \n C199.927505,96.867638 202.454681,100.743088 204.789322,104.633041 \n C206.068741,106.764793 206.941666,107.317734 209.399292,106.376808 \n C212.693344,105.115639 216.239105,104.439819 219.729736,103.802704 \n C220.976517,103.575134 222.377533,104.192612 223.708160,104.424370 \n C223.711136,104.857109 223.714096,105.289856 223.717056,105.722595 \n C218.539001,107.575287 213.360947,109.427979 207.998383,111.346695 \n C212.074692,119.524742 219.169907,110.879448 224.173523,115.106606 \n C221.408920,120.754829 214.594101,115.808136 211.178375,119.902344 \n C211.357635,123.787003 214.459824,123.975601 217.679230,124.365570 \n C220.484360,124.705360 223.230530,125.531921 226.134338,126.172417 \n C224.529892,129.574585 224.529892,129.574585 212.763885,127.405243 \n C214.084839,141.788361 212.905441,155.465408 201.225189,166.276794 \nz",
|
|
26
|
+
fill: "#55C500",
|
|
27
|
+
opacity: "1.000000",
|
|
28
|
+
stroke: "none"
|
|
29
|
+
}
|
|
30
|
+
)
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
);
|
|
34
|
+
};
|
|
35
|
+
const QiitaIcon = ({ size = "md" }) => {
|
|
36
|
+
return /* @__PURE__ */ jsx(
|
|
37
|
+
BaseIcon,
|
|
38
|
+
{
|
|
39
|
+
renderItem: (props) => {
|
|
40
|
+
return /* @__PURE__ */ jsx(Qiita, { ...props });
|
|
41
|
+
},
|
|
42
|
+
size
|
|
43
|
+
}
|
|
44
|
+
);
|
|
45
|
+
};
|
|
46
|
+
export {
|
|
47
|
+
QiitaIcon
|
|
48
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { BaseIcon } from "./base";
|
|
3
|
+
const Twitter = ({ className }) => {
|
|
4
|
+
return /* @__PURE__ */ jsx(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
className,
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 1200 1227",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11
|
+
children: /* @__PURE__ */ jsx(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
className: "fill-[#0f1419] dark:fill-[#fff]",
|
|
15
|
+
d: "M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z"
|
|
16
|
+
}
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
};
|
|
21
|
+
const TwitterIcon = ({ size = "md" }) => {
|
|
22
|
+
return /* @__PURE__ */ jsx(
|
|
23
|
+
BaseIcon,
|
|
24
|
+
{
|
|
25
|
+
renderItem: (props) => {
|
|
26
|
+
return /* @__PURE__ */ jsx(Twitter, { ...props });
|
|
27
|
+
},
|
|
28
|
+
size
|
|
29
|
+
}
|
|
30
|
+
);
|
|
31
|
+
};
|
|
32
|
+
export {
|
|
33
|
+
TwitterIcon
|
|
34
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { BaseIcon } from "./base";
|
|
3
|
+
const Zenn = ({ 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__ */ jsxs("g", { fill: "#3EA8FF", children: [
|
|
11
|
+
/* @__PURE__ */ jsx(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
d: "M3.9,83.3h17c0.9,0,1.7-0.5,2.2-1.2L69.9,5.2c0.6-1-0.1-2.2-1.3-2.2H52.5c-0.8,0-1.5,0.4-1.9,1.1L3.1,81.9\n C2.8,82.5,3.2,83.3,3.9,83.3z"
|
|
15
|
+
}
|
|
16
|
+
),
|
|
17
|
+
/* @__PURE__ */ jsx(
|
|
18
|
+
"path",
|
|
19
|
+
{
|
|
20
|
+
d: "M62.5,82.1l22.1-35.5c0.7-1.1-0.1-2.5-1.4-2.5h-16c-0.6,0-1.2,0.3-1.5,0.8L43,81.2c-0.6,0.9,0.1,2.1,1.2,2.1\n h16.3C61.3,83.3,62.1,82.9,62.5,82.1z"
|
|
21
|
+
}
|
|
22
|
+
)
|
|
23
|
+
] })
|
|
24
|
+
}
|
|
25
|
+
);
|
|
26
|
+
};
|
|
27
|
+
const ZennIcon = ({ size = "md" }) => {
|
|
28
|
+
return /* @__PURE__ */ jsx(
|
|
29
|
+
BaseIcon,
|
|
30
|
+
{
|
|
31
|
+
renderItem: (props) => {
|
|
32
|
+
return /* @__PURE__ */ jsx(Zenn, { ...props });
|
|
33
|
+
},
|
|
34
|
+
size
|
|
35
|
+
}
|
|
36
|
+
);
|
|
37
|
+
};
|
|
38
|
+
export {
|
|
39
|
+
Zenn,
|
|
40
|
+
ZennIcon
|
|
41
|
+
};
|