8 lines
27 KiB
Plaintext
8 lines
27 KiB
Plaintext
{
|
|
"version": 3,
|
|
"sources": ["https://deno.land/x/fresh@1.4.2/src/runtime/head.ts", "https://deno.land/x/fresh@1.4.2/src/runtime/csp.ts", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/circle-plus.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/circle-minus.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/loader-2.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/search.tsx", "components/icons.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/star.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/star-filled.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/external-link.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/arrow-narrow-left.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/edit.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/arrow-left.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/error-404.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/square-rounded-plus.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/report-search.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/refresh.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/login.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/logout.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/ghost.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/brand-youtube.tsx"],
|
|
"sourcesContent": ["import { ComponentChildren, createContext } from \"preact\";\nimport { useContext } from \"preact/hooks\";\n\nexport interface HeadProps {\n children: ComponentChildren;\n}\n\nexport const HEAD_CONTEXT = createContext<ComponentChildren[]>([]);\n\nexport function Head(props: HeadProps) {\n let context: ComponentChildren[];\n try {\n context = useContext(HEAD_CONTEXT);\n } catch (err) {\n throw new Error(\n \"<Head> component is not supported in the browser, or during suspense renders.\",\n { cause: err },\n );\n }\n context.push(props.children);\n return null;\n}\n", "import { createContext } from \"preact\";\nimport { useContext } from \"preact/hooks\";\n\nexport const SELF = \"'self'\";\nexport const UNSAFE_INLINE = \"'unsafe-inline'\";\nexport const UNSAFE_EVAL = \"'unsafe-eval'\";\nexport const UNSAFE_HASHES = \"'unsafe-hashes'\";\nexport const NONE = \"'none'\";\nexport const STRICT_DYNAMIC = \"'strict-dynamic'\";\n\nexport function nonce(val: string) {\n return `'nonce-${val}'`;\n}\n\nexport interface ContentSecurityPolicy {\n directives: ContentSecurityPolicyDirectives;\n reportOnly: boolean;\n}\n\nexport interface ContentSecurityPolicyDirectives {\n // Fetch directives\n /**\n * Defines the valid sources for web workers and nested browsing contexts\n * loaded using elements such as <frame> and <iframe>.\n */\n childSrc?: string[];\n /**\n * Restricts the URLs which can be loaded using script interfaces.\n */\n connectSrc?: string[];\n /**\n * Serves as a fallback for the other fetch directives.\n */\n defaultSrc?: string[];\n /**\n * Specifies valid sources for fonts loaded using @font-face.\n */\n fontSrc?: string[];\n /**\n * Specifies valid sources for nested browsing contexts loading using elements\n * such as <frame> and <iframe>.\n */\n frameSrc?: string[];\n /**\n * Specifies valid sources of images and favicons.\n */\n imgSrc?: string[];\n /**\n * Specifies valid sources of application manifest files.\n */\n manifestSrc?: string[];\n /**\n * Specifies valid sources for loading media using the <audio> , <video> and\n * <track> elements.\n */\n mediaSrc?: string[];\n /**\n * Specifies valid sources for the <object>, <embed>, and <applet> elements.\n */\n objectSrc?: string[];\n /**\n * Specifies valid sources to be prefetched or prerendered.\n */\n prefetchSrc?: string[];\n /**\n * Specifies valid sources for JavaScript.\n */\n scriptSrc?: string[];\n /**\n * Specifies valid sources for JavaScript <script> elements.\n */\n scriptSrcElem?: string[];\n /**\n * Specifies valid sources for JavaScript inline event handlers.\n */\n scriptSrcAttr?: string[];\n /**\n * Specifies valid sources for stylesheets.\n */\n styleSrc?: string[];\n /**\n * Specifies valid sources for stylesheets <style> elements and <link>\n * elements with rel=\"stylesheet\".\n */\n styleSrcElem?: string[];\n /**\n * Specifies valid sources for inline styles applied to individual DOM\n * elements.\n */\n styleSrcAttr?: string[];\n /**\n * Specifies valid sources for Worker, SharedWorker, or ServiceWorker scripts.\n */\n workerSrc?: string[];\n\n // Document directives\n /**\n * Restricts the URLs which can be used in a document's <base> element.\n */\n baseUri?: string[];\n /**\n * Enables a sandbox for the requested resource similar to the <iframe>\n * sandbox attribute.\n */\n sandbox?: string[];\n\n // Navigation directives\n /**\n * Restricts the URLs which can be used as the target of a form submissions\n * from a given context.\n */\n formAction?: string[];\n /**\n * Specifies valid parents that may embed a page using <frame>, <iframe>,\n * <object>, <embed>, or <applet>.\n */\n frameAncestors?: string[];\n /**\n * Restricts the URLs to which a document can initiate navigation by any\n * means, including <form> (if form-action is not specified), <a>,\n * window.location, window.open, etc.\n */\n navigateTo?: string[];\n\n /**\n * The URI to report CSP violations to.\n */\n reportUri?: string;\n}\n\nexport const CSP_CONTEXT = createContext<ContentSecurityPolicy | undefined>(\n undefined,\n);\n\nexport function useCSP(mutator: (csp: ContentSecurityPolicy) => void) {\n const csp = useContext(CSP_CONTEXT);\n if (csp) {\n mutator(csp);\n }\n}\n", "function IconCirclePlus({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-circle-plus\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0\" />\n <path d=\"M9 12l6 0\" />\n <path d=\"M12 9l0 6\" />\n </svg>\n );\n}\nexport default IconCirclePlus;\n", "function IconCircleMinus({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-circle-minus\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0\" />\n <path d=\"M9 12l6 0\" />\n </svg>\n );\n}\nexport default IconCircleMinus;\n", "function IconLoader2({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-loader-2\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M12 3a9 9 0 1 0 9 9\" />\n </svg>\n );\n}\nexport default IconLoader2;\n", "function IconSearch({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-search\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0\" />\n <path d=\"M21 21l-6 -6\" />\n </svg>\n );\n}\nexport default IconSearch;\n", "export { default as IconStar } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/star.tsx\";\nexport { default as IconStarFilled } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/star-filled.tsx\";\nexport { default as IconExternalLink } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/external-link.tsx\";\nexport { default as IconArrowNarrowLeft } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/arrow-narrow-left.tsx\";\nexport { default as IconEdit } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/edit.tsx\";\nexport { default as IconArrowLeft } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/arrow-left.tsx\";\nexport { default as IconError404 } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/error-404.tsx\";\nexport { default as IconSquareRoundedPlus } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/square-rounded-plus.tsx\";\nexport { default as IconReportSearch } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/report-search.tsx\";\nexport { default as IconRefresh } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/refresh.tsx\";\nexport { default as IconCirclePlus } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/circle-plus.tsx\";\nexport { default as IconCircleMinus } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/circle-minus.tsx\";\nexport { default as IconLoader2 } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/loader-2.tsx\";\nexport { default as IconLogin } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/login.tsx\";\nexport { default as IconLogout } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/logout.tsx\";\nexport { default as IconSearch } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/search.tsx\";\nexport { default as IconGhost } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/ghost.tsx\";\nexport { default as IconBrandYoutube } from \"https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/brand-youtube.tsx\";\n", "function IconStar({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-star\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z\" />\n </svg>\n );\n}\nexport default IconStar;\n", "function IconStarFilled({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-star-filled\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path\n d=\"M8.243 7.34l-6.38 .925l-.113 .023a1 1 0 0 0 -.44 1.684l4.622 4.499l-1.09 6.355l-.013 .11a1 1 0 0 0 1.464 .944l5.706 -3l5.693 3l.1 .046a1 1 0 0 0 1.352 -1.1l-1.091 -6.355l4.624 -4.5l.078 -.085a1 1 0 0 0 -.633 -1.62l-6.38 -.926l-2.852 -5.78a1 1 0 0 0 -1.794 0l-2.853 5.78z\"\n strokeWidth={0}\n fill=\"currentColor\"\n />\n </svg>\n );\n}\nexport default IconStarFilled;\n", "function IconExternalLink({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-external-link\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M11 7h-5a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-5\" />\n <path d=\"M10 14l10 -10\" />\n <path d=\"M15 4l5 0l0 5\" />\n </svg>\n );\n}\nexport default IconExternalLink;\n", "function IconArrowNarrowLeft({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-arrow-narrow-left\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M5 12l14 0\" />\n <path d=\"M5 12l4 4\" />\n <path d=\"M5 12l4 -4\" />\n </svg>\n );\n}\nexport default IconArrowNarrowLeft;\n", "function IconEdit({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-edit\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1\" />\n <path d=\"M20.385 6.585a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3l8.385 -8.415z\" />\n <path d=\"M16 5l3 3\" />\n </svg>\n );\n}\nexport default IconEdit;\n", "function IconArrowLeft({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-arrow-left\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M5 12l14 0\" />\n <path d=\"M5 12l6 6\" />\n <path d=\"M5 12l6 -6\" />\n </svg>\n );\n}\nexport default IconArrowLeft;\n", "function IconError404({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-error-404\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M3 7v4a1 1 0 0 0 1 1h3\" />\n <path d=\"M7 7v10\" />\n <path d=\"M10 8v8a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1z\" />\n <path d=\"M17 7v4a1 1 0 0 0 1 1h3\" />\n <path d=\"M21 7v10\" />\n </svg>\n );\n}\nexport default IconError404;\n", "function IconSquareRoundedPlus({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-square-rounded-plus\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M9 12h6\" />\n <path d=\"M12 9v6\" />\n <path d=\"M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z\" />\n </svg>\n );\n}\nexport default IconSquareRoundedPlus;\n", "function IconReportSearch({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-report-search\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M8 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h5.697\" />\n <path d=\"M18 12v-5a2 2 0 0 0 -2 -2h-2\" />\n <path d=\"M8 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z\" />\n <path d=\"M8 11h4\" />\n <path d=\"M8 15h3\" />\n <path d=\"M16.5 17.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0\" />\n <path d=\"M18.5 19.5l2.5 2.5\" />\n </svg>\n );\n}\nexport default IconReportSearch;\n", "function IconRefresh({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-refresh\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4\" />\n <path d=\"M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4\" />\n </svg>\n );\n}\nexport default IconRefresh;\n", "function IconLogin({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-login\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2\" />\n <path d=\"M20 12h-13l3 -3m0 6l-3 -3\" />\n </svg>\n );\n}\nexport default IconLogin;\n", "function IconLogout({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-logout\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2\" />\n <path d=\"M7 12h14l-3 -3m0 6l3 -3\" />\n </svg>\n );\n}\nexport default IconLogout;\n", "function IconGhost({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-ghost\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7\" />\n <path d=\"M10 10l.01 0\" />\n <path d=\"M14 10l.01 0\" />\n <path d=\"M10 14a3.5 3.5 0 0 0 4 0\" />\n </svg>\n );\n}\nexport default IconGhost;\n", "function IconBrandYoutube({\n size = 24,\n color = \"currentColor\",\n stroke = 2,\n ...props\n}) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n class=\"icon icon-tabler icon-tabler-brand-youtube\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n stroke-width={stroke}\n stroke={color}\n fill=\"none\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n {...props}\n >\n <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path d=\"M3 5m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v6a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z\" />\n <path d=\"M10 9l5 3l-5 3z\" />\n </svg>\n );\n}\nexport default IconBrandYoutube;\n"],
|
|
"mappings": "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",
|
|
"names": []
|
|
}
|