@elmethis/qwik 0.0.2 → 0.0.4
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/.prettierignore +6 -0
- package/.storybook/main.ts +23 -0
- package/.storybook/preview-head.html +4 -0
- package/.storybook/preview.tsx +51 -0
- package/.storybook/sb.scss +13 -0
- package/.storybook/tsconfig.json +24 -0
- package/eslint.config.js +79 -0
- package/package.json +5 -8
- package/src/assets/bg1.webp +0 -0
- package/src/assets/bg2.webp +0 -0
- package/src/assets/images/2.svg +4 -0
- package/src/assets/images/lamdscape.svg +4 -0
- package/src/assets/images/portrait.svg +4 -0
- package/src/assets/images/square.svg +4 -0
- package/src/assets/vite.svg +1 -0
- package/src/assets/vue.svg +1 -0
- package/src/components/code/elm-code-block.module.scss +67 -0
- package/src/components/code/elm-code-block.stories.tsx +44 -0
- package/src/components/code/elm-code-block.tsx +95 -0
- package/src/components/code/elm-katex.stories.tsx +28 -0
- package/src/components/code/elm-katex.tsx +34 -0
- package/src/components/code/elm-shiki-highlighter.global.scss +18 -0
- package/src/components/code/elm-shiki-highlighter.stories.tsx +21 -0
- package/src/components/code/elm-shiki-highlighter.tsx +44 -0
- package/src/components/code/seed/main.rs +24 -0
- package/{lib/qwik31.js → src/components/code/shikiInstance.ts} +8 -11
- package/src/components/containments/elm-toggle.module.scss +132 -0
- package/src/components/containments/elm-toggle.stories.tsx +34 -0
- package/src/components/containments/elm-toggle.tsx +106 -0
- package/src/components/fallback/elm-block-fallback.module.scss +8 -0
- package/src/components/fallback/elm-block-fallback.stories.tsx +14 -0
- package/src/components/fallback/elm-block-fallback.tsx +20 -0
- package/src/components/fallback/elm-rectangle-wave.module.scss +42 -0
- package/src/components/fallback/elm-rectangle-wave.stories.tsx +28 -0
- package/src/components/fallback/elm-rectangle-wave.tsx +11 -0
- package/src/components/icon/elm-dot-loading-icon.module.scss +53 -0
- package/src/components/icon/elm-dot-loading-icon.stories.tsx +15 -0
- package/src/components/icon/elm-dot-loading-icon.tsx +35 -0
- package/src/components/icon/elm-inline-icon.module.scss +21 -0
- package/src/components/icon/elm-inline-icon.stories.tsx +16 -0
- package/src/components/icon/elm-inline-icon.tsx +25 -0
- package/src/components/icon/elm-language-icon.stories.tsx +22 -0
- package/src/components/icon/elm-language-icon.tsx +167 -0
- package/src/components/icon/elm-mdi-icon.module.scss +8 -0
- package/src/components/icon/elm-mdi-icon.stories.tsx +25 -0
- package/src/components/icon/elm-mdi-icon.tsx +34 -0
- package/src/components/icon/languages/bash.module.scss +6 -0
- package/src/components/icon/languages/bash.tsx +27 -0
- package/src/components/icon/languages/c-plus-plus.tsx +33 -0
- package/src/components/icon/languages/c-sharp.tsx +29 -0
- package/src/components/icon/languages/c.tsx +27 -0
- package/src/components/icon/languages/css.tsx +21 -0
- package/src/components/icon/languages/go.tsx +22 -0
- package/src/components/icon/languages/html.tsx +30 -0
- package/src/components/icon/languages/java.tsx +37 -0
- package/src/components/icon/languages/javascript.tsx +22 -0
- package/src/components/icon/languages/json.tsx +53 -0
- package/src/components/icon/languages/kotlin.tsx +36 -0
- package/src/components/icon/languages/language-interface.ts +4 -0
- package/src/components/icon/languages/lua.tsx +29 -0
- package/src/components/icon/languages/npm.tsx +25 -0
- package/src/components/icon/languages/python.tsx +67 -0
- package/src/components/icon/languages/rust.tsx +19 -0
- package/src/components/icon/languages/sql.tsx +21 -0
- package/src/components/icon/languages/terraform.tsx +31 -0
- package/src/components/icon/languages/typescript.tsx +22 -0
- package/src/components/media/elm-block-image.module.scss +68 -0
- package/src/components/media/elm-block-image.stories.tsx +79 -0
- package/src/components/media/elm-block-image.tsx +110 -0
- package/src/components/media/elm-file.module.scss +43 -0
- package/src/components/media/elm-file.stories.tsx +27 -0
- package/src/components/media/elm-file.tsx +75 -0
- package/src/components/navigation/elm-bookmark.module.scss +100 -0
- package/src/components/navigation/elm-bookmark.stories.tsx +87 -0
- package/src/components/navigation/elm-bookmark.tsx +72 -0
- package/src/components/others/elm-jarkup.module.scss +26 -0
- package/src/components/others/elm-jarkup.stories.tsx +18 -0
- package/src/components/others/elm-jarkup.tsx +267 -0
- package/src/components/table/elm-table-body.tsx +14 -0
- package/src/components/table/elm-table-cell.module.scss +41 -0
- package/src/components/table/elm-table-cell.tsx +33 -0
- package/src/components/table/elm-table-header.module.scss +8 -0
- package/src/components/table/elm-table-header.tsx +21 -0
- package/src/components/table/elm-table-row.module.scss +28 -0
- package/src/components/table/elm-table-row.tsx +15 -0
- package/src/components/table/elm-table.module.scss +29 -0
- package/src/components/table/elm-table.stories.tsx +67 -0
- package/src/components/table/elm-table.tsx +63 -0
- package/src/components/typography/elm-block-quote.module.scss +29 -0
- package/src/components/typography/elm-block-quote.stories.tsx +22 -0
- package/src/components/typography/elm-block-quote.tsx +34 -0
- package/src/components/typography/elm-callout.module.scss +36 -0
- package/src/components/typography/elm-callout.stories.tsx +47 -0
- package/src/components/typography/elm-callout.tsx +52 -0
- package/src/components/typography/elm-divider.module.scss +6 -0
- package/src/components/typography/elm-divider.stories.tsx +14 -0
- package/src/components/typography/elm-divider.tsx +14 -0
- package/src/components/typography/elm-fragment-identifier.module.scss +28 -0
- package/src/components/typography/elm-fragment-identifier.stories.tsx +14 -0
- package/src/components/typography/elm-fragment-identifier.tsx +31 -0
- package/src/components/typography/elm-heading.module.scss +120 -0
- package/src/components/typography/elm-heading.stories.tsx +42 -0
- package/src/components/typography/elm-heading.tsx +40 -0
- package/src/components/typography/elm-inline-text.module.scss +114 -0
- package/src/components/typography/elm-inline-text.stories.tsx +70 -0
- package/src/components/typography/elm-inline-text.tsx +147 -0
- package/src/components/typography/elm-list.global.scss +66 -0
- package/src/components/typography/elm-list.stories.tsx +61 -0
- package/src/components/typography/elm-list.tsx +39 -0
- package/src/components/typography/elm-paragraph.module.scss +21 -0
- package/src/components/typography/elm-paragraph.stories.tsx +47 -0
- package/src/components/typography/elm-paragraph.tsx +31 -0
- package/src/entry.dev.tsx +17 -0
- package/{lib-types/entry.ssr.d.ts → src/entry.ssr.tsx} +9 -2
- package/src/global.d.ts +13 -0
- package/src/hooks/useDelayedSignal.ts +27 -0
- package/src/hooks/useInView.tsx +23 -0
- package/src/index.ts +113 -0
- package/src/root.tsx +13 -0
- package/src/styles/text.module.scss +17 -0
- package/src/vite-env.d.ts +1 -0
- package/tsconfig.json +21 -0
- package/vite.config.ts +36 -0
- package/lib/assets/6FDiDjPb-qwik.css +0 -955
- package/lib/qwik.js +0 -56
- package/lib/qwik10.js +0 -108
- package/lib/qwik11.js +0 -25
- package/lib/qwik12.js +0 -87
- package/lib/qwik13.js +0 -62
- package/lib/qwik14.js +0 -62
- package/lib/qwik15.js +0 -44
- package/lib/qwik16.js +0 -58
- package/lib/qwik17.js +0 -14
- package/lib/qwik18.js +0 -24
- package/lib/qwik19.js +0 -41
- package/lib/qwik2.js +0 -68
- package/lib/qwik20.js +0 -89
- package/lib/qwik21.js +0 -28
- package/lib/qwik22.js +0 -24
- package/lib/qwik23.js +0 -57
- package/lib/qwik24.js +0 -15
- package/lib/qwik25.js +0 -12
- package/lib/qwik26.js +0 -17
- package/lib/qwik27.js +0 -27
- package/lib/qwik28.js +0 -193
- package/lib/qwik29.js +0 -17
- package/lib/qwik3.js +0 -17
- package/lib/qwik30.js +0 -8
- package/lib/qwik33.js +0 -32
- package/lib/qwik34.js +0 -6
- package/lib/qwik35.js +0 -6
- package/lib/qwik36.js +0 -11
- package/lib/qwik37.js +0 -8
- package/lib/qwik38.js +0 -18
- package/lib/qwik39.js +0 -24
- package/lib/qwik4.js +0 -33
- package/lib/qwik40.js +0 -24
- package/lib/qwik41.js +0 -29
- package/lib/qwik42.js +0 -31
- package/lib/qwik43.js +0 -32
- package/lib/qwik44.js +0 -18
- package/lib/qwik45.js +0 -24
- package/lib/qwik46.js +0 -36
- package/lib/qwik47.js +0 -45
- package/lib/qwik48.js +0 -27
- package/lib/qwik49.js +0 -89
- package/lib/qwik5.js +0 -123
- package/lib/qwik50.js +0 -18
- package/lib/qwik51.js +0 -64
- package/lib/qwik52.js +0 -28
- package/lib/qwik53.js +0 -28
- package/lib/qwik54.js +0 -32
- package/lib/qwik55.js +0 -28
- package/lib/qwik56.js +0 -8
- package/lib/qwik57.js +0 -15
- package/lib/qwik58.js +0 -10
- package/lib/qwik59.js +0 -26
- package/lib/qwik6.js +0 -20
- package/lib/qwik60.js +0 -14
- package/lib/qwik61.js +0 -14
- package/lib/qwik62.js +0 -8
- package/lib/qwik63.js +0 -8
- package/lib/qwik64.js +0 -24
- package/lib/qwik65.js +0 -17
- package/lib/qwik67.js +0 -8
- package/lib/qwik68.js +0 -23
- package/lib/qwik69.js +0 -15
- package/lib/qwik7.js +0 -12
- package/lib/qwik70.js +0 -8
- package/lib/qwik71.js +0 -9
- package/lib/qwik72.js +0 -14
- package/lib/qwik73.js +0 -10
- package/lib/qwik74.js +0 -8
- package/lib/qwik8.js +0 -29
- package/lib/qwik9.js +0 -16
- package/lib-types/components/code/elm-code-block.d.ts +0 -21
- package/lib-types/components/code/elm-code-block.stories.d.ts +0 -9
- package/lib-types/components/code/elm-katex.d.ts +0 -15
- package/lib-types/components/code/elm-katex.stories.d.ts +0 -8
- package/lib-types/components/code/elm-shiki-highlighter.d.ts +0 -12
- package/lib-types/components/code/elm-shiki-highlighter.stories.d.ts +0 -6
- package/lib-types/components/code/shikiInstance.d.ts +0 -2
- package/lib-types/components/containments/elm-toggle.d.ts +0 -7
- package/lib-types/components/containments/elm-toggle.stories.d.ts +0 -6
- package/lib-types/components/fallback/elm-block-fallback.d.ts +0 -5
- package/lib-types/components/fallback/elm-block-fallback.stories.d.ts +0 -6
- package/lib-types/components/fallback/elm-rectangle-wave.d.ts +0 -4
- package/lib-types/components/fallback/elm-rectangle-wave.stories.d.ts +0 -6
- package/lib-types/components/icon/elm-dot-loading-icon.d.ts +0 -14
- package/lib-types/components/icon/elm-dot-loading-icon.stories.d.ts +0 -6
- package/lib-types/components/icon/elm-inline-icon.d.ts +0 -11
- package/lib-types/components/icon/elm-inline-icon.stories.d.ts +0 -6
- package/lib-types/components/icon/elm-language-icon.d.ts +0 -14
- package/lib-types/components/icon/elm-language-icon.stories.d.ts +0 -6
- package/lib-types/components/icon/elm-mdi-icon.d.ts +0 -8
- package/lib-types/components/icon/elm-mdi-icon.stories.d.ts +0 -6
- package/lib-types/components/icon/languages/bash.d.ts +0 -2
- package/lib-types/components/icon/languages/c-plus-plus.d.ts +0 -2
- package/lib-types/components/icon/languages/c-sharp.d.ts +0 -2
- package/lib-types/components/icon/languages/c.d.ts +0 -2
- package/lib-types/components/icon/languages/css.d.ts +0 -2
- package/lib-types/components/icon/languages/go.d.ts +0 -2
- package/lib-types/components/icon/languages/html.d.ts +0 -2
- package/lib-types/components/icon/languages/java.d.ts +0 -2
- package/lib-types/components/icon/languages/javascript.d.ts +0 -2
- package/lib-types/components/icon/languages/json.d.ts +0 -2
- package/lib-types/components/icon/languages/kotlin.d.ts +0 -2
- package/lib-types/components/icon/languages/language-interface.d.ts +0 -4
- package/lib-types/components/icon/languages/lua.d.ts +0 -2
- package/lib-types/components/icon/languages/npm.d.ts +0 -2
- package/lib-types/components/icon/languages/python.d.ts +0 -2
- package/lib-types/components/icon/languages/rust.d.ts +0 -2
- package/lib-types/components/icon/languages/sql.d.ts +0 -2
- package/lib-types/components/icon/languages/terraform.d.ts +0 -2
- package/lib-types/components/icon/languages/typescript.d.ts +0 -2
- package/lib-types/components/media/elm-block-image.d.ts +0 -16
- package/lib-types/components/media/elm-block-image.stories.d.ts +0 -12
- package/lib-types/components/media/elm-file.d.ts +0 -15
- package/lib-types/components/media/elm-file.stories.d.ts +0 -7
- package/lib-types/components/navigation/elm-bookmark.d.ts +0 -24
- package/lib-types/components/navigation/elm-bookmark.stories.d.ts +0 -12
- package/lib-types/components/others/elm-jarkup.d.ts +0 -5
- package/lib-types/components/others/elm-jarkup.stories.d.ts +0 -6
- package/lib-types/components/table/elm-table-body.d.ts +0 -2
- package/lib-types/components/table/elm-table-cell.d.ts +0 -12
- package/lib-types/components/table/elm-table-header.d.ts +0 -3
- package/lib-types/components/table/elm-table-row.d.ts +0 -2
- package/lib-types/components/table/elm-table.d.ts +0 -13
- package/lib-types/components/table/elm-table.stories.d.ts +0 -6
- package/lib-types/components/typography/elm-block-quote.d.ts +0 -4
- package/lib-types/components/typography/elm-block-quote.stories.d.ts +0 -6
- package/lib-types/components/typography/elm-callout.d.ts +0 -8
- package/lib-types/components/typography/elm-callout.stories.d.ts +0 -10
- package/lib-types/components/typography/elm-divider.d.ts +0 -8
- package/lib-types/components/typography/elm-divider.stories.d.ts +0 -6
- package/lib-types/components/typography/elm-fragment-identifier.d.ts +0 -7
- package/lib-types/components/typography/elm-fragment-identifier.stories.d.ts +0 -6
- package/lib-types/components/typography/elm-heading.d.ts +0 -6
- package/lib-types/components/typography/elm-heading.stories.d.ts +0 -7
- package/lib-types/components/typography/elm-inline-text.d.ts +0 -54
- package/lib-types/components/typography/elm-inline-text.stories.d.ts +0 -13
- package/lib-types/components/typography/elm-list.d.ts +0 -5
- package/lib-types/components/typography/elm-list.stories.d.ts +0 -8
- package/lib-types/components/typography/elm-paragraph.d.ts +0 -5
- package/lib-types/components/typography/elm-paragraph.stories.d.ts +0 -9
- package/lib-types/entry.dev.d.ts +0 -2
- package/lib-types/hooks/useDelayedSignal.d.ts +0 -6
- package/lib-types/hooks/useInView.d.ts +0 -6
- package/lib-types/index.d.ts +0 -27
- package/lib-types/root.d.ts +0 -2
- /package/{lib-types/components/table/index.d.ts → src/components/table/index.ts} +0 -0
package/lib/qwik40.js
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
-
import { component$ } from "@builder.io/qwik";
|
|
3
|
-
const Typescript = component$(({ size = 24, ...props }) => {
|
|
4
|
-
return /* @__PURE__ */ jsxs("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
width: size,
|
|
7
|
-
height: size,
|
|
8
|
-
viewBox: "0 0 128 128",
|
|
9
|
-
...props,
|
|
10
|
-
children: [
|
|
11
|
-
/* @__PURE__ */ jsx("path", {
|
|
12
|
-
fill: "#fff",
|
|
13
|
-
d: "M22.67 47h99.67v73.67H22.67z"
|
|
14
|
-
}),
|
|
15
|
-
/* @__PURE__ */ jsx("path", {
|
|
16
|
-
fill: "#007acc",
|
|
17
|
-
d: "M1.5 63.91v62.5h125v-125H1.5zm100.73-5a15.56 15.56 0 0 1 7.82 4.5a20.6 20.6 0 0 1 3 4c0 .16-5.4 3.81-8.69 5.85c-.12.08-.6-.44-1.13-1.23a7.09 7.09 0 0 0-5.87-3.53c-3.79-.26-6.23 1.73-6.21 5a4.6 4.6 0 0 0 .54 2.34c.83 1.73 2.38 2.76 7.24 4.86c8.95 3.85 12.78 6.39 15.16 10c2.66 4 3.25 10.46 1.45 15.24c-2 5.2-6.9 8.73-13.83 9.9a38.3 38.3 0 0 1-9.52-.1a23 23 0 0 1-12.72-6.63c-1.15-1.27-3.39-4.58-3.25-4.82a9 9 0 0 1 1.15-.73L82 101l3.59-2.08l.75 1.11a16.8 16.8 0 0 0 4.74 4.54c4 2.1 9.46 1.81 12.16-.62a5.43 5.43 0 0 0 .69-6.92c-1-1.39-3-2.56-8.59-5c-6.45-2.78-9.23-4.5-11.77-7.24a16.5 16.5 0 0 1-3.43-6.25a25 25 0 0 1-.22-8c1.33-6.23 6-10.58 12.82-11.87a31.7 31.7 0 0 1 9.49.26zm-29.34 5.24v5.12H56.66v46.23H45.15V69.26H28.88v-5a49 49 0 0 1 .12-5.17C29.08 59 39 59 51 59h21.83z"
|
|
18
|
-
})
|
|
19
|
-
]
|
|
20
|
-
});
|
|
21
|
-
});
|
|
22
|
-
export {
|
|
23
|
-
Typescript
|
|
24
|
-
};
|
package/lib/qwik41.js
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
-
import { component$ } from "@builder.io/qwik";
|
|
3
|
-
import styles from "./qwik74.js";
|
|
4
|
-
const Bash = component$(({ size = 24, ...props }) => {
|
|
5
|
-
return /* @__PURE__ */ jsxs("svg", {
|
|
6
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
-
viewBox: "0 0 128 128",
|
|
8
|
-
width: size,
|
|
9
|
-
height: size,
|
|
10
|
-
...props,
|
|
11
|
-
children: [
|
|
12
|
-
/* @__PURE__ */ jsx("path", {
|
|
13
|
-
fill: "none",
|
|
14
|
-
d: "M4.24 4.24h119.53v119.53H4.24z"
|
|
15
|
-
}),
|
|
16
|
-
/* @__PURE__ */ jsx("path", {
|
|
17
|
-
class: styles.path,
|
|
18
|
-
d: "M109.01 28.64L71.28 6.24c-2.25-1.33-4.77-2-7.28-2s-5.03.67-7.28 2.01l-37.74 22.4c-4.5 2.67-7.28 7.61-7.28 12.96v44.8c0 5.35 2.77 10.29 7.28 12.96l37.73 22.4c2.25 1.34 4.76 2 7.28 2c2.51 0 5.03-.67 7.28-2l37.74-22.4c4.5-2.67 7.28-7.62 7.28-12.96V41.6c0-5.34-2.77-10.29-7.28-12.96M79.79 98.59l.06 3.22c0 .39-.25.83-.55.99l-1.91 1.1c-.3.15-.56-.03-.56-.42l-.03-3.17c-1.63.68-3.29.84-4.34.42c-.2-.08-.29-.37-.21-.71l.69-2.91c.06-.23.18-.46.34-.6c.06-.06.12-.1.18-.13c.11-.06.22-.07.31-.03c1.14.38 2.59.2 3.99-.5c1.78-.9 2.97-2.72 2.95-4.52c-.02-1.64-.9-2.31-3.05-2.33c-2.74.01-5.3-.53-5.34-4.57c-.03-3.32 1.69-6.78 4.43-8.96l-.03-3.25c0-.4.24-.84.55-1l1.85-1.18c.3-.15.56.04.56.43l.03 3.25c1.36-.54 2.54-.69 3.61-.44c.23.06.34.38.24.75l-.72 2.88c-.06.22-.18.44-.33.58a.8.8 0 0 1-.19.14c-.1.05-.19.06-.28.05c-.49-.11-1.65-.36-3.48.56c-1.92.97-2.59 2.64-2.58 3.88c.02 1.48.77 1.93 3.39 1.97c3.49.06 4.99 1.58 5.03 5.09c.05 3.44-1.79 7.15-4.61 9.41m26.34-60.5l-35.7 22.05c-4.45 2.6-7.73 5.52-7.74 10.89v43.99c0 3.21 1.3 5.29 3.29 5.9c-.65.11-1.32.19-1.98.19c-2.09 0-4.15-.57-5.96-1.64l-37.73-22.4c-3.69-2.19-5.98-6.28-5.98-10.67V41.6c0-4.39 2.29-8.48 5.98-10.67l37.74-22.4c1.81-1.07 3.87-1.64 5.96-1.64s4.15.57 5.96 1.64l37.74 22.4c3.11 1.85 5.21 5.04 5.8 8.63c-1.27-2.67-4.09-3.39-7.38-1.47"
|
|
19
|
-
}),
|
|
20
|
-
/* @__PURE__ */ jsx("path", {
|
|
21
|
-
fill: "#4fa847",
|
|
22
|
-
d: "m99.12 90.73l-9.4 5.62c-.25.15-.43.31-.43.61v2.46c0 .3.2.43.45.28l9.54-5.8c.25-.15.29-.42.29-.72v-2.17c0-.3-.2-.42-.45-.28"
|
|
23
|
-
})
|
|
24
|
-
]
|
|
25
|
-
});
|
|
26
|
-
});
|
|
27
|
-
export {
|
|
28
|
-
Bash
|
|
29
|
-
};
|
package/lib/qwik42.js
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
-
import { component$ } from "@builder.io/qwik";
|
|
3
|
-
const Terraform = component$(({ size = 24, ...props }) => {
|
|
4
|
-
return /* @__PURE__ */ jsx("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
width: size,
|
|
7
|
-
height: size,
|
|
8
|
-
viewBox: "0 0 128 128",
|
|
9
|
-
...props,
|
|
10
|
-
children: /* @__PURE__ */ jsxs("g", {
|
|
11
|
-
"fill-rule": "evenodd",
|
|
12
|
-
children: [
|
|
13
|
-
/* @__PURE__ */ jsx("path", {
|
|
14
|
-
fill: "#5c4ee5",
|
|
15
|
-
d: "M77.941 44.5v36.836L46.324 62.918V26.082zm0 0"
|
|
16
|
-
}),
|
|
17
|
-
/* @__PURE__ */ jsx("path", {
|
|
18
|
-
fill: "#4040b2",
|
|
19
|
-
d: "m81.41 81.336l31.633-18.418V26.082L81.41 44.5zm0 0"
|
|
20
|
-
}),
|
|
21
|
-
/* @__PURE__ */ jsx("path", {
|
|
22
|
-
fill: "#5c4ee5",
|
|
23
|
-
d: "M11.242 42.36L42.86 60.776V23.941L11.242 5.523zm66.699 43.015L46.324 66.957v36.82l31.617 18.418zm0 0"
|
|
24
|
-
})
|
|
25
|
-
]
|
|
26
|
-
})
|
|
27
|
-
});
|
|
28
|
-
});
|
|
29
|
-
export {
|
|
30
|
-
Terraform
|
|
31
|
-
};
|
package/lib/qwik43.js
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
-
import { component$ } from "@builder.io/qwik";
|
|
3
|
-
const Html = component$(({ size = 24, ...props }) => {
|
|
4
|
-
return /* @__PURE__ */ jsxs("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
width: size,
|
|
7
|
-
height: size,
|
|
8
|
-
viewBox: "0 0 128 128",
|
|
9
|
-
...props,
|
|
10
|
-
children: [
|
|
11
|
-
/* @__PURE__ */ jsx("path", {
|
|
12
|
-
fill: "#e44d26",
|
|
13
|
-
d: "M19.037 113.876L9.032 1.661h109.936l-10.016 112.198l-45.019 12.48z"
|
|
14
|
-
}),
|
|
15
|
-
/* @__PURE__ */ jsx("path", {
|
|
16
|
-
fill: "#f16529",
|
|
17
|
-
d: "m64 116.8l36.378-10.086l8.559-95.878H64z"
|
|
18
|
-
}),
|
|
19
|
-
/* @__PURE__ */ jsx("path", {
|
|
20
|
-
fill: "#ebebeb",
|
|
21
|
-
d: "M64 52.455H45.788L44.53 38.361H64V24.599H29.489l.33 3.692l3.382 37.927H64zm0 35.743l-.061.017l-15.327-4.14l-.979-10.975H33.816l1.928 21.609l28.193 7.826l.063-.017z"
|
|
22
|
-
}),
|
|
23
|
-
/* @__PURE__ */ jsx("path", {
|
|
24
|
-
fill: "#fff",
|
|
25
|
-
d: "M63.952 52.455v13.763h16.947l-1.597 17.849l-15.35 4.143v14.319l28.215-7.82l.207-2.325l3.234-36.233l.335-3.696h-3.708zm0-27.856v13.762h33.244l.276-3.092l.628-6.978l.329-3.692z"
|
|
26
|
-
})
|
|
27
|
-
]
|
|
28
|
-
});
|
|
29
|
-
});
|
|
30
|
-
export {
|
|
31
|
-
Html
|
|
32
|
-
};
|
package/lib/qwik44.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
-
import { component$ } from "@builder.io/qwik";
|
|
3
|
-
const Css = component$(({ size = 24, ...props }) => {
|
|
4
|
-
return /* @__PURE__ */ jsx("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 24 24",
|
|
7
|
-
width: size,
|
|
8
|
-
height: size,
|
|
9
|
-
...props,
|
|
10
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
11
|
-
fill: "#3f9de9",
|
|
12
|
-
d: "m5 3l-.65 3.34h13.59L17.5 8.5H3.92l-.66 3.33h13.59l-.76 3.81l-5.48 1.81l-4.75-1.81l.33-1.64H2.85l-.79 4l7.85 3l9.05-3l1.2-6.03l.24-1.21L21.94 3z"
|
|
13
|
-
})
|
|
14
|
-
});
|
|
15
|
-
});
|
|
16
|
-
export {
|
|
17
|
-
Css
|
|
18
|
-
};
|
package/lib/qwik45.js
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
-
import { component$ } from "@builder.io/qwik";
|
|
3
|
-
const Npm = component$(({ size = 24, ...props }) => {
|
|
4
|
-
return /* @__PURE__ */ jsxs("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
width: size,
|
|
7
|
-
height: size,
|
|
8
|
-
viewBox: "0 0 128 128",
|
|
9
|
-
...props,
|
|
10
|
-
children: [
|
|
11
|
-
/* @__PURE__ */ jsx("path", {
|
|
12
|
-
fill: "#cb3837",
|
|
13
|
-
d: "M0 7.062C0 3.225 3.225 0 7.062 0h113.88c3.838 0 7.063 3.225 7.063 7.062v113.88c0 3.838-3.225 7.063-7.063 7.063H7.062c-3.837 0-7.062-3.225-7.062-7.063zm23.69 97.518h40.395l.05-58.532h19.494l-.05 58.581h19.543l.05-78.075l-78.075-.1l-.1 78.126z"
|
|
14
|
-
}),
|
|
15
|
-
/* @__PURE__ */ jsx("path", {
|
|
16
|
-
fill: "#fff",
|
|
17
|
-
d: "M25.105 65.52V26.512H40.96c8.72 0 26.274.034 39.008.075l23.153.075v77.866H83.645v-58.54H64.057v58.54H25.105z"
|
|
18
|
-
})
|
|
19
|
-
]
|
|
20
|
-
});
|
|
21
|
-
});
|
|
22
|
-
export {
|
|
23
|
-
Npm
|
|
24
|
-
};
|
package/lib/qwik46.js
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
-
import { component$ } from "@builder.io/qwik";
|
|
3
|
-
const Java = component$(({ size = 24, ...props }) => {
|
|
4
|
-
return /* @__PURE__ */ jsxs("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
width: size,
|
|
7
|
-
height: size,
|
|
8
|
-
viewBox: "0 0 128 128",
|
|
9
|
-
...props,
|
|
10
|
-
children: [
|
|
11
|
-
/* @__PURE__ */ jsx("path", {
|
|
12
|
-
fill: "#0074bd",
|
|
13
|
-
d: "M47.617 98.12s-4.767 2.774 3.397 3.71c9.892 1.13 14.947.968 25.845-1.092c0 0 2.871 1.795 6.873 3.351c-24.439 10.47-55.308-.607-36.115-5.969m-2.988-13.665s-5.348 3.959 2.823 4.805c10.567 1.091 18.91 1.18 33.354-1.6c0 0 1.993 2.025 5.132 3.131c-29.542 8.64-62.446.68-41.309-6.336"
|
|
14
|
-
}),
|
|
15
|
-
/* @__PURE__ */ jsx("path", {
|
|
16
|
-
fill: "#ea2d2e",
|
|
17
|
-
d: "M69.802 61.271c6.025 6.935-1.58 13.17-1.58 13.17s15.289-7.891 8.269-17.777c-6.559-9.215-11.587-13.792 15.635-29.58c0 .001-42.731 10.67-22.324 34.187"
|
|
18
|
-
}),
|
|
19
|
-
/* @__PURE__ */ jsx("path", {
|
|
20
|
-
fill: "#0074bd",
|
|
21
|
-
d: "M102.123 108.229s3.529 2.91-3.888 5.159c-14.102 4.272-58.706 5.56-71.094.171c-4.451-1.938 3.899-4.625 6.526-5.192c2.739-.593 4.303-.485 4.303-.485c-4.953-3.487-32.013 6.85-13.743 9.815c49.821 8.076 90.817-3.637 77.896-9.468M49.912 70.294s-22.686 5.389-8.033 7.348c6.188.828 18.518.638 30.011-.326c9.39-.789 18.813-2.474 18.813-2.474s-3.308 1.419-5.704 3.053c-23.042 6.061-67.544 3.238-54.731-2.958c10.832-5.239 19.644-4.643 19.644-4.643m40.697 22.747c23.421-12.167 12.591-23.86 5.032-22.285c-1.848.385-2.677.72-2.677.72s.688-1.079 2-1.543c14.953-5.255 26.451 15.503-4.823 23.725c0-.002.359-.327.468-.617"
|
|
22
|
-
}),
|
|
23
|
-
/* @__PURE__ */ jsx("path", {
|
|
24
|
-
fill: "#ea2d2e",
|
|
25
|
-
d: "M76.491 1.587S89.459 14.563 64.188 34.51c-20.266 16.006-4.621 25.13-.007 35.559c-11.831-10.673-20.509-20.07-14.688-28.815C58.041 28.42 81.722 22.195 76.491 1.587"
|
|
26
|
-
}),
|
|
27
|
-
/* @__PURE__ */ jsx("path", {
|
|
28
|
-
fill: "#0074bd",
|
|
29
|
-
d: "M52.214 126.021c22.476 1.437 57-.8 57.817-11.436c0 0-1.571 4.032-18.577 7.231c-19.186 3.612-42.854 3.191-56.887.874c0 .001 2.875 2.381 17.647 3.331"
|
|
30
|
-
})
|
|
31
|
-
]
|
|
32
|
-
});
|
|
33
|
-
});
|
|
34
|
-
export {
|
|
35
|
-
Java
|
|
36
|
-
};
|
package/lib/qwik47.js
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
-
import { component$ } from "@builder.io/qwik";
|
|
3
|
-
const Kotlin = component$(({ size = 24, ...props }) => {
|
|
4
|
-
return /* @__PURE__ */ jsxs("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
width: size,
|
|
7
|
-
height: size,
|
|
8
|
-
viewBox: "0 0 128 128",
|
|
9
|
-
...props,
|
|
10
|
-
children: [
|
|
11
|
-
/* @__PURE__ */ jsx("defs", {
|
|
12
|
-
children: /* @__PURE__ */ jsxs("linearGradient", {
|
|
13
|
-
id: "deviconKotlin0",
|
|
14
|
-
x1: "500.003",
|
|
15
|
-
x2: "-.097",
|
|
16
|
-
y1: "579.106",
|
|
17
|
-
y2: "1079.206",
|
|
18
|
-
gradientTransform: "translate(15.534 -96.774)scale(.1939)",
|
|
19
|
-
gradientUnits: "userSpaceOnUse",
|
|
20
|
-
children: [
|
|
21
|
-
/* @__PURE__ */ jsx("stop", {
|
|
22
|
-
offset: ".003",
|
|
23
|
-
"stop-color": "#e44857"
|
|
24
|
-
}),
|
|
25
|
-
/* @__PURE__ */ jsx("stop", {
|
|
26
|
-
offset: ".469",
|
|
27
|
-
"stop-color": "#c711e1"
|
|
28
|
-
}),
|
|
29
|
-
/* @__PURE__ */ jsx("stop", {
|
|
30
|
-
offset: "1",
|
|
31
|
-
"stop-color": "#7f52ff"
|
|
32
|
-
})
|
|
33
|
-
]
|
|
34
|
-
})
|
|
35
|
-
}),
|
|
36
|
-
/* @__PURE__ */ jsx("path", {
|
|
37
|
-
fill: "url(#deviconKotlin0)",
|
|
38
|
-
d: "M112.484 112.484H15.516V15.516h96.968L64 64Zm0 0"
|
|
39
|
-
})
|
|
40
|
-
]
|
|
41
|
-
});
|
|
42
|
-
});
|
|
43
|
-
export {
|
|
44
|
-
Kotlin
|
|
45
|
-
};
|
package/lib/qwik48.js
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
-
import { component$ } from "@builder.io/qwik";
|
|
3
|
-
const Go = component$(({ size = 24, ...props }) => {
|
|
4
|
-
return /* @__PURE__ */ jsx("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
width: size,
|
|
7
|
-
height: size,
|
|
8
|
-
viewBox: "0 0 128 128",
|
|
9
|
-
...props,
|
|
10
|
-
children: /* @__PURE__ */ jsxs("g", {
|
|
11
|
-
fill: "#00acd7",
|
|
12
|
-
"fill-rule": "evenodd",
|
|
13
|
-
children: [
|
|
14
|
-
/* @__PURE__ */ jsx("path", {
|
|
15
|
-
d: "M11.156 54.829c-.243 0-.303-.122-.182-.303l1.273-1.637c.12-.182.424-.303.666-.303H34.55c.243 0 .303.182.182.364l-1.03 1.576c-.121.181-.424.363-.606.363zm-9.152 5.575c-.242 0-.303-.12-.182-.303l1.273-1.636c.121-.182.424-.303.667-.303h27.636c.242 0 .364.182.303.364l-.485 1.454c-.06.243-.303.364-.545.364zM16.67 65.98c-.242 0-.302-.182-.181-.364l.848-1.515c.122-.182.364-.363.607-.363h12.12c.243 0 .364.181.364.424l-.12 1.454c0 .243-.243.425-.425.425zm62.91-12.242c-3.819.97-6.425 1.697-10.182 2.666c-.91.243-.97.303-1.758-.606c-.909-1.03-1.576-1.697-2.848-2.303c-3.819-1.878-7.516-1.333-10.97.91c-4.121 2.666-6.242 6.605-6.182 11.514c.06 4.849 3.394 8.849 8.182 9.516c4.121.545 7.576-.91 10.303-4c.545-.667 1.03-1.394 1.636-2.243H56.064c-1.272 0-1.575-.788-1.151-1.818c.788-1.879 2.242-5.03 3.09-6.606c.183-.364.607-.97 1.516-.97h22.06c-.12 1.637-.12 3.273-.363 4.91c-.667 4.363-2.303 8.363-4.97 11.878c-4.364 5.758-10.06 9.333-17.273 10.303c-5.939.788-11.454-.364-16.302-4c-4.485-3.394-7.03-7.879-7.697-13.454c-.788-6.606 1.151-12.546 5.151-17.758c4.303-5.636 10-9.212 16.97-10.485c5.697-1.03 11.151-.363 16.06 2.97c3.212 2.121 5.515 5.03 7.03 8.545c.364.546.122.849-.606 1.03z"
|
|
16
|
-
}),
|
|
17
|
-
/* @__PURE__ */ jsx("path", {
|
|
18
|
-
"fill-rule": "nonzero",
|
|
19
|
-
d: "M99.64 87.253c-5.515-.122-10.546-1.697-14.788-5.334c-3.576-3.09-5.818-7.03-6.545-11.697c-1.091-6.848.787-12.909 4.909-18.302c4.424-5.819 9.757-8.849 16.97-10.122c6.181-1.09 12-.484 17.272 3.091c4.788 3.273 7.757 7.697 8.545 13.515c1.03 8.182-1.333 14.849-6.97 20.546c-4 4.06-8.909 6.606-14.545 7.757c-1.636.303-3.273.364-4.848.546m14.424-24.485c-.06-.788-.06-1.394-.182-2c-1.09-6-6.606-9.394-12.363-8.06c-5.637 1.272-9.273 4.848-10.606 10.545c-1.091 4.727 1.212 9.515 5.575 11.454c3.334 1.455 6.667 1.273 9.879-.363c4.788-2.485 7.394-6.364 7.697-11.576"
|
|
20
|
-
})
|
|
21
|
-
]
|
|
22
|
-
})
|
|
23
|
-
});
|
|
24
|
-
});
|
|
25
|
-
export {
|
|
26
|
-
Go
|
|
27
|
-
};
|
package/lib/qwik49.js
DELETED
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
-
import { component$ } from "@builder.io/qwik";
|
|
3
|
-
const Python = component$(({ size = 24, ...props }) => {
|
|
4
|
-
return /* @__PURE__ */ jsxs("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
width: size,
|
|
7
|
-
height: size,
|
|
8
|
-
viewBox: "0 0 128 128",
|
|
9
|
-
...props,
|
|
10
|
-
children: [
|
|
11
|
-
/* @__PURE__ */ jsxs("linearGradient", {
|
|
12
|
-
id: "deviconPython0",
|
|
13
|
-
x1: "70.252",
|
|
14
|
-
x2: "170.659",
|
|
15
|
-
y1: "1237.476",
|
|
16
|
-
y2: "1151.089",
|
|
17
|
-
gradientTransform: "matrix(.563 0 0 -.568 -29.215 707.817)",
|
|
18
|
-
gradientUnits: "userSpaceOnUse",
|
|
19
|
-
children: [
|
|
20
|
-
/* @__PURE__ */ jsx("stop", {
|
|
21
|
-
offset: "0",
|
|
22
|
-
"stop-color": "#5a9fd4"
|
|
23
|
-
}),
|
|
24
|
-
/* @__PURE__ */ jsx("stop", {
|
|
25
|
-
offset: "1",
|
|
26
|
-
"stop-color": "#306998"
|
|
27
|
-
})
|
|
28
|
-
]
|
|
29
|
-
}),
|
|
30
|
-
/* @__PURE__ */ jsxs("linearGradient", {
|
|
31
|
-
id: "deviconPython1",
|
|
32
|
-
x1: "209.474",
|
|
33
|
-
x2: "173.62",
|
|
34
|
-
y1: "1098.811",
|
|
35
|
-
y2: "1149.537",
|
|
36
|
-
gradientTransform: "matrix(.563 0 0 -.568 -29.215 707.817)",
|
|
37
|
-
gradientUnits: "userSpaceOnUse",
|
|
38
|
-
children: [
|
|
39
|
-
/* @__PURE__ */ jsx("stop", {
|
|
40
|
-
offset: "0",
|
|
41
|
-
"stop-color": "#ffd43b"
|
|
42
|
-
}),
|
|
43
|
-
/* @__PURE__ */ jsx("stop", {
|
|
44
|
-
offset: "1",
|
|
45
|
-
"stop-color": "#ffe873"
|
|
46
|
-
})
|
|
47
|
-
]
|
|
48
|
-
}),
|
|
49
|
-
/* @__PURE__ */ jsx("path", {
|
|
50
|
-
fill: "url(#deviconPython0)",
|
|
51
|
-
d: "M63.391 1.988c-4.222.02-8.252.379-11.8 1.007c-10.45 1.846-12.346 5.71-12.346 12.837v9.411h24.693v3.137H29.977c-7.176 0-13.46 4.313-15.426 12.521c-2.268 9.405-2.368 15.275 0 25.096c1.755 7.311 5.947 12.519 13.124 12.519h8.491V67.234c0-8.151 7.051-15.34 15.426-15.34h24.665c6.866 0 12.346-5.654 12.346-12.548V15.833c0-6.693-5.646-11.72-12.346-12.837c-4.244-.706-8.645-1.027-12.866-1.008M50.037 9.557c2.55 0 4.634 2.117 4.634 4.721c0 2.593-2.083 4.69-4.634 4.69c-2.56 0-4.633-2.097-4.633-4.69c-.001-2.604 2.073-4.721 4.633-4.721",
|
|
52
|
-
transform: "translate(0 10.26)"
|
|
53
|
-
}),
|
|
54
|
-
/* @__PURE__ */ jsx("path", {
|
|
55
|
-
fill: "url(#deviconPython1)",
|
|
56
|
-
d: "M91.682 28.38v10.966c0 8.5-7.208 15.655-15.426 15.655H51.591c-6.756 0-12.346 5.783-12.346 12.549v23.515c0 6.691 5.818 10.628 12.346 12.547c7.816 2.297 15.312 2.713 24.665 0c6.216-1.801 12.346-5.423 12.346-12.547v-9.412H63.938v-3.138h37.012c7.176 0 9.852-5.005 12.348-12.519c2.578-7.735 2.467-15.174 0-25.096c-1.774-7.145-5.161-12.521-12.348-12.521h-9.268zM77.809 87.927c2.561 0 4.634 2.097 4.634 4.692c0 2.602-2.074 4.719-4.634 4.719c-2.55 0-4.633-2.117-4.633-4.719c0-2.595 2.083-4.692 4.633-4.692",
|
|
57
|
-
transform: "translate(0 10.26)"
|
|
58
|
-
}),
|
|
59
|
-
/* @__PURE__ */ jsxs("radialGradient", {
|
|
60
|
-
id: "deviconPython2",
|
|
61
|
-
cx: "1825.678",
|
|
62
|
-
cy: "444.45",
|
|
63
|
-
r: "26.743",
|
|
64
|
-
gradientTransform: "matrix(0 -.24 -1.055 0 532.979 557.576)",
|
|
65
|
-
gradientUnits: "userSpaceOnUse",
|
|
66
|
-
children: [
|
|
67
|
-
/* @__PURE__ */ jsx("stop", {
|
|
68
|
-
offset: "0",
|
|
69
|
-
"stop-color": "#b8b8b8",
|
|
70
|
-
"stop-opacity": "0.498"
|
|
71
|
-
}),
|
|
72
|
-
/* @__PURE__ */ jsx("stop", {
|
|
73
|
-
offset: "1",
|
|
74
|
-
"stop-color": "#7f7f7f",
|
|
75
|
-
"stop-opacity": "0"
|
|
76
|
-
})
|
|
77
|
-
]
|
|
78
|
-
}),
|
|
79
|
-
/* @__PURE__ */ jsx("path", {
|
|
80
|
-
fill: "url(#deviconPython2)",
|
|
81
|
-
d: "M97.309 119.597c0 3.543-14.816 6.416-33.091 6.416c-18.276 0-33.092-2.873-33.092-6.416s14.815-6.417 33.092-6.417c18.275 0 33.091 2.872 33.091 6.417",
|
|
82
|
-
opacity: "0.444"
|
|
83
|
-
})
|
|
84
|
-
]
|
|
85
|
-
});
|
|
86
|
-
});
|
|
87
|
-
export {
|
|
88
|
-
Python
|
|
89
|
-
};
|
package/lib/qwik5.js
DELETED
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
-
import { component$, useSignal, $, Slot } from "@builder.io/qwik";
|
|
3
|
-
import styles from "./qwik33.js";
|
|
4
|
-
import { ElmMdiIcon } from "./qwik11.js";
|
|
5
|
-
import { mdiChevronRight, mdiPlus } from "@mdi/js";
|
|
6
|
-
import { ElmInlineText } from "./qwik20.js";
|
|
7
|
-
const ElmToggle = component$(({ summary }) => {
|
|
8
|
-
const isOpen = useSignal(false);
|
|
9
|
-
const toggle = $(() => {
|
|
10
|
-
isOpen.value = !isOpen.value;
|
|
11
|
-
});
|
|
12
|
-
return /* @__PURE__ */ jsxs("div", {
|
|
13
|
-
class: [
|
|
14
|
-
styles["toggle"],
|
|
15
|
-
{
|
|
16
|
-
[styles["toggle-open"]]: isOpen.value,
|
|
17
|
-
[styles["toggle-closed"]]: !isOpen.value
|
|
18
|
-
}
|
|
19
|
-
],
|
|
20
|
-
children: [
|
|
21
|
-
/* @__PURE__ */ jsxs("div", {
|
|
22
|
-
class: [
|
|
23
|
-
styles["summary"],
|
|
24
|
-
{
|
|
25
|
-
[styles["summary-open"]]: isOpen.value,
|
|
26
|
-
[styles["summary-closed"]]: !isOpen.value
|
|
27
|
-
}
|
|
28
|
-
],
|
|
29
|
-
onClick$: toggle,
|
|
30
|
-
children: [
|
|
31
|
-
/* @__PURE__ */ jsx("span", {
|
|
32
|
-
class: [
|
|
33
|
-
styles["chevron-icon"],
|
|
34
|
-
{
|
|
35
|
-
[styles["chevron-icon-open"]]: isOpen.value,
|
|
36
|
-
[styles["chevron-icon-closed"]]: !isOpen.value
|
|
37
|
-
}
|
|
38
|
-
],
|
|
39
|
-
children: /* @__PURE__ */ jsx(ElmMdiIcon, {
|
|
40
|
-
d: mdiChevronRight
|
|
41
|
-
})
|
|
42
|
-
}),
|
|
43
|
-
/* @__PURE__ */ jsx("span", {
|
|
44
|
-
class: styles["summary-text"],
|
|
45
|
-
children: summary ? summary : /* @__PURE__ */ jsx(Slot, {
|
|
46
|
-
name: "summary"
|
|
47
|
-
})
|
|
48
|
-
}),
|
|
49
|
-
/* @__PURE__ */ jsx("span", {
|
|
50
|
-
class: [
|
|
51
|
-
styles["plus-icon"],
|
|
52
|
-
{
|
|
53
|
-
[styles["plus-icon-open"]]: isOpen.value,
|
|
54
|
-
[styles["plus-icon-closed"]]: !isOpen.value
|
|
55
|
-
}
|
|
56
|
-
],
|
|
57
|
-
children: /* @__PURE__ */ jsx(ElmMdiIcon, {
|
|
58
|
-
d: mdiPlus,
|
|
59
|
-
color: isOpen.value ? "#c56565" : "#59b57c",
|
|
60
|
-
size: "1rem"
|
|
61
|
-
})
|
|
62
|
-
})
|
|
63
|
-
]
|
|
64
|
-
}),
|
|
65
|
-
/* @__PURE__ */ jsx("div", {
|
|
66
|
-
class: [
|
|
67
|
-
styles["content"],
|
|
68
|
-
{
|
|
69
|
-
[styles["content-open"]]: isOpen.value,
|
|
70
|
-
[styles["content-closed"]]: !isOpen.value
|
|
71
|
-
}
|
|
72
|
-
],
|
|
73
|
-
children: /* @__PURE__ */ jsx(Slot, {})
|
|
74
|
-
}),
|
|
75
|
-
/* @__PURE__ */ jsxs("div", {
|
|
76
|
-
class: styles.footer,
|
|
77
|
-
onClick$: toggle,
|
|
78
|
-
children: [
|
|
79
|
-
/* @__PURE__ */ jsx("span", {
|
|
80
|
-
class: styles["footer-chevron-icon"],
|
|
81
|
-
children: /* @__PURE__ */ jsx(ElmMdiIcon, {
|
|
82
|
-
d: mdiChevronRight,
|
|
83
|
-
color: "gray"
|
|
84
|
-
})
|
|
85
|
-
}),
|
|
86
|
-
/* @__PURE__ */ jsx("hr", {
|
|
87
|
-
class: styles["footer-line"]
|
|
88
|
-
}),
|
|
89
|
-
/* @__PURE__ */ jsx("span", {
|
|
90
|
-
class: styles["footer-cross-icon"],
|
|
91
|
-
children: /* @__PURE__ */ jsx(ElmMdiIcon, {
|
|
92
|
-
d: mdiPlus,
|
|
93
|
-
color: "#c56565"
|
|
94
|
-
})
|
|
95
|
-
}),
|
|
96
|
-
/* @__PURE__ */ jsx(ElmInlineText, {
|
|
97
|
-
children: "CLOSE"
|
|
98
|
-
}),
|
|
99
|
-
/* @__PURE__ */ jsx("span", {
|
|
100
|
-
class: styles["footer-cross-icon"],
|
|
101
|
-
children: /* @__PURE__ */ jsx(ElmMdiIcon, {
|
|
102
|
-
d: mdiPlus,
|
|
103
|
-
color: "#c56565"
|
|
104
|
-
})
|
|
105
|
-
}),
|
|
106
|
-
/* @__PURE__ */ jsx("hr", {
|
|
107
|
-
class: styles["footer-line"]
|
|
108
|
-
}),
|
|
109
|
-
/* @__PURE__ */ jsx("span", {
|
|
110
|
-
class: styles["footer-chevron-icon"],
|
|
111
|
-
children: /* @__PURE__ */ jsx(ElmMdiIcon, {
|
|
112
|
-
d: mdiChevronRight,
|
|
113
|
-
color: "gray"
|
|
114
|
-
})
|
|
115
|
-
})
|
|
116
|
-
]
|
|
117
|
-
})
|
|
118
|
-
]
|
|
119
|
-
});
|
|
120
|
-
});
|
|
121
|
-
export {
|
|
122
|
-
ElmToggle
|
|
123
|
-
};
|
package/lib/qwik50.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
-
import { component$ } from "@builder.io/qwik";
|
|
3
|
-
const Sql = component$(({ size = 24, ...props }) => {
|
|
4
|
-
return /* @__PURE__ */ jsx("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
width: size,
|
|
7
|
-
height: size,
|
|
8
|
-
viewBox: "0 0 128 128",
|
|
9
|
-
...props,
|
|
10
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
11
|
-
fill: "#00618a",
|
|
12
|
-
d: "M117.688 98.242c-6.973-.191-12.297.461-16.852 2.379c-1.293.547-3.355.559-3.566 2.18c.711.746.82 1.859 1.387 2.777c1.086 1.754 2.922 4.113 4.559 5.352c1.789 1.348 3.633 2.793 5.551 3.961c3.414 2.082 7.223 3.27 10.504 5.352c1.938 1.23 3.859 2.777 5.75 4.164c.934.684 1.563 1.75 2.773 2.18v-.195c-.637-.812-.801-1.93-1.387-2.777l-2.578-2.578c-2.52-3.344-5.719-6.281-9.117-8.719c-2.711-1.949-8.781-4.578-9.91-7.73l-.199-.199c1.922-.219 4.172-.914 5.949-1.391c2.98-.797 5.645-.59 8.719-1.387l4.164-1.187v-.793c-1.555-1.594-2.664-3.707-4.359-5.152c-4.441-3.781-9.285-7.555-14.273-10.703c-2.766-1.746-6.184-2.883-9.117-4.363c-.988-.496-2.719-.758-3.371-1.586c-1.539-1.961-2.379-4.449-3.566-6.738c-2.488-4.793-4.93-10.023-7.137-15.066c-1.504-3.437-2.484-6.828-4.359-9.91c-9-14.797-18.687-23.73-33.695-32.508c-3.195-1.867-7.039-2.605-11.102-3.57l-6.543-.395c-1.332-.555-2.715-2.184-3.965-2.977C16.977 3.52 4.223-3.312.539 5.672C-1.785 11.34 4.016 16.871 6.09 19.746c1.457 2.012 3.32 4.273 4.359 6.539c.688 1.492.805 2.984 1.391 4.559c1.438 3.883 2.695 8.109 4.559 11.695c.941 1.816 1.98 3.727 3.172 5.352c.727.996 1.98 1.438 2.18 2.973c-1.227 1.715-1.297 4.375-1.984 6.543c-3.098 9.77-1.926 21.91 2.578 29.137c1.383 2.223 4.641 6.98 9.117 5.156c3.918-1.598 3.043-6.539 4.164-10.902c.254-.988.098-1.715.594-2.379v.199l3.57 7.133c2.641 4.254 7.324 8.699 11.297 11.699c2.059 1.555 3.68 4.242 6.344 5.152v-.199h-.199c-.516-.805-1.324-1.137-1.98-1.781c-1.551-1.523-3.277-3.414-4.559-5.156c-3.613-4.902-6.805-10.27-9.711-15.855c-1.391-2.668-2.598-5.609-3.77-8.324c-.453-1.047-.445-2.633-1.387-3.172c-1.281 1.988-3.172 3.598-4.164 5.945c-1.582 3.754-1.789 8.336-2.375 13.082c-.348.125-.195.039-.398.199c-2.762-.668-3.73-3.508-4.758-5.949c-2.594-6.164-3.078-16.09-.793-23.191c.59-1.836 3.262-7.617 2.18-9.316c-.516-1.691-2.219-2.672-3.172-3.965c-1.18-1.598-2.355-3.703-3.172-5.551c-2.125-4.805-3.113-10.203-5.352-15.062c-1.07-2.324-2.875-4.676-4.359-6.738c-1.645-2.289-3.484-3.977-4.758-6.742c-.453-.984-1.066-2.559-.398-3.566c.215-.684.516-.969 1.191-1.191c1.148-.887 4.352.297 5.547.793c3.18 1.32 5.832 2.578 8.527 4.363c1.289.855 2.598 2.512 4.16 2.973h1.785c2.789.641 5.914.195 8.523.988c4.609 1.402 8.738 3.582 12.488 5.949c11.422 7.215 20.766 17.48 27.156 29.734c1.027 1.973 1.473 3.852 2.379 5.945c1.824 4.219 4.125 8.559 5.941 12.688c1.816 4.113 3.582 8.27 6.148 11.695c1.348 1.801 6.551 2.766 8.918 3.766c1.66.699 4.379 1.43 5.949 2.379c3 1.809 5.906 3.965 8.723 5.945c1.402.992 5.73 3.168 5.945 4.957zm-88.605-75.52c-1.453-.027-2.48.156-3.566.395v.199h.195c.695 1.422 1.918 2.34 2.777 3.566l1.98 4.164l.199-.195c1.227-.867 1.789-2.25 1.781-4.363c-.492-.52-.562-1.164-.992-1.785c-.562-.824-1.66-1.289-2.375-1.98zm0 0"
|
|
13
|
-
})
|
|
14
|
-
});
|
|
15
|
-
});
|
|
16
|
-
export {
|
|
17
|
-
Sql
|
|
18
|
-
};
|
package/lib/qwik51.js
DELETED
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
-
import { component$ } from "@builder.io/qwik";
|
|
3
|
-
const Json = component$(({ size = 24, ...props }) => {
|
|
4
|
-
return /* @__PURE__ */ jsxs("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
width: size,
|
|
7
|
-
height: size,
|
|
8
|
-
viewBox: "0 0 128 128",
|
|
9
|
-
...props,
|
|
10
|
-
children: [
|
|
11
|
-
/* @__PURE__ */ jsxs("linearGradient", {
|
|
12
|
-
id: "deviconJson0",
|
|
13
|
-
x1: "-670.564",
|
|
14
|
-
x2: "-583.105",
|
|
15
|
-
y1: "-280.831",
|
|
16
|
-
y2: "-368.306",
|
|
17
|
-
gradientTransform: "matrix(.9988 0 0 -.9987 689.011 -259.008)",
|
|
18
|
-
gradientUnits: "userSpaceOnUse",
|
|
19
|
-
children: [
|
|
20
|
-
/* @__PURE__ */ jsx("stop", {
|
|
21
|
-
offset: "0"
|
|
22
|
-
}),
|
|
23
|
-
/* @__PURE__ */ jsx("stop", {
|
|
24
|
-
offset: "1",
|
|
25
|
-
"stop-color": "#fff"
|
|
26
|
-
})
|
|
27
|
-
]
|
|
28
|
-
}),
|
|
29
|
-
/* @__PURE__ */ jsx("path", {
|
|
30
|
-
fill: "url(#deviconJson0)",
|
|
31
|
-
"fill-rule": "evenodd",
|
|
32
|
-
d: "M63.895 94.303c27.433 37.398 54.281-10.438 54.241-39.205c-.046-34.012-34.518-53.021-54.263-53.021C32.182 2.077 2 28.269 2 64.105C2 103.937 36.596 126 63.873 126c-6.172-.889-26.742-5.296-27.019-52.674c-.186-32.044 10.453-44.846 26.974-39.214c.37.137 18.223 7.18 18.223 30.187c0 22.908-18.156 30.004-18.156 30.004",
|
|
33
|
-
"clip-rule": "evenodd"
|
|
34
|
-
}),
|
|
35
|
-
/* @__PURE__ */ jsxs("linearGradient", {
|
|
36
|
-
id: "deviconJson1",
|
|
37
|
-
x1: "-579.148",
|
|
38
|
-
x2: "-666.607",
|
|
39
|
-
y1: "-364.34",
|
|
40
|
-
y2: "-276.865",
|
|
41
|
-
gradientTransform: "matrix(.9988 0 0 -.9987 689.011 -259.008)",
|
|
42
|
-
gradientUnits: "userSpaceOnUse",
|
|
43
|
-
children: [
|
|
44
|
-
/* @__PURE__ */ jsx("stop", {
|
|
45
|
-
offset: "0"
|
|
46
|
-
}),
|
|
47
|
-
/* @__PURE__ */ jsx("stop", {
|
|
48
|
-
offset: "1",
|
|
49
|
-
"stop-color": "#fff"
|
|
50
|
-
})
|
|
51
|
-
]
|
|
52
|
-
}),
|
|
53
|
-
/* @__PURE__ */ jsx("path", {
|
|
54
|
-
fill: "url(#deviconJson1)",
|
|
55
|
-
"fill-rule": "evenodd",
|
|
56
|
-
d: "M63.895 94.303c27.433 37.398 54.281-10.438 54.241-39.205c-.046-34.012-34.518-53.021-54.263-53.021C32.182 2.077 2 28.269 2 64.105C2 103.937 36.596 126 63.873 126c-6.172-.889-26.742-5.296-27.019-52.674c-.186-32.044 10.453-44.846 26.974-39.214c.37.137 18.223 7.18 18.223 30.187c0 22.908-18.156 30.004-18.156 30.004",
|
|
57
|
-
"clip-rule": "evenodd"
|
|
58
|
-
})
|
|
59
|
-
]
|
|
60
|
-
});
|
|
61
|
-
});
|
|
62
|
-
export {
|
|
63
|
-
Json
|
|
64
|
-
};
|
package/lib/qwik52.js
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
-
import { component$ } from "@builder.io/qwik";
|
|
3
|
-
const Lua = component$(({ size = 24, ...props }) => {
|
|
4
|
-
return /* @__PURE__ */ jsxs("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
width: size,
|
|
7
|
-
height: size,
|
|
8
|
-
viewBox: "0 0 128 128",
|
|
9
|
-
...props,
|
|
10
|
-
children: [
|
|
11
|
-
/* @__PURE__ */ jsx("path", {
|
|
12
|
-
fill: "#000080",
|
|
13
|
-
d: "M112.956.708c-7.912 0-14.335 6.424-14.335 14.336s6.424 14.335 14.335 14.335s14.335-6.41 14.335-14.335c0-7.912-6.424-14.336-14.335-14.336M64 15.058c-27.02 0-48.956 21.935-48.956 48.955S36.979 112.97 64 112.97c27.02 0 48.956-21.935 48.956-48.956c0-27.02-21.936-48.956-48.956-48.956"
|
|
14
|
-
}),
|
|
15
|
-
/* @__PURE__ */ jsx("path", {
|
|
16
|
-
fill: "#fff",
|
|
17
|
-
d: "M84.285 29.392c-7.91 0-14.335 6.424-14.335 14.335s6.424 14.336 14.335 14.336s14.336-6.424 14.336-14.336s-6.424-14.335-14.335-14.335zM30.773 56.36v32.119h19.961v-3.611H34.87V56.359Zm57.584 8.37c-3.354 0-6.126.975-7.668 2.692c-1.055 1.19-1.488 2.516-1.582 4.801h3.705c.311-2.826 1.988-4.098 5.423-4.098c3.3 0 5.153 1.231 5.153 3.435v.974c0 1.542-.92 2.205-3.827 2.556c-5.193.663-5.991.839-7.398 1.407c-2.69 1.095-4.057 3.164-4.057 6.166c0 4.193 2.908 6.83 7.574 6.83c2.907 0 5.247-1.014 7.843-3.395c.257 2.34 1.407 3.395 3.787 3.395c.757 0 1.325-.081 2.515-.392v-2.773a3 3 0 0 1-.798.095c-1.284 0-1.988-.663-1.988-1.812V71.032c0-4.098-3.002-6.302-8.682-6.302m-33.742.664V83.19c0 3.84 2.867 6.302 7.357 6.302c3.395 0 5.545-1.19 7.709-4.233v3.219h3.3V65.393h-3.652v13.09c0 4.72-2.475 7.804-6.302 7.804c-2.907 0-4.76-1.772-4.76-4.544v-16.35Zm38.773 11.67v4.139c0 1.244-.365 1.988-1.46 3.002c-1.502 1.366-3.3 2.07-5.464 2.07c-2.867 0-4.544-1.367-4.544-3.706c0-2.42 1.636-3.665 5.558-4.233c3.881-.528 4.68-.703 5.91-1.271z"
|
|
18
|
-
}),
|
|
19
|
-
/* @__PURE__ */ jsx("path", {
|
|
20
|
-
fill: "#808080",
|
|
21
|
-
d: "M61.733 0a64 64 0 0 0-5.57.436l.179 1.458a63 63 0 0 1 5.442-.426zm5.585.046l-.075 1.468a62 62 0 0 1 5.433.52L72.88.578a64 64 0 0 0-5.561-.532Zm-16.665 1.31a63 63 0 0 0-5.409 1.398l.43 1.405a62 62 0 0 1 5.284-1.367Zm27.72.237l-.33 1.431a63 63 0 0 1 5.262 1.455l.452-1.397a64 64 0 0 0-5.384-1.489M39.98 4.623a64 64 0 0 0-5.081 2.323l.668 1.308a62 62 0 0 1 4.964-2.27zm49.012.41l-.573 1.353a63 63 0 0 1 4.929 2.346l.688-1.298a64 64 0 0 0-5.044-2.4ZM30.04 9.706a64 64 0 0 0-4.6 3.17l.886 1.173a63 63 0 0 1 4.494-3.098zm-8.906 6.728a64 64 0 0 0-3.983 3.918l1.075 1.001a63 63 0 0 1 3.891-3.827zm-7.61 8.165a64 64 0 0 0-3.247 4.546l1.231.8a63 63 0 0 1 3.172-4.44zm-6.086 9.357a64 64 0 0 0-2.408 5.042l1.352.574a62 62 0 0 1 2.352-4.925zm113.623.973l-1.31.667a63 63 0 0 1 2.263 4.967l1.362-.55a64 64 0 0 0-2.315-5.083zM3.075 44.23a63 63 0 0 0-1.49 5.385l1.432.328a62 62 0 0 1 1.455-5.26Zm122.166 1.049l-1.404.429a63 63 0 0 1 1.366 5.285l1.437-.306a64 64 0 0 0-1.399-5.409zM.574 55.108a64 64 0 0 0-.528 5.561l1.467.075a63 63 0 0 1 .516-5.434Zm126.988 1.088l-1.458.179a63 63 0 0 1 .428 5.441l1.468-.05a64 64 0 0 0-.438-5.57M1.468 66.205L0 66.255a64 64 0 0 0 .435 5.57l1.458-.179a63 63 0 0 1-.425-5.441m125.018 1.071a63 63 0 0 1-.518 5.434l1.455.203a64 64 0 0 0 .53-5.561zM2.79 77.031l-1.437.304a63 63 0 0 0 1.398 5.41l1.405-.43A62 62 0 0 1 2.79 77.03Zm122.188 1.046a62 62 0 0 1-1.457 5.26l1.397.454a63 63 0 0 0 1.492-5.384zM5.981 87.459l-1.362.551a63 63 0 0 0 2.323 5.082l1.307-.669a62 62 0 0 1-2.268-4.964m115.627.99a62 62 0 0 1-2.354 4.925l1.296.69a64 64 0 0 0 2.41-5.04zM10.944 97.17l-1.245.78a64 64 0 0 0 3.17 4.6l1.172-.885a63 63 0 0 1-3.097-4.495m105.534.904a63 63 0 0 1-3.173 4.44l1.156.906a64 64 0 0 0 3.249-4.545zm-98.96 7.8l-1.092.983a64 64 0 0 0 3.917 3.983l1.002-1.074a63 63 0 0 1-3.827-3.892m92.24.79a63 63 0 0 1-3.893 3.826l.983 1.092a64 64 0 0 0 3.984-3.916zm-84.263 6.648l-.906 1.157a64 64 0 0 0 4.546 3.248l.8-1.232a63 63 0 0 1-4.44-3.173m76.16.654a63 63 0 0 1-4.495 3.096l.78 1.245a64 64 0 0 0 4.6-3.17zm-67.018 5.294l-.691 1.296a64 64 0 0 0 5.04 2.409l.575-1.352a62 62 0 0 1-4.924-2.353m57.775.496a62 62 0 0 1-4.964 2.268l.551 1.362a63 63 0 0 0 5.082-2.322zm-47.74 3.77l-.453 1.396a63 63 0 0 0 5.385 1.49l.329-1.43a62 62 0 0 1-5.26-1.456zm37.632.322a62 62 0 0 1-5.284 1.365l.304 1.437a63 63 0 0 0 5.41-1.398zm-27.003 2.122l-.203 1.455a64 64 0 0 0 5.561.529l.075-1.467a63 63 0 0 1-5.433-.517m16.335.139a63 63 0 0 1-5.442.424l.05 1.468a64 64 0 0 0 5.57-.434z"
|
|
22
|
-
})
|
|
23
|
-
]
|
|
24
|
-
});
|
|
25
|
-
});
|
|
26
|
-
export {
|
|
27
|
-
Lua
|
|
28
|
-
};
|
package/lib/qwik53.js
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
-
import { component$ } from "@builder.io/qwik";
|
|
3
|
-
const Csharp = component$(({ size = 24, ...props }) => {
|
|
4
|
-
return /* @__PURE__ */ jsxs("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 128 128",
|
|
7
|
-
width: size,
|
|
8
|
-
height: size,
|
|
9
|
-
...props,
|
|
10
|
-
children: [
|
|
11
|
-
/* @__PURE__ */ jsx("path", {
|
|
12
|
-
fill: "#9b4f96",
|
|
13
|
-
d: "M115.4 30.7L67.1 2.9c-.8-.5-1.9-.7-3.1-.7s-2.3.3-3.1.7l-48 27.9c-1.7 1-2.9 3.5-2.9 5.4v55.7c0 1.1.2 2.4 1 3.5l106.8-62c-.6-1.2-1.5-2.1-2.4-2.7"
|
|
14
|
-
}),
|
|
15
|
-
/* @__PURE__ */ jsx("path", {
|
|
16
|
-
fill: "#68217a",
|
|
17
|
-
d: "M10.7 95.3c.5.8 1.2 1.5 1.9 1.9l48.2 27.9c.8.5 1.9.7 3.1.7s2.3-.3 3.1-.7l48-27.9c1.7-1 2.9-3.5 2.9-5.4V36.1c0-.9-.1-1.9-.6-2.8z"
|
|
18
|
-
}),
|
|
19
|
-
/* @__PURE__ */ jsx("path", {
|
|
20
|
-
fill: "#fff",
|
|
21
|
-
d: "M85.3 76.1C81.1 83.5 73.1 88.5 64 88.5c-13.5 0-24.5-11-24.5-24.5s11-24.5 24.5-24.5c9.1 0 17.1 5 21.3 12.5l13-7.5c-6.8-11.9-19.6-20-34.3-20c-21.8 0-39.5 17.7-39.5 39.5s17.7 39.5 39.5 39.5c14.6 0 27.4-8 34.2-19.8zM97 66.2l.9-4.3h-4.2v-4.7h5.1L100 51h4.9l-1.2 6.1h3.8l1.2-6.1h4.8l-1.2 6.1h2.4v4.7h-3.3l-.9 4.3h4.2v4.7h-5.1l-1.2 6h-4.9l1.2-6h-3.8l-1.2 6h-4.8l1.2-6h-2.4v-4.7H97zm4.8 0h3.8l.9-4.3h-3.8z"
|
|
22
|
-
})
|
|
23
|
-
]
|
|
24
|
-
});
|
|
25
|
-
});
|
|
26
|
-
export {
|
|
27
|
-
Csharp
|
|
28
|
-
};
|