@grafana/components 0.0.53 → 0.0.55
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/dist/cjs/index.cjs +87 -2
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +27 -2
- package/dist/esm/components/ComparisonBadge/ComparisonBadge.js +8 -0
- package/dist/esm/components/ComparisonBadge/ComparisonBadge.js.map +1 -1
- package/dist/esm/components/ComparisonTooltip/ComparisonTooltip.js +8 -0
- package/dist/esm/components/ComparisonTooltip/ComparisonTooltip.js.map +1 -1
- package/dist/esm/components/Icons/CloudIncident.js +10 -0
- package/dist/esm/components/Icons/CloudIncident.js.map +1 -0
- package/dist/esm/components/Icons/FrontendObservability.js +13 -0
- package/dist/esm/components/Icons/FrontendObservability.js.map +1 -0
- package/dist/esm/components/Icons/Irm.js +10 -0
- package/dist/esm/components/Icons/Irm.js.map +1 -0
- package/dist/esm/components/Icons/Loki.js +10 -0
- package/dist/esm/components/Icons/Loki.js.map +1 -0
- package/dist/esm/components/Icons/Mimir.js +10 -0
- package/dist/esm/components/Icons/Mimir.js.map +1 -0
- package/dist/esm/components/Icons/SloTarget.js +12 -0
- package/dist/esm/components/Icons/SloTarget.js.map +1 -0
- package/dist/esm/components/Icons/SyntheticMonitoring.js +17 -0
- package/dist/esm/components/Icons/SyntheticMonitoring.js.map +1 -0
- package/dist/esm/components/Icons/Tempo.js +10 -0
- package/dist/esm/components/Icons/Tempo.js.map +1 -0
- package/dist/esm/components/Icons/allIcons.js +16 -0
- package/dist/esm/components/Icons/allIcons.js.map +1 -1
- package/dist/esm/components/Icons/iconMetaData.js +8 -0
- package/dist/esm/components/Icons/iconMetaData.js.map +1 -1
- package/dist/esm/components/StackedChartNoData/StackedChartNoData.js +8 -0
- package/dist/esm/components/StackedChartNoData/StackedChartNoData.js.map +1 -1
- package/dist/esm/components/StackedChartSegment/StackedChartSegment.styles.js +1 -1
- package/dist/esm/components/StackedChartSegment/StackedChartSegment.styles.js.map +1 -1
- package/dist/esm/components/StackedChartSegmentTooltip/StackedChartSegmentTooltip.styles.js +1 -1
- package/dist/esm/components/StackedChartSegmentTooltip/StackedChartSegmentTooltip.styles.js.map +1 -1
- package/dist/esm/index.d.ts +27 -2
- package/dist/esm/index.js +9 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/utils/styles.js +6 -0
- package/dist/esm/utils/styles.js.map +1 -0
- package/package.json +1 -1
- package/dist/esm/components/StackedChart/shared.styles.js +0 -6
- package/dist/esm/components/StackedChart/shared.styles.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComparisonTooltip.js","sources":["../../../../src/components/ComparisonTooltip/ComparisonTooltip.tsx"],"sourcesContent":["import { Icon, SVGComponent } from '../Icon';\nimport { Clock, Eye } from '../Icons';\nimport { Popover, PopoverWithTriggerProps } from '../Popover';\nimport { getStyles } from './ComparisonTooltip.styles';\n\nexport interface ComparisonTooltipProps extends Omit<PopoverWithTriggerProps, 'children'> {\n current?: string;\n previous?: string;\n previousLabel?: string;\n currentLabel?: string;\n title?: string;\n currentIcon?: SVGComponent;\n previousIcon?: SVGComponent;\n hideDelay?: number;\n}\n\nexport const ComparisonTooltip = ({\n trigger,\n placement = 'top',\n current,\n previous,\n previousLabel = 'Previous',\n currentLabel = 'Current',\n title,\n currentIcon = Eye,\n previousIcon = Clock,\n hideDelay,\n}: ComparisonTooltipProps) => {\n const styles = getStyles();\n\n return (\n <Popover trigger={trigger} placement={placement} hideDelay={hideDelay}>\n <div className={styles.wrapper}>\n {title && <div className={styles.heading}>{title}</div>}\n <div className={styles.content}>\n <div className={styles.section}>\n <div className={styles.sectionTitle}>{currentLabel}</div>\n <div className={styles.value}>\n <Icon component={currentIcon} size=\"sm\" />\n <span>{current || 'N/A'}</span>\n </div>\n </div>\n <div className={styles.section}>\n <div className={styles.sectionTitle}>{previousLabel}</div>\n <div className={styles.value}>\n <Icon component={previousIcon} size=\"sm\" />\n <span>{previous || 'N/A'}</span>\n </div>\n </div>\n </div>\n </div>\n </Popover>\n );\n};\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ComparisonTooltip.js","sources":["../../../../src/components/ComparisonTooltip/ComparisonTooltip.tsx"],"sourcesContent":["import { Icon, SVGComponent } from '../Icon';\nimport { Clock, Eye } from '../Icons';\nimport { Popover, PopoverWithTriggerProps } from '../Popover';\nimport { getStyles } from './ComparisonTooltip.styles';\n\nexport interface ComparisonTooltipProps extends Omit<PopoverWithTriggerProps, 'children'> {\n current?: string;\n previous?: string;\n previousLabel?: string;\n currentLabel?: string;\n title?: string;\n currentIcon?: SVGComponent;\n previousIcon?: SVGComponent;\n hideDelay?: number;\n}\n\nexport const ComparisonTooltip = ({\n trigger,\n placement = 'top',\n current,\n previous,\n previousLabel = 'Previous',\n currentLabel = 'Current',\n title,\n currentIcon = Eye,\n previousIcon = Clock,\n hideDelay,\n}: ComparisonTooltipProps) => {\n const styles = getStyles();\n\n return (\n <Popover trigger={trigger} placement={placement} hideDelay={hideDelay}>\n <div className={styles.wrapper}>\n {title && <div className={styles.heading}>{title}</div>}\n <div className={styles.content}>\n <div className={styles.section}>\n <div className={styles.sectionTitle}>{currentLabel}</div>\n <div className={styles.value}>\n <Icon component={currentIcon} size=\"sm\" />\n <span>{current || 'N/A'}</span>\n </div>\n </div>\n <div className={styles.section}>\n <div className={styles.sectionTitle}>{previousLabel}</div>\n <div className={styles.value}>\n <Icon component={previousIcon} size=\"sm\" />\n <span>{previous || 'N/A'}</span>\n </div>\n </div>\n </div>\n </div>\n </Popover>\n );\n};\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
const CloudIncident = ({ title = "Cloud incident", ...props }) => /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
4
|
+
title && /* @__PURE__ */ jsx("title", { children: title }),
|
|
5
|
+
/* @__PURE__ */ jsx("path", { d: "M4.686 5.586c.278.28.73.28 1.01 0a.72.72 0 0 0 0-1.012l-1.24-1.241a.713.713 0 0 0-1.009 0 .72.72 0 0 0 0 1.012zM12 4.04c.394 0 .714-.32.714-.716v-1.24a.715.715 0 1 0-1.428 0v1.24c0 .396.32.716.714.716m7.314 1.546 1.239-1.241a.72.72 0 0 0 0-1.012.713.713 0 0 0-1.01 0l-1.237 1.24a.72.72 0 0 0 0 1.013.71.71 0 0 0 1.008 0m-1.211 11.246-1.022-8.307a2.4 2.4 0 0 0-.892-1.568 2.93 2.93 0 0 0-1.823-.639H9.65a2.93 2.93 0 0 0-1.847.627 2.4 2.4 0 0 0-.906 1.579l-1.023 8.317a3.3 3.3 0 0 0-1.735.88 3.17 3.17 0 0 0-.969 2.276c0 .54.221 1.052.607 1.425.384.372.9.578 1.432.578h13.619a2.05 2.05 0 0 0 1.43-.578c.385-.373.607-.885.607-1.425 0-.858-.352-1.676-.969-2.276a3.3 3.3 0 0 0-1.793-.89m-9.267-4.497a.797.797 0 0 1 1.119.157l1.157 1.538 2.462-4.376a.797.797 0 0 1 1.088-.304.8.8 0 0 1 .304 1.091l-2.596 4.62-.002.007q-.178.307-.453.501a1.34 1.34 0 0 1-.655.241 1.3 1.3 0 0 1-.704-.121 1.5 1.5 0 0 1-.534-.445l-1.34-1.783a.803.803 0 0 1 .156-1.123m10.31 7.937a.46.46 0 0 1-.32.127H5.209a.46.46 0 0 1-.32-.127.38.38 0 0 1-.12-.274c0-.417.17-.821.482-1.124a1.72 1.72 0 0 1 1.195-.478h11.143c.454 0 .883.176 1.195.478.312.303.482.707.482 1.124 0 .098-.04.198-.12.274zM4.667 10.047a.715.715 0 0 0-.713-.715h-1.24a.715.715 0 0 0 0 1.43h1.237c.394 0 .714-.32.714-.715zm16.62-.715h-1.239a.715.715 0 0 0 0 1.43h1.239a.715.715 0 0 0 0-1.43" })
|
|
6
|
+
] });
|
|
7
|
+
CloudIncident.fill = "solid";
|
|
8
|
+
|
|
9
|
+
export { CloudIncident };
|
|
10
|
+
//# sourceMappingURL=CloudIncident.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CloudIncident.js","sources":["../../../../src/components/Icons/CloudIncident.tsx"],"sourcesContent":["import type { SVGComponent } from '../Icon/types';\n\nexport const CloudIncident: SVGComponent = ({ title = 'Cloud incident', ...props }) => (\n <svg viewBox=\"0 0 24 24\" {...props}>\n {title && <title>{title}</title>}\n <path d=\"M4.686 5.586c.278.28.73.28 1.01 0a.72.72 0 0 0 0-1.012l-1.24-1.241a.713.713 0 0 0-1.009 0 .72.72 0 0 0 0 1.012zM12 4.04c.394 0 .714-.32.714-.716v-1.24a.715.715 0 1 0-1.428 0v1.24c0 .396.32.716.714.716m7.314 1.546 1.239-1.241a.72.72 0 0 0 0-1.012.713.713 0 0 0-1.01 0l-1.237 1.24a.72.72 0 0 0 0 1.013.71.71 0 0 0 1.008 0m-1.211 11.246-1.022-8.307a2.4 2.4 0 0 0-.892-1.568 2.93 2.93 0 0 0-1.823-.639H9.65a2.93 2.93 0 0 0-1.847.627 2.4 2.4 0 0 0-.906 1.579l-1.023 8.317a3.3 3.3 0 0 0-1.735.88 3.17 3.17 0 0 0-.969 2.276c0 .54.221 1.052.607 1.425.384.372.9.578 1.432.578h13.619a2.05 2.05 0 0 0 1.43-.578c.385-.373.607-.885.607-1.425 0-.858-.352-1.676-.969-2.276a3.3 3.3 0 0 0-1.793-.89m-9.267-4.497a.797.797 0 0 1 1.119.157l1.157 1.538 2.462-4.376a.797.797 0 0 1 1.088-.304.8.8 0 0 1 .304 1.091l-2.596 4.62-.002.007q-.178.307-.453.501a1.34 1.34 0 0 1-.655.241 1.3 1.3 0 0 1-.704-.121 1.5 1.5 0 0 1-.534-.445l-1.34-1.783a.803.803 0 0 1 .156-1.123m10.31 7.937a.46.46 0 0 1-.32.127H5.209a.46.46 0 0 1-.32-.127.38.38 0 0 1-.12-.274c0-.417.17-.821.482-1.124a1.72 1.72 0 0 1 1.195-.478h11.143c.454 0 .883.176 1.195.478.312.303.482.707.482 1.124 0 .098-.04.198-.12.274zM4.667 10.047a.715.715 0 0 0-.713-.715h-1.24a.715.715 0 0 0 0 1.43h1.237c.394 0 .714-.32.714-.715zm16.62-.715h-1.239a.715.715 0 0 0 0 1.43h1.239a.715.715 0 0 0 0-1.43\"></path>\n </svg>\n);\n\nCloudIncident.fill = 'solid';\n"],"names":[],"mappings":";;AAEO,MAAM,aAAA,GAA8B,CAAC,EAAE,KAAA,GAAQ,gBAAA,EAAkB,GAAG,KAAA,EAAM,qBAC/E,IAAA,CAAC,KAAA,EAAA,EAAI,OAAA,EAAQ,WAAA,EAAa,GAAG,KAAA,EAC1B,QAAA,EAAA;AAAA,EAAA,KAAA,oBAAS,GAAA,CAAC,WAAO,QAAA,EAAA,KAAA,EAAM,CAAA;AAAA,kBACxB,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,8yCAAA,EAA+yC;AAAA,CAAA,EACzzC;AAGF,aAAA,CAAc,IAAA,GAAO,OAAA;;;;"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
const FrontendObservability = ({
|
|
4
|
+
title = "Frontend observability",
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
7
|
+
title && /* @__PURE__ */ jsx("title", { children: title }),
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M11.615 21.999 4 21.157v-.754l7.615-.842zm0-3.512L4 17.646v-.754l7.615-.843zm3.795-3.514L4 14.133v-.753l11.41-.839zm0-3.513L4 10.62v-.752l11.41-.84zm3.821-3.509L4 7.11v-.754l15.231-.841zm0-3.513L4 3.596v-.754L19.231 2z" })
|
|
9
|
+
] });
|
|
10
|
+
FrontendObservability.fill = "solid";
|
|
11
|
+
|
|
12
|
+
export { FrontendObservability };
|
|
13
|
+
//# sourceMappingURL=FrontendObservability.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FrontendObservability.js","sources":["../../../../src/components/Icons/FrontendObservability.tsx"],"sourcesContent":["import type { SVGComponent } from '../Icon/types';\n\nexport const FrontendObservability: SVGComponent = ({\n title = 'Frontend observability',\n ...props\n}) => (\n <svg viewBox=\"0 0 24 24\" {...props}>\n {title && <title>{title}</title>}\n <path d=\"M11.615 21.999 4 21.157v-.754l7.615-.842zm0-3.512L4 17.646v-.754l7.615-.843zm3.795-3.514L4 14.133v-.753l11.41-.839zm0-3.513L4 10.62v-.752l11.41-.84zm3.821-3.509L4 7.11v-.754l15.231-.841zm0-3.513L4 3.596v-.754L19.231 2z\"></path>\n </svg>\n);\n\nFrontendObservability.fill = 'solid';\n"],"names":[],"mappings":";;AAEO,MAAM,wBAAsC,CAAC;AAAA,EAClD,KAAA,GAAQ,wBAAA;AAAA,EACR,GAAG;AACL,CAAA,qBACE,IAAA,CAAC,KAAA,EAAA,EAAI,OAAA,EAAQ,WAAA,EAAa,GAAG,KAAA,EAC1B,QAAA,EAAA;AAAA,EAAA,KAAA,oBAAS,GAAA,CAAC,WAAO,QAAA,EAAA,KAAA,EAAM,CAAA;AAAA,kBACxB,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,4NAAA,EAA6N;AAAA,CAAA,EACvO;AAGF,qBAAA,CAAsB,IAAA,GAAO,OAAA;;;;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
const Irm = ({ title = "Irm", ...props }) => /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
4
|
+
title && /* @__PURE__ */ jsx("title", { children: title }),
|
|
5
|
+
/* @__PURE__ */ jsx("path", { d: "M15.029 14.272c.223 0 .404.169.404.377v6.221c0 .624-.544 1.13-1.216 1.13h-4.55c-.673 0-1.216-.506-1.216-1.13v-6.22c0-.208.18-.377.404-.377zm-3.645-5.477c.11 0 .202.085.202.188v4.348c0 .104-.091.188-.202.188h-1.352c-.104 0-.192-.073-.202-.17l-.466-4.347c-.012-.11.081-.208.202-.208zm5.788 0c.128 0 .224.109.2.225l-.934 4.348a.2.2 0 0 1-.198.151h-1.052c-.12 0-.214-.097-.202-.207l.47-4.347c.01-.097.098-.17.202-.17zm-8.828-.001c.104 0 .192.074.202.17l.465 4.348c.012.11-.08.206-.2.207H7.76a.2.2 0 0 1-.2-.152L6.63 9.02c-.025-.116.07-.224.198-.225zm6.09 0c.12 0 .213.096.202.206l-.47 4.349c-.01.096-.098.17-.202.17H12.6c-.112 0-.203-.085-.203-.188V8.982c0-.103.091-.187.203-.188h-.001zm1.23-2.258c.136 0 .234.124.193.245l-.38 1.13a.2.2 0 0 1-.194.133H8.598a.2.2 0 0 1-.194-.133l-.38-1.13c-.041-.12.057-.245.193-.245zm-3.417-1.503h3.652c.272 0 .467.245.385.488a.4.4 0 0 1-.385.263h-7.91a.4.4 0 0 1-.387-.263c-.082-.243.114-.488.386-.488h3.651v-.764a1.6 1.6 0 0 0 .608 0zM11.943 2c.572 0 1.036.43 1.036.962 0 .531-.464.962-1.036.962s-1.036-.43-1.036-.962c0-.531.464-.962 1.036-.962" })
|
|
6
|
+
] });
|
|
7
|
+
Irm.fill = "solid";
|
|
8
|
+
|
|
9
|
+
export { Irm };
|
|
10
|
+
//# sourceMappingURL=Irm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Irm.js","sources":["../../../../src/components/Icons/Irm.tsx"],"sourcesContent":["import type { SVGComponent } from '../Icon/types';\n\nexport const Irm: SVGComponent = ({ title = 'Irm', ...props }) => (\n <svg viewBox=\"0 0 24 24\" {...props}>\n {title && <title>{title}</title>}\n <path d=\"M15.029 14.272c.223 0 .404.169.404.377v6.221c0 .624-.544 1.13-1.216 1.13h-4.55c-.673 0-1.216-.506-1.216-1.13v-6.22c0-.208.18-.377.404-.377zm-3.645-5.477c.11 0 .202.085.202.188v4.348c0 .104-.091.188-.202.188h-1.352c-.104 0-.192-.073-.202-.17l-.466-4.347c-.012-.11.081-.208.202-.208zm5.788 0c.128 0 .224.109.2.225l-.934 4.348a.2.2 0 0 1-.198.151h-1.052c-.12 0-.214-.097-.202-.207l.47-4.347c.01-.097.098-.17.202-.17zm-8.828-.001c.104 0 .192.074.202.17l.465 4.348c.012.11-.08.206-.2.207H7.76a.2.2 0 0 1-.2-.152L6.63 9.02c-.025-.116.07-.224.198-.225zm6.09 0c.12 0 .213.096.202.206l-.47 4.349c-.01.096-.098.17-.202.17H12.6c-.112 0-.203-.085-.203-.188V8.982c0-.103.091-.187.203-.188h-.001zm1.23-2.258c.136 0 .234.124.193.245l-.38 1.13a.2.2 0 0 1-.194.133H8.598a.2.2 0 0 1-.194-.133l-.38-1.13c-.041-.12.057-.245.193-.245zm-3.417-1.503h3.652c.272 0 .467.245.385.488a.4.4 0 0 1-.385.263h-7.91a.4.4 0 0 1-.387-.263c-.082-.243.114-.488.386-.488h3.651v-.764a1.6 1.6 0 0 0 .608 0zM11.943 2c.572 0 1.036.43 1.036.962 0 .531-.464.962-1.036.962s-1.036-.43-1.036-.962c0-.531.464-.962 1.036-.962\"></path>\n </svg>\n);\n\nIrm.fill = 'solid';\n"],"names":[],"mappings":";;AAEO,MAAM,GAAA,GAAoB,CAAC,EAAE,KAAA,GAAQ,KAAA,EAAO,GAAG,KAAA,EAAM,qBAC1D,IAAA,CAAC,KAAA,EAAA,EAAI,OAAA,EAAQ,WAAA,EAAa,GAAG,KAAA,EAC1B,QAAA,EAAA;AAAA,EAAA,KAAA,oBAAS,GAAA,CAAC,WAAO,QAAA,EAAA,KAAA,EAAM,CAAA;AAAA,kBACxB,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,sjCAAA,EAAujC;AAAA,CAAA,EACjkC;AAGF,GAAA,CAAI,IAAA,GAAO,OAAA;;;;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
const Loki = ({ title = "Loki", ...props }) => /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
4
|
+
title && /* @__PURE__ */ jsx("title", { children: title }),
|
|
5
|
+
/* @__PURE__ */ jsx("path", { d: "M7.976 22.67 6.332 23 6 21.348l1.644-.33zm2.584-.522-1.652.33-.33-1.644 1.652-.33zm2.578-.514-1.645.33-.33-1.651 1.645-.331zm8.21-1.644-7.277 1.454-.33-1.646 7.276-1.46zm-13.887.096-1.652.33-.33-1.645 1.653-.33zm2.579-.515-1.646.331-.33-1.653 1.645-.33zm2.584-.521-1.652.33-.33-1.644 1.652-.33zm8.21-1.645-7.277 1.46-.33-1.651 7.276-1.454zm-14.841.293-.697.14L2.652 4.643l.698-.14zm.955-.19-.697.139L3.416 3.482l.698-.139zm1.638-.331-.698.14L4.642 1.14 5.34 1zm.954-.19-.698.139L5.87 2.27l.697-.139zm1.616-.324-.698.14L8.02 4.635l.698-.14zm.954-.191-.697.14-2.526-12.63.697-.14z" })
|
|
6
|
+
] });
|
|
7
|
+
Loki.fill = "solid";
|
|
8
|
+
|
|
9
|
+
export { Loki };
|
|
10
|
+
//# sourceMappingURL=Loki.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Loki.js","sources":["../../../../src/components/Icons/Loki.tsx"],"sourcesContent":["import type { SVGComponent } from '../Icon/types';\n\nexport const Loki: SVGComponent = ({ title = 'Loki', ...props }) => (\n <svg viewBox=\"0 0 24 24\" {...props}>\n {title && <title>{title}</title>}\n <path d=\"M7.976 22.67 6.332 23 6 21.348l1.644-.33zm2.584-.522-1.652.33-.33-1.644 1.652-.33zm2.578-.514-1.645.33-.33-1.651 1.645-.331zm8.21-1.644-7.277 1.454-.33-1.646 7.276-1.46zm-13.887.096-1.652.33-.33-1.645 1.653-.33zm2.579-.515-1.646.331-.33-1.653 1.645-.33zm2.584-.521-1.652.33-.33-1.644 1.652-.33zm8.21-1.645-7.277 1.46-.33-1.651 7.276-1.454zm-14.841.293-.697.14L2.652 4.643l.698-.14zm.955-.19-.697.139L3.416 3.482l.698-.139zm1.638-.331-.698.14L4.642 1.14 5.34 1zm.954-.19-.698.139L5.87 2.27l.697-.139zm1.616-.324-.698.14L8.02 4.635l.698-.14zm.954-.191-.697.14-2.526-12.63.697-.14z\"></path>\n </svg>\n);\n\nLoki.fill = 'solid';\n"],"names":[],"mappings":";;AAEO,MAAM,IAAA,GAAqB,CAAC,EAAE,KAAA,GAAQ,MAAA,EAAQ,GAAG,KAAA,EAAM,qBAC5D,IAAA,CAAC,KAAA,EAAA,EAAI,OAAA,EAAQ,WAAA,EAAa,GAAG,KAAA,EAC1B,QAAA,EAAA;AAAA,EAAA,KAAA,oBAAS,GAAA,CAAC,WAAO,QAAA,EAAA,KAAA,EAAM,CAAA;AAAA,kBACxB,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,okBAAA,EAAqkB;AAAA,CAAA,EAC/kB;AAGF,IAAA,CAAK,IAAA,GAAO,OAAA;;;;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
const Mimir = ({ title = "Mimir", ...props }) => /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
4
|
+
title && /* @__PURE__ */ jsx("title", { children: title }),
|
|
5
|
+
/* @__PURE__ */ jsx("path", { d: "M3.696 20H6.87l2.224-4.272-1.54-2.956zm17.27-7.348-1.737 3.332 2.034 3.967L23 16.605zm-.528-1.02L16.73 4.439l-1.828 3.224 3.796 7.305zm-5.774 4.397 2.067 3.968h3.526l-3.833-7.354zM7.03 11.757 5.301 8.422l-2.207 4.245 1.696 3.282zm-4.451 1.92L1 16.792l1.736 3.153 1.539-2.977zm11.739-5.055-1.838 3.246 1.659 3.152 1.762-3.386zM7.383 4.311 5.797 7.397l6.169 11.798 1.646-3.158-3.118-5.982z" })
|
|
6
|
+
] });
|
|
7
|
+
Mimir.fill = "solid";
|
|
8
|
+
|
|
9
|
+
export { Mimir };
|
|
10
|
+
//# sourceMappingURL=Mimir.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Mimir.js","sources":["../../../../src/components/Icons/Mimir.tsx"],"sourcesContent":["import type { SVGComponent } from '../Icon/types';\n\nexport const Mimir: SVGComponent = ({ title = 'Mimir', ...props }) => (\n <svg viewBox=\"0 0 24 24\" {...props}>\n {title && <title>{title}</title>}\n <path d=\"M3.696 20H6.87l2.224-4.272-1.54-2.956zm17.27-7.348-1.737 3.332 2.034 3.967L23 16.605zm-.528-1.02L16.73 4.439l-1.828 3.224 3.796 7.305zm-5.774 4.397 2.067 3.968h3.526l-3.833-7.354zM7.03 11.757 5.301 8.422l-2.207 4.245 1.696 3.282zm-4.451 1.92L1 16.792l1.736 3.153 1.539-2.977zm11.739-5.055-1.838 3.246 1.659 3.152 1.762-3.386zM7.383 4.311 5.797 7.397l6.169 11.798 1.646-3.158-3.118-5.982z\"></path>\n </svg>\n);\n\nMimir.fill = 'solid';\n"],"names":[],"mappings":";;AAEO,MAAM,KAAA,GAAsB,CAAC,EAAE,KAAA,GAAQ,OAAA,EAAS,GAAG,KAAA,EAAM,qBAC9D,IAAA,CAAC,KAAA,EAAA,EAAI,OAAA,EAAQ,WAAA,EAAa,GAAG,KAAA,EAC1B,QAAA,EAAA;AAAA,EAAA,KAAA,oBAAS,GAAA,CAAC,WAAO,QAAA,EAAA,KAAA,EAAM,CAAA;AAAA,kBACxB,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,qYAAA,EAAsY;AAAA,CAAA,EAChZ;AAGF,KAAA,CAAM,IAAA,GAAO,OAAA;;;;"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
const SloTarget = ({ title = "Slo target", ...props }) => /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
4
|
+
title && /* @__PURE__ */ jsx("title", { children: title }),
|
|
5
|
+
/* @__PURE__ */ jsx("path", { d: "M16.462 11.648a4.475 4.475 0 0 1-4.459 4.83 4.45 4.45 0 0 1-3.164-1.31 4.48 4.48 0 0 1 0-6.33 4.45 4.45 0 0 1 3.515-1.298l1.642-1.642a6.43 6.43 0 0 0-6.532 1.564 6.418 6.418 0 0 0 4.54 10.96 6.42 6.42 0 0 0 6.102-8.417z" }),
|
|
6
|
+
/* @__PURE__ */ jsx("path", { d: "m23.003 20.252-1.972-1.972a11.01 11.01 0 0 0 .983-10.83l-1.489 1.49c.348.967.529 2 .529 3.06a9 9 0 0 1-2.65 6.401 9 9 0 0 1-6.402 2.651 9 9 0 0 1-6.402-2.65A9 9 0 0 1 2.95 12c0-2.419.941-4.69 2.65-6.401a9 9 0 0 1 6.402-2.651 9 9 0 0 1 3.055.527l1.489-1.489a11.005 11.005 0 0 0-12.32 2.241C.4 8.052-.019 13.994 2.971 18.281L1 20.252 3.748 23l1.97-1.97A10.97 10.97 0 0 0 12 22.997c2.2 0 4.401-.657 6.281-1.969L20.252 23 23 20.252z" }),
|
|
7
|
+
/* @__PURE__ */ jsx("path", { d: "M20.744 3.257 20.284 1l-4.268 4.268.23 1.13-3.73 3.73a1.943 1.943 0 1 0 1.36 1.357l3.729-3.73 1.13.23 4.267-4.267z" })
|
|
8
|
+
] });
|
|
9
|
+
SloTarget.fill = "solid";
|
|
10
|
+
|
|
11
|
+
export { SloTarget };
|
|
12
|
+
//# sourceMappingURL=SloTarget.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SloTarget.js","sources":["../../../../src/components/Icons/SloTarget.tsx"],"sourcesContent":["import type { SVGComponent } from '../Icon/types';\n\nexport const SloTarget: SVGComponent = ({ title = 'Slo target', ...props }) => (\n <svg viewBox=\"0 0 24 24\" {...props}>\n {title && <title>{title}</title>}\n <path d=\"M16.462 11.648a4.475 4.475 0 0 1-4.459 4.83 4.45 4.45 0 0 1-3.164-1.31 4.48 4.48 0 0 1 0-6.33 4.45 4.45 0 0 1 3.515-1.298l1.642-1.642a6.43 6.43 0 0 0-6.532 1.564 6.418 6.418 0 0 0 4.54 10.96 6.42 6.42 0 0 0 6.102-8.417z\"></path>\n <path d=\"m23.003 20.252-1.972-1.972a11.01 11.01 0 0 0 .983-10.83l-1.489 1.49c.348.967.529 2 .529 3.06a9 9 0 0 1-2.65 6.401 9 9 0 0 1-6.402 2.651 9 9 0 0 1-6.402-2.65A9 9 0 0 1 2.95 12c0-2.419.941-4.69 2.65-6.401a9 9 0 0 1 6.402-2.651 9 9 0 0 1 3.055.527l1.489-1.489a11.005 11.005 0 0 0-12.32 2.241C.4 8.052-.019 13.994 2.971 18.281L1 20.252 3.748 23l1.97-1.97A10.97 10.97 0 0 0 12 22.997c2.2 0 4.401-.657 6.281-1.969L20.252 23 23 20.252z\"></path>\n <path d=\"M20.744 3.257 20.284 1l-4.268 4.268.23 1.13-3.73 3.73a1.943 1.943 0 1 0 1.36 1.357l3.729-3.73 1.13.23 4.267-4.267z\"></path>\n </svg>\n);\n\nSloTarget.fill = 'solid';\n"],"names":[],"mappings":";;AAEO,MAAM,SAAA,GAA0B,CAAC,EAAE,KAAA,GAAQ,YAAA,EAAc,GAAG,KAAA,EAAM,qBACvE,IAAA,CAAC,KAAA,EAAA,EAAI,OAAA,EAAQ,WAAA,EAAa,GAAG,KAAA,EAC1B,QAAA,EAAA;AAAA,EAAA,KAAA,oBAAS,GAAA,CAAC,WAAO,QAAA,EAAA,KAAA,EAAM,CAAA;AAAA,kBACxB,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,6NAAA,EAA8N,CAAA;AAAA,kBACtO,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,8aAAA,EAA+a,CAAA;AAAA,kBACvb,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,oHAAA,EAAqH;AAAA,CAAA,EAC/H;AAGF,SAAA,CAAU,IAAA,GAAO,OAAA;;;;"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
const SyntheticMonitoring = ({ title = "Synthetic monitoring", ...props }) => /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
4
|
+
title && /* @__PURE__ */ jsx("title", { children: title }),
|
|
5
|
+
/* @__PURE__ */ jsx(
|
|
6
|
+
"path",
|
|
7
|
+
{
|
|
8
|
+
fillRule: "evenodd",
|
|
9
|
+
d: "M12.844 17.03a.79.79 0 0 0 0-1.117L8.379 11.44a5.54 5.54 0 0 1 0-7.823A5.5 5.5 0 0 1 12.286 2a5.5 5.5 0 0 1 3.907 1.617l1.874 1.876.027.028a.75.75 0 0 1-1.057 1.059l-.015-.015-1.887-1.89a4 4 0 0 0-2.846-1.177 4 4 0 0 0-2.847 1.178 4.04 4.04 0 0 0 0 5.703l4.465 4.47a2.27 2.27 0 0 1 .67 1.62c0 .613-.237 1.187-.67 1.62a2.27 2.27 0 0 1-1.917.652 2.27 2.27 0 0 1-1.32-.652l-2.873-2.88a.8.8 0 0 1-.215-.326.747.747 0 0 1 1.272-.73l2.874 2.877a.78.78 0 0 0 .558.232c.201 0 .402-.08.558-.232m-5.468-4.055a.75.75 0 1 1-1.5 0 .75.75 0 1 1 1.5 0m11.84-5.836a.8.8 0 0 0-.186.136L17.138 9.17l-.939-.94a.763.763 0 0 0-1.08 1.08l1.48 1.48a.76.76 0 0 0 .875.145.8.8 0 0 0 .203-.145l2.432-2.434a.763.763 0 0 0-.894-1.217m-7.488-.169a.79.79 0 0 0 0 1.117l4.464 4.473a5.54 5.54 0 0 1 0 7.823A5.5 5.5 0 0 1 12.285 22a5.5 5.5 0 0 1-3.906-1.617l-4.46-4.464.007-.006a.75.75 0 0 1 .49-1.315c.23 0 .433.107.57.269l4.45 4.454a4 4 0 0 0 2.846 1.178 4 4 0 0 0 2.847-1.178 4.04 4.04 0 0 0 0-5.702l-4.465-4.47a2.27 2.27 0 0 1-.67-1.62c0-.614.237-1.188.67-1.62a2.27 2.27 0 0 1 1.618-.672 2.27 2.27 0 0 1 1.619.671l.552.553a.75.75 0 0 1-.527 1.285.75.75 0 0 1-.543-.236l-.54-.54a.78.78 0 0 0-.558-.232.8.8 0 0 0-.557.232",
|
|
10
|
+
clipRule: "evenodd"
|
|
11
|
+
}
|
|
12
|
+
)
|
|
13
|
+
] });
|
|
14
|
+
SyntheticMonitoring.fill = "solid";
|
|
15
|
+
|
|
16
|
+
export { SyntheticMonitoring };
|
|
17
|
+
//# sourceMappingURL=SyntheticMonitoring.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SyntheticMonitoring.js","sources":["../../../../src/components/Icons/SyntheticMonitoring.tsx"],"sourcesContent":["import type { SVGComponent } from '../Icon/types';\n\nexport const SyntheticMonitoring: SVGComponent = ({ title = 'Synthetic monitoring', ...props }) => (\n <svg viewBox=\"0 0 24 24\" {...props}>\n {title && <title>{title}</title>}\n <path\n fillRule=\"evenodd\"\n d=\"M12.844 17.03a.79.79 0 0 0 0-1.117L8.379 11.44a5.54 5.54 0 0 1 0-7.823A5.5 5.5 0 0 1 12.286 2a5.5 5.5 0 0 1 3.907 1.617l1.874 1.876.027.028a.75.75 0 0 1-1.057 1.059l-.015-.015-1.887-1.89a4 4 0 0 0-2.846-1.177 4 4 0 0 0-2.847 1.178 4.04 4.04 0 0 0 0 5.703l4.465 4.47a2.27 2.27 0 0 1 .67 1.62c0 .613-.237 1.187-.67 1.62a2.27 2.27 0 0 1-1.917.652 2.27 2.27 0 0 1-1.32-.652l-2.873-2.88a.8.8 0 0 1-.215-.326.747.747 0 0 1 1.272-.73l2.874 2.877a.78.78 0 0 0 .558.232c.201 0 .402-.08.558-.232m-5.468-4.055a.75.75 0 1 1-1.5 0 .75.75 0 1 1 1.5 0m11.84-5.836a.8.8 0 0 0-.186.136L17.138 9.17l-.939-.94a.763.763 0 0 0-1.08 1.08l1.48 1.48a.76.76 0 0 0 .875.145.8.8 0 0 0 .203-.145l2.432-2.434a.763.763 0 0 0-.894-1.217m-7.488-.169a.79.79 0 0 0 0 1.117l4.464 4.473a5.54 5.54 0 0 1 0 7.823A5.5 5.5 0 0 1 12.285 22a5.5 5.5 0 0 1-3.906-1.617l-4.46-4.464.007-.006a.75.75 0 0 1 .49-1.315c.23 0 .433.107.57.269l4.45 4.454a4 4 0 0 0 2.846 1.178 4 4 0 0 0 2.847-1.178 4.04 4.04 0 0 0 0-5.702l-4.465-4.47a2.27 2.27 0 0 1-.67-1.62c0-.614.237-1.188.67-1.62a2.27 2.27 0 0 1 1.618-.672 2.27 2.27 0 0 1 1.619.671l.552.553a.75.75 0 0 1-.527 1.285.75.75 0 0 1-.543-.236l-.54-.54a.78.78 0 0 0-.558-.232.8.8 0 0 0-.557.232\"\n clipRule=\"evenodd\"\n ></path>\n </svg>\n);\n\nSyntheticMonitoring.fill = 'solid';\n"],"names":[],"mappings":";;AAEO,MAAM,mBAAA,GAAoC,CAAC,EAAE,KAAA,GAAQ,sBAAA,EAAwB,GAAG,KAAA,EAAM,qBAC3F,IAAA,CAAC,KAAA,EAAA,EAAI,OAAA,EAAQ,WAAA,EAAa,GAAG,KAAA,EAC1B,QAAA,EAAA;AAAA,EAAA,KAAA,oBAAS,GAAA,CAAC,WAAO,QAAA,EAAA,KAAA,EAAM,CAAA;AAAA,kBACxB,GAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACC,QAAA,EAAS,SAAA;AAAA,MACT,CAAA,EAAE,wqCAAA;AAAA,MACF,QAAA,EAAS;AAAA;AAAA;AACV,CAAA,EACH;AAGF,mBAAA,CAAoB,IAAA,GAAO,OAAA;;;;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
const Tempo = ({ title = "Tempo", ...props }) => /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
|
|
4
|
+
title && /* @__PURE__ */ jsx("title", { children: title }),
|
|
5
|
+
/* @__PURE__ */ jsx("path", { d: "M1.79 7.537h-.415a.43.43 0 1 0 0 .86h.415a.43.43 0 1 0 0-.86m7.95 6.27h-.416a.43.43 0 0 0 0 .86h.415a.43.43 0 0 0 0-.86m-.35-4.093a.43.43 0 0 0-.429-.43H7.524a.43.43 0 1 0 0 .86h1.437a.43.43 0 0 0 .43-.43M23.027 7.01l-.437-2.456a1.793 1.793 0 0 0-1.859-1.553H3.891a1.14 1.14 0 0 0-1.15 1.397l.46 2.612.015.061c.055.32-.107.448-.252.496a.43.43 0 0 0 .143.834h18.77a1.14 1.14 0 0 0 1.15-1.391m-5.728 9.853c-.181-.952-.726-1.306-1.34-1.306H11.51a.433.433 0 0 0-.43.435.43.43 0 0 0 .386.432c.142.026.294.21.39.668l.457 2.54A1.74 1.74 0 0 0 13.98 21l2.654-.013a1.14 1.14 0 0 0 1.168-1.38zm-5.88-2.166h4.826a.4.4 0 0 0 .107-.016c.446-.094.468-.457.41-.818l-.615-3.376c-.169-.878-.678-1.224-1.348-1.224h-4.42a.43.43 0 0 0-.051.856c.147.027.308.225.403.726l.466 2.582a.35.35 0 0 1-.274.434.428.428 0 0 0 .143.833h.345z" })
|
|
6
|
+
] });
|
|
7
|
+
Tempo.fill = "solid";
|
|
8
|
+
|
|
9
|
+
export { Tempo };
|
|
10
|
+
//# sourceMappingURL=Tempo.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Tempo.js","sources":["../../../../src/components/Icons/Tempo.tsx"],"sourcesContent":["import type { SVGComponent } from '../Icon/types';\n\nexport const Tempo: SVGComponent = ({ title = 'Tempo', ...props }) => (\n <svg viewBox=\"0 0 24 24\" {...props}>\n {title && <title>{title}</title>}\n <path d=\"M1.79 7.537h-.415a.43.43 0 1 0 0 .86h.415a.43.43 0 1 0 0-.86m7.95 6.27h-.416a.43.43 0 0 0 0 .86h.415a.43.43 0 0 0 0-.86m-.35-4.093a.43.43 0 0 0-.429-.43H7.524a.43.43 0 1 0 0 .86h1.437a.43.43 0 0 0 .43-.43M23.027 7.01l-.437-2.456a1.793 1.793 0 0 0-1.859-1.553H3.891a1.14 1.14 0 0 0-1.15 1.397l.46 2.612.015.061c.055.32-.107.448-.252.496a.43.43 0 0 0 .143.834h18.77a1.14 1.14 0 0 0 1.15-1.391m-5.728 9.853c-.181-.952-.726-1.306-1.34-1.306H11.51a.433.433 0 0 0-.43.435.43.43 0 0 0 .386.432c.142.026.294.21.39.668l.457 2.54A1.74 1.74 0 0 0 13.98 21l2.654-.013a1.14 1.14 0 0 0 1.168-1.38zm-5.88-2.166h4.826a.4.4 0 0 0 .107-.016c.446-.094.468-.457.41-.818l-.615-3.376c-.169-.878-.678-1.224-1.348-1.224h-4.42a.43.43 0 0 0-.051.856c.147.027.308.225.403.726l.466 2.582a.35.35 0 0 1-.274.434.428.428 0 0 0 .143.833h.345z\"></path>\n </svg>\n);\n\nTempo.fill = 'solid';\n"],"names":[],"mappings":";;AAEO,MAAM,KAAA,GAAsB,CAAC,EAAE,KAAA,GAAQ,OAAA,EAAS,GAAG,KAAA,EAAM,qBAC9D,IAAA,CAAC,KAAA,EAAA,EAAI,OAAA,EAAQ,WAAA,EAAa,GAAG,KAAA,EAC1B,QAAA,EAAA;AAAA,EAAA,KAAA,oBAAS,GAAA,CAAC,WAAO,QAAA,EAAA,KAAA,EAAM,CAAA;AAAA,kBACxB,GAAA,CAAC,MAAA,EAAA,EAAK,CAAA,EAAE,4yBAAA,EAA6yB;AAAA,CAAA,EACvzB;AAGF,KAAA,CAAM,IAAA,GAAO,OAAA;;;;"}
|
|
@@ -519,6 +519,7 @@ import { CloudDownload } from './CloudDownload.js';
|
|
|
519
519
|
import { CloudDrizzle } from './CloudDrizzle.js';
|
|
520
520
|
import { CloudFog } from './CloudFog.js';
|
|
521
521
|
import { CloudHail } from './CloudHail.js';
|
|
522
|
+
import { CloudIncident } from './CloudIncident.js';
|
|
522
523
|
import { CloudInfo } from './CloudInfo.js';
|
|
523
524
|
import { CloudLightning } from './CloudLightning.js';
|
|
524
525
|
import { CloudMoonRain } from './CloudMoonRain.js';
|
|
@@ -843,6 +844,7 @@ import { Form } from './Form.js';
|
|
|
843
844
|
import { Forward } from './Forward.js';
|
|
844
845
|
import { Frame } from './Frame.js';
|
|
845
846
|
import { Framer } from './Framer.js';
|
|
847
|
+
import { FrontendObservability } from './FrontendObservability.js';
|
|
846
848
|
import { Frown } from './Frown.js';
|
|
847
849
|
import { Fuel } from './Fuel.js';
|
|
848
850
|
import { Fullscreen } from './Fullscreen.js';
|
|
@@ -998,6 +1000,7 @@ import { InterpolationLinear } from './InterpolationLinear.js';
|
|
|
998
1000
|
import { InterpolationSmooth } from './InterpolationSmooth.js';
|
|
999
1001
|
import { InterpolationStepAfter } from './InterpolationStepAfter.js';
|
|
1000
1002
|
import { InterpolationStepBefore } from './InterpolationStepBefore.js';
|
|
1003
|
+
import { Irm } from './Irm.js';
|
|
1001
1004
|
import { Italic } from './Italic.js';
|
|
1002
1005
|
import { IterationCcw } from './IterationCcw.js';
|
|
1003
1006
|
import { IterationCw } from './IterationCw.js';
|
|
@@ -1099,6 +1102,7 @@ import { Lock } from './Lock.js';
|
|
|
1099
1102
|
import { LogIn } from './LogIn.js';
|
|
1100
1103
|
import { LogOut } from './LogOut.js';
|
|
1101
1104
|
import { Logs } from './Logs.js';
|
|
1105
|
+
import { Loki } from './Loki.js';
|
|
1102
1106
|
import { Lollipop } from './Lollipop.js';
|
|
1103
1107
|
import { LoopedArrowsBoxes } from './LoopedArrowsBoxes.js';
|
|
1104
1108
|
import { Luggage } from './Luggage.js';
|
|
@@ -1185,6 +1189,7 @@ import { Microwave } from './Microwave.js';
|
|
|
1185
1189
|
import { Milestone } from './Milestone.js';
|
|
1186
1190
|
import { MilkOff } from './MilkOff.js';
|
|
1187
1191
|
import { Milk } from './Milk.js';
|
|
1192
|
+
import { Mimir } from './Mimir.js';
|
|
1188
1193
|
import { Minimize2 } from './Minimize2.js';
|
|
1189
1194
|
import { Minimize } from './Minimize.js';
|
|
1190
1195
|
import { MinusCircle } from './MinusCircle.js';
|
|
@@ -1583,6 +1588,7 @@ import { Slice } from './Slice.js';
|
|
|
1583
1588
|
import { SlidersHorizontal } from './SlidersHorizontal.js';
|
|
1584
1589
|
import { SlidersVertical } from './SlidersVertical.js';
|
|
1585
1590
|
import { Sliders } from './Sliders.js';
|
|
1591
|
+
import { SloTarget } from './SloTarget.js';
|
|
1586
1592
|
import { SmartphoneCharging } from './SmartphoneCharging.js';
|
|
1587
1593
|
import { SmartphoneNfc } from './SmartphoneNfc.js';
|
|
1588
1594
|
import { Smartphone } from './Smartphone.js';
|
|
@@ -1722,6 +1728,7 @@ import { SwissFranc } from './SwissFranc.js';
|
|
|
1722
1728
|
import { SwitchCamera } from './SwitchCamera.js';
|
|
1723
1729
|
import { Sword } from './Sword.js';
|
|
1724
1730
|
import { Swords } from './Swords.js';
|
|
1731
|
+
import { SyntheticMonitoring } from './SyntheticMonitoring.js';
|
|
1725
1732
|
import { Syringe } from './Syringe.js';
|
|
1726
1733
|
import { Table2 } from './Table2.js';
|
|
1727
1734
|
import { TableCellsMerge } from './TableCellsMerge.js';
|
|
@@ -1746,6 +1753,7 @@ import { Tangent } from './Tangent.js';
|
|
|
1746
1753
|
import { Target } from './Target.js';
|
|
1747
1754
|
import { Telegram } from './Telegram.js';
|
|
1748
1755
|
import { Telescope } from './Telescope.js';
|
|
1756
|
+
import { Tempo } from './Tempo.js';
|
|
1749
1757
|
import { TentTree } from './TentTree.js';
|
|
1750
1758
|
import { Tent } from './Tent.js';
|
|
1751
1759
|
import { TerminalSquare } from './TerminalSquare.js';
|
|
@@ -2480,6 +2488,7 @@ const AllIcons = {
|
|
|
2480
2488
|
CloudDrizzle,
|
|
2481
2489
|
CloudFog,
|
|
2482
2490
|
CloudHail,
|
|
2491
|
+
CloudIncident,
|
|
2483
2492
|
CloudInfo,
|
|
2484
2493
|
CloudLightning,
|
|
2485
2494
|
CloudMoonRain,
|
|
@@ -2804,6 +2813,7 @@ const AllIcons = {
|
|
|
2804
2813
|
Forward,
|
|
2805
2814
|
Frame,
|
|
2806
2815
|
Framer,
|
|
2816
|
+
FrontendObservability,
|
|
2807
2817
|
Frown,
|
|
2808
2818
|
Fuel,
|
|
2809
2819
|
Fullscreen,
|
|
@@ -2959,6 +2969,7 @@ const AllIcons = {
|
|
|
2959
2969
|
InterpolationSmooth,
|
|
2960
2970
|
InterpolationStepAfter,
|
|
2961
2971
|
InterpolationStepBefore,
|
|
2972
|
+
Irm,
|
|
2962
2973
|
Italic,
|
|
2963
2974
|
IterationCcw,
|
|
2964
2975
|
IterationCw,
|
|
@@ -3060,6 +3071,7 @@ const AllIcons = {
|
|
|
3060
3071
|
LogIn,
|
|
3061
3072
|
LogOut,
|
|
3062
3073
|
Logs,
|
|
3074
|
+
Loki,
|
|
3063
3075
|
Lollipop,
|
|
3064
3076
|
LoopedArrowsBoxes,
|
|
3065
3077
|
Luggage,
|
|
@@ -3146,6 +3158,7 @@ const AllIcons = {
|
|
|
3146
3158
|
Milestone,
|
|
3147
3159
|
MilkOff,
|
|
3148
3160
|
Milk,
|
|
3161
|
+
Mimir,
|
|
3149
3162
|
Minimize2,
|
|
3150
3163
|
Minimize,
|
|
3151
3164
|
MinusCircle,
|
|
@@ -3544,6 +3557,7 @@ const AllIcons = {
|
|
|
3544
3557
|
SlidersHorizontal,
|
|
3545
3558
|
SlidersVertical,
|
|
3546
3559
|
Sliders,
|
|
3560
|
+
SloTarget,
|
|
3547
3561
|
SmartphoneCharging,
|
|
3548
3562
|
SmartphoneNfc,
|
|
3549
3563
|
Smartphone,
|
|
@@ -3683,6 +3697,7 @@ const AllIcons = {
|
|
|
3683
3697
|
SwitchCamera,
|
|
3684
3698
|
Sword,
|
|
3685
3699
|
Swords,
|
|
3700
|
+
SyntheticMonitoring,
|
|
3686
3701
|
Syringe,
|
|
3687
3702
|
Table2,
|
|
3688
3703
|
TableCellsMerge,
|
|
@@ -3707,6 +3722,7 @@ const AllIcons = {
|
|
|
3707
3722
|
Target,
|
|
3708
3723
|
Telegram,
|
|
3709
3724
|
Telescope,
|
|
3725
|
+
Tempo,
|
|
3710
3726
|
TentTree,
|
|
3711
3727
|
Tent,
|
|
3712
3728
|
TerminalSquare,
|