@antadesign/anta 0.2.1 → 0.2.2

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.
@@ -11,10 +11,13 @@ const wrapChildren = (kids) => {
11
11
  if (kids == null) return kids;
12
12
  const arr = Array.isArray(kids) ? kids : [kids];
13
13
  return arr.map((child, i) => {
14
- const t = typeof child;
15
- if (t === "string" || t === "number") {
16
- return /* @__PURE__ */ jsx("a-button-label", { children: child }, i);
14
+ if (typeof child === "string") {
15
+ return child.trim() === "" ? null : /* @__PURE__ */ jsx("a-button-label", { children: child }, i);
17
16
  }
17
+ if (typeof child === "number") {
18
+ return Number.isNaN(child) ? null : /* @__PURE__ */ jsx("a-button-label", { children: child }, i);
19
+ }
20
+ if (child == null || typeof child === "boolean") return null;
18
21
  return child;
19
22
  });
20
23
  };
@@ -11,12 +11,14 @@ export interface TooltipProps extends BaseProps {
11
11
  * side when there isn't room.
12
12
  * @defaultValue bottom */
13
13
  placement?: 'top' | 'bottom';
14
- /** Pin the bubble under the anchor instead of following the cursor. */
15
- static?: boolean;
14
+ /** Follow the cursor instead of pinning under the anchor. The bubble is
15
+ * pinned (anchored beneath the target) by default; pass `follow` for the
16
+ * cursor-tracking behaviour, which fades by distance as the cursor leaves. */
17
+ follow?: boolean;
16
18
  /** Make the bubble hoverable and clickable — enables pointer events and
17
19
  * keeps it open while the cursor is over it, so its content (links,
18
- * buttons) can be interacted with. Implies `static` (an interactive
19
- * bubble can't follow the cursor). */
20
+ * buttons) can be interacted with. Always pinned (an interactive bubble
21
+ * can't follow the cursor, even with `follow`). */
20
22
  interactive?: boolean;
21
23
  }
22
24
  /**
@@ -27,8 +29,8 @@ export interface TooltipProps extends BaseProps {
27
29
  * Shows on hover (after `delay`) and on keyboard focus; dismisses on mouse
28
30
  * leave, blur, Escape, or when the anchor scrolls away. On touch devices it
29
31
  * opens on press-and-hold (a tap never surfaces it) and lingers briefly after
30
- * release. Follows the cursor by default — pass `static` to pin it under the
31
- * anchor instead.
32
+ * release. Pinned under the anchor by default — pass `follow` to make it track
33
+ * the cursor instead.
32
34
  *
33
35
  * Requires `@antadesign/anta/elements` to be imported (client-side only)
34
36
  * to register the underlying custom element.
@@ -44,14 +46,22 @@ export interface TooltipProps extends BaseProps {
44
46
  * </button>
45
47
  * ```
46
48
  *
47
- * @example Pinned above, rich content
49
+ * @example Above the anchor, rich content
48
50
  * ```tsx
49
51
  * <span style={{ cursor: 'help' }}>
50
52
  * Status
51
- * <Tooltip placement="top" static>
53
+ * <Tooltip placement="top">
52
54
  * <strong>Healthy</strong> — last checked 2m ago
53
55
  * </Tooltip>
54
56
  * </span>
55
57
  * ```
58
+ *
59
+ * @example Follow the cursor
60
+ * ```tsx
61
+ * <button>
62
+ * Hover me
63
+ * <Tooltip follow>Tracks the pointer</Tooltip>
64
+ * </button>
65
+ * ```
56
66
  */
57
- export declare const Tooltip: ({ delay, placement, static: isStatic, interactive, className, children, ...rest }: TooltipProps) => any;
67
+ export declare const Tooltip: ({ delay, placement, follow, interactive, className, children, ...rest }: TooltipProps) => any;
@@ -2,7 +2,7 @@ import { jsx } from "@antadesign/anta/jsx-runtime";
2
2
  const Tooltip = ({
3
3
  delay,
4
4
  placement,
5
- static: isStatic,
5
+ follow,
6
6
  interactive,
7
7
  className,
8
8
  children,
@@ -13,7 +13,7 @@ const Tooltip = ({
13
13
  {
14
14
  delay: delay != null ? String(delay) : void 0,
15
15
  placement: placement === "top" ? "top" : void 0,
16
- static: isStatic ? "" : void 0,
16
+ follow: follow ? "" : void 0,
17
17
  interactive: interactive ? "" : void 0,
18
18
  class: className,
19
19
  ...rest,
@@ -1 +1 @@
1
- @layer anta{a-button,a[role=button]{--button-primary-fg: #ffffff;--button-focus: #503cb4;--bg-primary-disabled: #ece9ec;--bg-secondary-disabled: #f6f4f6;--fg-disabled-primary: #afa9b1;--fg-disabled: #afa9b1;--button-loading-stripe: 14px;--button-loading-stripe-gap: 16px;--button-loading-period: 30px;--button-loading-angle: 125deg;--button-loading-x-period: calc( var(--button-loading-period) / cos(var(--button-loading-angle) - 90deg) );--button-loading-opacity: .15;--button-loading-blur: 2.5px;--button-bg-primary-rest: #635b65;--button-bg-primary-hover: #534c57;--button-bg-primary-active: #49424c;--button-fg-primary-rest: var(--button-primary-fg);--button-bg-secondary-rest: #45374c12;--button-bg-secondary-hover: #44374b1a;--button-bg-secondary-active: #44374b26;--button-fg-secondary-rest: #534c57;--button-fg-secondary-hover: #49424c;--button-fg-secondary-l-shift: .05;--button-fg-tertiary-rest: #635b65;--button-fg-tertiary-hover: #534c57;--button-bg-tertiary-hover: #44374b0d;--button-bg-tertiary-active: #44374b1a;--button-fg-quaternary-rest: #635b65;--button-fg-quaternary-hover: #49424c;--button-padding-x: 9px;--button-padding-y: 5px;--button-max-width: 100%;--button-max-height: 100%;--button-timing-in: 75ms ease-in;--button-timing-active: 50ms linear;--button-timing-out: .15s ease-out;--button-loading-duration: .5s}a-button[tone=brand],a[role=button][tone=brand]{--button-bg-primary-rest: #5f4bc3;--button-bg-primary-hover: #503cb4;--button-bg-primary-active: #483493;--button-fg-primary-rest: var(--button-primary-fg);--button-bg-secondary-rest: #7460d71a;--button-bg-secondary-hover: #7460d726;--button-bg-secondary-active: #7460d733;--button-fg-secondary-rest: #5f4bc3;--button-fg-secondary-hover: #503cb4;--button-fg-tertiary-rest: #5f4bc3;--button-fg-tertiary-hover: #503cb4;--button-bg-tertiary-hover: #7460d71a;--button-bg-tertiary-active: #7460d726;--button-fg-quaternary-rest: #5f4bc3;--button-fg-quaternary-hover: #483493}a-button[tone=critical],a[role=button][tone=critical]{--button-bg-primary-rest: #c9302c;--button-bg-primary-hover: #b02120;--button-bg-primary-active: #a01c1c;--button-fg-primary-rest: var(--button-primary-fg);--button-bg-secondary-rest: #de45451a;--button-bg-secondary-hover: #de454526;--button-bg-secondary-active: #de454533;--button-fg-secondary-rest: #c9302c;--button-fg-secondary-hover: #b02120;--button-fg-tertiary-rest: #c9302c;--button-fg-tertiary-hover: #b02120;--button-bg-tertiary-hover: #de45451a;--button-bg-tertiary-active: #de454533;--button-fg-quaternary-rest: #c9302c;--button-fg-quaternary-hover: #a01c1c}a-button[tone=info],a[role=button][tone=info]{--button-bg-primary-rest: #1f6eb2;--button-bg-primary-hover: #1a5b93;--button-bg-primary-active: #175082;--button-fg-primary-rest: var(--button-primary-fg);--button-bg-secondary-rest: #2686d91a;--button-bg-secondary-hover: #2686d926;--button-bg-secondary-active: #2686d933;--button-fg-secondary-rest: #1f6eb2;--button-fg-secondary-hover: #1a5b93;--button-fg-tertiary-rest: #1f6eb2;--button-fg-tertiary-hover: #1a5b93;--button-bg-tertiary-hover: #2686d91a;--button-bg-tertiary-active: #2686d926;--button-fg-quaternary-rest: #1f6eb2;--button-fg-quaternary-hover: #175082}a-button[tone=success],a[role=button][tone=success]{--button-bg-primary-rest: #2a7e43;--button-bg-primary-hover: #226737;--button-bg-primary-active: #1f5c31;--button-fg-primary-rest: var(--button-primary-fg);--button-bg-secondary-rest: #3295501a;--button-bg-secondary-hover: #32955026;--button-bg-secondary-active: #32955033;--button-fg-secondary-rest: #2a7e43;--button-fg-secondary-hover: #226737;--button-fg-tertiary-rest: #2a7e43;--button-fg-tertiary-hover: #226737;--button-bg-tertiary-hover: #3295501a;--button-bg-tertiary-active: #32955026;--button-fg-quaternary-rest: #2a7e43;--button-fg-quaternary-hover: #1f5c31}a-button[tone=warning],a[role=button][tone=warning]{--button-bg-primary-rest: #c37416;--button-bg-primary-hover: #ae6613;--button-bg-primary-active: #995200;--button-fg-primary-rest: var(--button-primary-fg);--button-bg-secondary-rest: #c374161a;--button-bg-secondary-hover: #c3741626;--button-bg-secondary-active: #c3741633;--button-fg-secondary-rest: #c37416;--button-fg-secondary-hover: #ae6613;--button-fg-tertiary-rest: #c37416;--button-fg-tertiary-hover: #ae6613;--button-bg-tertiary-hover: #c374161a;--button-bg-tertiary-active: #c3741633;--button-fg-quaternary-rest: #c37416;--button-fg-quaternary-hover: #995200}.dark a-button,.dark a[role=button]{--button-focus: #a897fc;--bg-primary-disabled: #272329;--bg-secondary-disabled: #1d1a1e;--fg-disabled-primary: #776e77;--fg-disabled: #635b65;--button-bg-primary-rest: #534c57;--button-bg-primary-hover: #635b65;--button-bg-primary-active: #938d96;--button-bg-secondary-rest: #e4d1ef1c;--button-bg-secondary-hover: #e4d1ef24;--button-bg-secondary-active: #e4d1ef2e;--button-fg-secondary-rest: #c1b9c1;--button-fg-secondary-hover: #d4ced4;--button-fg-secondary-l-shift: 0;--button-fg-tertiary-rest: #afa9b1;--button-fg-tertiary-hover: #afa9b1;--button-bg-tertiary-hover: #e4d1ef14;--button-bg-tertiary-active: #e4d1ef21;--button-fg-quaternary-rest: #afa9b1;--button-fg-quaternary-hover: #cac4ca}.dark a-button[tone=brand],.dark a[role=button][tone=brand]{--button-bg-primary-rest: #503cb4;--button-bg-primary-hover: #5f4bc3;--button-bg-primary-active: #7460d7;--button-bg-secondary-rest: #7460d73b;--button-bg-secondary-hover: #7460d747;--button-bg-secondary-active: #7460d754;--button-fg-secondary-rest: #c5baff;--button-fg-secondary-hover: #d2cbf6;--button-fg-tertiary-rest: #ada0ee;--button-fg-tertiary-hover: #bcb1f1;--button-bg-tertiary-hover: #7460d73b;--button-bg-tertiary-active: #7460d747;--button-fg-quaternary-rest: #ada0ee;--button-fg-quaternary-hover: #c7bef4}.dark a-button[tone=critical],.dark a[role=button][tone=critical]{--button-bg-primary-rest: #b02120;--button-bg-primary-hover: #c9302c;--button-bg-primary-active: #de4545;--button-bg-secondary-rest: #de45453b;--button-bg-secondary-hover: #de454547;--button-bg-secondary-active: #de454554;--button-fg-secondary-rest: #ffabac;--button-fg-secondary-hover: #f4c2c2;--button-fg-tertiary-rest: #e78e90;--button-fg-tertiary-hover: #efa4a4;--button-bg-tertiary-hover: #de45453b;--button-bg-tertiary-active: #de454547;--button-fg-quaternary-rest: #e78e90;--button-fg-quaternary-hover: #ffabac}.dark a-button[tone=info],.dark a[role=button][tone=info]{--button-bg-primary-rest: #1a5b93;--button-bg-primary-hover: #1f6eb2;--button-bg-primary-active: #2686d9;--button-bg-secondary-rest: #2686d93b;--button-bg-secondary-hover: #2686d947;--button-bg-secondary-active: #2686d954;--button-fg-secondary-rest: #9ed2ff;--button-fg-secondary-hover: #bad6f3;--button-fg-tertiary-rest: #7db6e8;--button-fg-tertiary-hover: #93c5ec;--button-bg-tertiary-hover: #2686d93b;--button-bg-tertiary-active: #2686d947;--button-fg-quaternary-rest: #7db6e8;--button-fg-quaternary-hover: #a6cdef}.dark a-button[tone=success],.dark a[role=button][tone=success]{--button-bg-primary-rest: #226737;--button-bg-primary-hover: #2a7e43;--button-bg-primary-active: #329550;--button-bg-secondary-rest: #3295503b;--button-bg-secondary-hover: #32955047;--button-bg-secondary-active: #32955054;--button-fg-secondary-rest: #8ceca9;--button-fg-secondary-hover: #b3e5c2;--button-fg-tertiary-rest: #74cd8e;--button-fg-tertiary-hover: #88d7a0;--button-bg-tertiary-hover: #3295503b;--button-bg-tertiary-active: #32955047;--button-fg-quaternary-rest: #74cd8e;--button-fg-quaternary-hover: #9ddeb1}.dark a-button[tone=warning],.dark a[role=button][tone=warning]{--button-bg-primary-rest: #7f410b;--button-bg-primary-hover: #995200;--button-bg-primary-active: #ae6613;--button-bg-secondary-rest: #c374163b;--button-bg-secondary-hover: #c3741647;--button-bg-secondary-active: #c3741654;--button-fg-secondary-rest: #f7c06e;--button-fg-secondary-hover: #f3cc91;--button-fg-tertiary-rest: #e1a452;--button-fg-tertiary-hover: #edb25a;--button-bg-tertiary-hover: #c374163b;--button-bg-tertiary-active: #c3741647;--button-fg-quaternary-rest: #e1a452;--button-fg-quaternary-hover: #f0bf75}a-button,a[role=button]{user-select:none;display:inline-flex;align-items:center;gap:.5ch;overflow:hidden;cursor:pointer;flex-shrink:0;color:var(--button-fg);background-color:var(--button-bg);border-radius:4px;text-decoration:none;box-shadow:inset 0 0 1px color-mix(in oklch,currentColor,transparent 70%);font-size:15px;font-family:var(--sans-serif);font-weight:450;font-variation-settings:"wdth" 88,"slnt" 0,"ital" 0;line-height:18px;letter-spacing:.05ch;text-overflow:ellipsis;text-wrap:nowrap;white-space:nowrap;max-width:var(--button-max-width);max-height:var(--button-max-height);padding-inline:var(--button-padding-x);padding-block:var(--button-padding-y);>a-button-label{display:inline-block;text-overflow:ellipsis;text-wrap:nowrap;white-space:nowrap;overflow:hidden;min-width:0;line-height:17px;padding-bottom:1px;&:has(>*){display:inline-flex;gap:.25ch}}>*{pointer-events:none}& a-icon{transition:color var(--button-timing-out)}transition:color var(--button-timing-out),background-color var(--button-timing-out);&:hover,&:focus-visible{transition:color var(--button-timing-in),background-color var(--button-timing-in);& a-icon{transition:color var(--button-timing-in)}}&:active,&[selected]{transition:color var(--button-timing-active),background-color var(--button-timing-active);& a-icon{transition:color var(--button-timing-active)}}&[disabled]{pointer-events:none;cursor:not-allowed;transition:none;& a-icon{transition:none}}&:focus-visible{outline:1px solid var(--button-focus);outline-offset:1px}&[priority=quaternary]{--button-timing-in: 0s;--button-timing-active: 0s;--button-timing-out: 0s}&[size=small]{--button-padding-y: 3px;--button-padding-x: 7px}&[size=large]{--button-padding-y: 7px;--button-padding-x: 13px}&[priority=tertiary],&[priority=quaternary]{&[underline=solid]{text-decoration:underline solid}&[underline=dashed]{text-decoration:underline dashed}&[underline=dotted]{text-decoration:underline dotted}&[underline]{text-decoration-color:color-mix(in srgb,currentColor 75%,transparent);text-decoration-thickness:1px;text-underline-offset:3px;&[selected]{text-decoration-color:var(--button-fg);text-decoration-thickness:1px}@media(hover:hover)and (pointer:fine){&:hover{text-decoration-color:var(--button-fg);text-decoration-thickness:1px}}}}&[priority=quaternary][paddingless]{--button-padding-x: 0;--button-padding-y: 0}&:has(>a-icon:only-child){--button-padding-y: 5px;--button-padding-x: 5px;min-width:28px;min-height:28px;justify-content:center;&[size=small]{--button-padding-y: 3px;--button-padding-x: 3px;min-width:24px;min-height:24px}&[size=large]{--button-padding-y: 7px;--button-padding-x: 7px;min-width:32px;min-height:32px}}&:has(>a-icon:first-child:not(:only-child)){padding-inline-start:max(0px,var(--button-padding-x) - 2px)}&:has(>a-icon:last-child:not(:only-child)){padding-inline-end:max(0px,var(--button-padding-x) - 2px)}&[loading]{position:relative;pointer-events:none;cursor:wait;&:before{content:"";position:absolute;top:0;bottom:0;left:calc(0px - var(--button-loading-x-period));right:0;pointer-events:none;background:repeating-linear-gradient(var(--button-loading-angle),transparent 0,transparent var(--button-loading-stripe-gap),currentColor var(--button-loading-stripe-gap),currentColor calc(var(--button-loading-stripe-gap) + var(--button-loading-stripe)));opacity:var(--button-loading-opacity);filter:blur(var(--button-loading-blur));will-change:transform;animation:btn-loading-slide var(--button-loading-duration) linear infinite;animation-delay:-9999s}}&[tone]:not([tone=""],[tone=brand],[tone=neutral],[tone=critical],[tone=info],[tone=success],[tone=warning]){--button-tone-source: attr(tone type(<color>), transparent);--_tone-fg-l: .46;--_tone-fg-strong-l: .4;--_tone-fg-c: .17;--_tone-bg-l: .54;--_tone-bg-c: .16;--_tone-bg-a-rest: .1;--_tone-bg-a-hover: .15;--_tone-bg-a-active: .2;--_tone-primary-l-rest: .5;--_tone-primary-l-hover: .45;--_tone-primary-l-active: .4;--button-bg-primary-rest: oklch(from var(--button-tone-source) var(--_tone-primary-l-rest) c h);--button-bg-primary-hover: oklch(from var(--button-tone-source) var(--_tone-primary-l-hover) c h);--button-bg-primary-active: oklch(from var(--button-tone-source) var(--_tone-primary-l-active) c h);--button-fg-primary-rest: var(--button-primary-fg);--button-fg-secondary-rest: oklch(from var(--button-tone-source) var(--_tone-fg-l) var(--_tone-fg-c) h);--button-fg-secondary-hover: oklch(from var(--button-tone-source) var(--_tone-fg-strong-l) var(--_tone-fg-c) h);--button-fg-tertiary-rest: oklch(from var(--button-tone-source) var(--_tone-fg-l) var(--_tone-fg-c) h);--button-fg-tertiary-hover: oklch(from var(--button-tone-source) var(--_tone-fg-strong-l) var(--_tone-fg-c) h);--button-fg-quaternary-rest: oklch(from var(--button-tone-source) var(--_tone-fg-l) var(--_tone-fg-c) h);--button-fg-quaternary-hover: oklch(from var(--button-tone-source) var(--_tone-fg-strong-l) var(--_tone-fg-c) h);--button-bg-secondary-rest: oklch(from var(--button-tone-source) var(--_tone-bg-l) var(--_tone-bg-c) h / var(--_tone-bg-a-rest));--button-bg-secondary-hover: oklch(from var(--button-tone-source) var(--_tone-bg-l) var(--_tone-bg-c) h / var(--_tone-bg-a-hover));--button-bg-secondary-active: oklch(from var(--button-tone-source) var(--_tone-bg-l) var(--_tone-bg-c) h / var(--_tone-bg-a-active));--button-bg-tertiary-hover: oklch(from var(--button-tone-source) var(--_tone-bg-l) var(--_tone-bg-c) h / var(--_tone-bg-a-rest));--button-bg-tertiary-active: oklch(from var(--button-tone-source) var(--_tone-bg-l) var(--_tone-bg-c) h / var(--_tone-bg-a-hover))}.dark &[tone]:not([tone=""],[tone=brand],[tone=neutral],[tone=critical],[tone=info],[tone=success],[tone=warning]){--_tone-fg-l: .78;--_tone-fg-strong-l: .85;--_tone-fg-c: .11;--_tone-bg-l: .58;--_tone-bg-a-rest: .23;--_tone-bg-a-hover: .28;--_tone-bg-a-active: .33;--_tone-primary-l-rest: .45;--_tone-primary-l-hover: .5;--_tone-primary-l-active: .57}--button-fg: oklch(from var(--button-fg-secondary-rest) calc(l - var(--button-fg-secondary-l-shift)) c h);--button-bg: var(--button-bg-secondary-rest);@media(hover:hover)and (pointer:fine){&:hover{--button-fg: var(--button-fg-secondary-hover);--button-bg: var(--button-bg-secondary-hover)}}&:active,&[selected]{--button-fg: var(--button-fg-secondary-hover);--button-bg: var(--button-bg-secondary-active)}&[priority=primary]{--button-fg: var(--button-fg-primary-rest);--button-bg: var(--button-bg-primary-rest);box-shadow:none;@media(hover:hover)and (pointer:fine){&:hover{--button-bg: var(--button-bg-primary-hover)}}&:active,&[selected]{--button-bg: var(--button-bg-primary-active)}}&[priority=tertiary]{--button-fg: var(--button-fg-tertiary-rest);--button-bg: transparent;box-shadow:none;@media(hover:hover)and (pointer:fine){&:hover{--button-fg: var(--button-fg-tertiary-hover);--button-bg: var(--button-bg-tertiary-hover)}}&:active,&[selected]{--button-fg: var(--button-fg-tertiary-hover);--button-bg: var(--button-bg-tertiary-active)}}&[priority=quaternary]{--button-fg: color-mix(in oklch, var(--button-fg-quaternary-rest) 90%, transparent);--button-bg: transparent;box-shadow:none;font-weight:415;@media(hover:hover)and (pointer:fine){&:hover{--button-fg: var(--button-fg-quaternary-hover)}}&[selected]{--button-fg: var(--button-fg-quaternary-hover)}&:active{--button-fg: oklch(from var(--button-fg-quaternary-rest) calc(l + .05) c h)}.dark &:active{--button-fg: var(--button-fg-quaternary-rest)}}&[selected]{box-shadow:inset 0 0 0 1px currentColor}&[disabled]{background-color:var(--bg-secondary-disabled);color:var(--fg-disabled);&[priority=primary]{background-color:var(--bg-primary-disabled);color:var(--fg-disabled-primary)}&[priority=tertiary],&[priority=quaternary]{background-color:transparent;color:var(--fg-disabled)}}}}@keyframes btn-loading-slide{to{transform:translate(var(--button-loading-x-period))}}
1
+ @layer anta{a-button,a[role=button]{--button-primary-fg: #ffffff;--button-focus: #503cb4;--bg-primary-disabled: #ece9ec;--bg-secondary-disabled: #f6f4f6;--fg-disabled-primary: #afa9b1;--fg-disabled: #afa9b1;--button-loading-stripe: 14px;--button-loading-stripe-gap: 16px;--button-loading-period: 30px;--button-loading-angle: 125deg;--button-loading-x-period: calc( var(--button-loading-period) / cos(var(--button-loading-angle) - 90deg) );--button-loading-opacity: .15;--button-loading-blur: 2.5px;--button-bg-primary-rest: #635b65;--button-bg-primary-hover: #534c57;--button-bg-primary-active: #49424c;--button-fg-primary-rest: var(--button-primary-fg);--button-bg-secondary-rest: #45374c12;--button-bg-secondary-hover: #44374b1a;--button-bg-secondary-active: #44374b26;--button-fg-secondary-rest: #534c57;--button-fg-secondary-hover: #49424c;--button-fg-secondary-l-shift: .05;--button-fg-tertiary-rest: #635b65;--button-fg-tertiary-hover: #534c57;--button-bg-tertiary-hover: #44374b0d;--button-bg-tertiary-active: #44374b1a;--button-fg-quaternary-rest: #635b65;--button-fg-quaternary-hover: #49424c;--button-padding-x: 9px;--button-padding-y: 5px;--button-max-width: 100%;--button-max-height: 100%;--button-timing-in: 75ms ease-in;--button-timing-active: 50ms linear;--button-timing-out: .15s ease-out;--button-loading-duration: .5s}a-button[tone=brand],a[role=button][tone=brand]{--button-bg-primary-rest: #5f4bc3;--button-bg-primary-hover: #503cb4;--button-bg-primary-active: #483493;--button-fg-primary-rest: var(--button-primary-fg);--button-bg-secondary-rest: #7460d71a;--button-bg-secondary-hover: #7460d726;--button-bg-secondary-active: #7460d733;--button-fg-secondary-rest: #5f4bc3;--button-fg-secondary-hover: #503cb4;--button-fg-tertiary-rest: #5f4bc3;--button-fg-tertiary-hover: #503cb4;--button-bg-tertiary-hover: #7460d71a;--button-bg-tertiary-active: #7460d726;--button-fg-quaternary-rest: #5f4bc3;--button-fg-quaternary-hover: #483493}a-button[tone=critical],a[role=button][tone=critical]{--button-bg-primary-rest: #c9302c;--button-bg-primary-hover: #b02120;--button-bg-primary-active: #a01c1c;--button-fg-primary-rest: var(--button-primary-fg);--button-bg-secondary-rest: #de45451a;--button-bg-secondary-hover: #de454526;--button-bg-secondary-active: #de454533;--button-fg-secondary-rest: #c9302c;--button-fg-secondary-hover: #b02120;--button-fg-tertiary-rest: #c9302c;--button-fg-tertiary-hover: #b02120;--button-bg-tertiary-hover: #de45451a;--button-bg-tertiary-active: #de454533;--button-fg-quaternary-rest: #c9302c;--button-fg-quaternary-hover: #a01c1c}a-button[tone=info],a[role=button][tone=info]{--button-bg-primary-rest: #1f6eb2;--button-bg-primary-hover: #1a5b93;--button-bg-primary-active: #175082;--button-fg-primary-rest: var(--button-primary-fg);--button-bg-secondary-rest: #2686d91a;--button-bg-secondary-hover: #2686d926;--button-bg-secondary-active: #2686d933;--button-fg-secondary-rest: #1f6eb2;--button-fg-secondary-hover: #1a5b93;--button-fg-tertiary-rest: #1f6eb2;--button-fg-tertiary-hover: #1a5b93;--button-bg-tertiary-hover: #2686d91a;--button-bg-tertiary-active: #2686d926;--button-fg-quaternary-rest: #1f6eb2;--button-fg-quaternary-hover: #175082}a-button[tone=success],a[role=button][tone=success]{--button-bg-primary-rest: #2a7e43;--button-bg-primary-hover: #226737;--button-bg-primary-active: #1f5c31;--button-fg-primary-rest: var(--button-primary-fg);--button-bg-secondary-rest: #3295501a;--button-bg-secondary-hover: #32955026;--button-bg-secondary-active: #32955033;--button-fg-secondary-rest: #2a7e43;--button-fg-secondary-hover: #226737;--button-fg-tertiary-rest: #2a7e43;--button-fg-tertiary-hover: #226737;--button-bg-tertiary-hover: #3295501a;--button-bg-tertiary-active: #32955026;--button-fg-quaternary-rest: #2a7e43;--button-fg-quaternary-hover: #1f5c31}a-button[tone=warning],a[role=button][tone=warning]{--button-bg-primary-rest: #c37416;--button-bg-primary-hover: #ae6613;--button-bg-primary-active: #995200;--button-fg-primary-rest: var(--button-primary-fg);--button-bg-secondary-rest: #c374161a;--button-bg-secondary-hover: #c3741626;--button-bg-secondary-active: #c3741633;--button-fg-secondary-rest: #c37416;--button-fg-secondary-hover: #ae6613;--button-fg-tertiary-rest: #c37416;--button-fg-tertiary-hover: #ae6613;--button-bg-tertiary-hover: #c374161a;--button-bg-tertiary-active: #c3741633;--button-fg-quaternary-rest: #c37416;--button-fg-quaternary-hover: #995200}.dark a-button,.dark a[role=button]{--button-focus: #a897fc;--bg-primary-disabled: #272329;--bg-secondary-disabled: #1d1a1e;--fg-disabled-primary: #776e77;--fg-disabled: #635b65;--button-bg-primary-rest: #534c57;--button-bg-primary-hover: #635b65;--button-bg-primary-active: #938d96;--button-bg-secondary-rest: #e4d1ef1c;--button-bg-secondary-hover: #e4d1ef24;--button-bg-secondary-active: #e4d1ef2e;--button-fg-secondary-rest: #c1b9c1;--button-fg-secondary-hover: #d4ced4;--button-fg-secondary-l-shift: 0;--button-fg-tertiary-rest: #afa9b1;--button-fg-tertiary-hover: #afa9b1;--button-bg-tertiary-hover: #e4d1ef14;--button-bg-tertiary-active: #e4d1ef21;--button-fg-quaternary-rest: #afa9b1;--button-fg-quaternary-hover: #cac4ca}.dark a-button[tone=brand],.dark a[role=button][tone=brand]{--button-bg-primary-rest: #503cb4;--button-bg-primary-hover: #5f4bc3;--button-bg-primary-active: #7460d7;--button-bg-secondary-rest: #7460d73b;--button-bg-secondary-hover: #7460d747;--button-bg-secondary-active: #7460d754;--button-fg-secondary-rest: #c5baff;--button-fg-secondary-hover: #d2cbf6;--button-fg-tertiary-rest: #ada0ee;--button-fg-tertiary-hover: #bcb1f1;--button-bg-tertiary-hover: #7460d73b;--button-bg-tertiary-active: #7460d747;--button-fg-quaternary-rest: #ada0ee;--button-fg-quaternary-hover: #c7bef4}.dark a-button[tone=critical],.dark a[role=button][tone=critical]{--button-bg-primary-rest: #b02120;--button-bg-primary-hover: #c9302c;--button-bg-primary-active: #de4545;--button-bg-secondary-rest: #de45453b;--button-bg-secondary-hover: #de454547;--button-bg-secondary-active: #de454554;--button-fg-secondary-rest: #ffabac;--button-fg-secondary-hover: #f4c2c2;--button-fg-tertiary-rest: #e78e90;--button-fg-tertiary-hover: #efa4a4;--button-bg-tertiary-hover: #de45453b;--button-bg-tertiary-active: #de454547;--button-fg-quaternary-rest: #e78e90;--button-fg-quaternary-hover: #ffabac}.dark a-button[tone=info],.dark a[role=button][tone=info]{--button-bg-primary-rest: #1a5b93;--button-bg-primary-hover: #1f6eb2;--button-bg-primary-active: #2686d9;--button-bg-secondary-rest: #2686d93b;--button-bg-secondary-hover: #2686d947;--button-bg-secondary-active: #2686d954;--button-fg-secondary-rest: #9ed2ff;--button-fg-secondary-hover: #bad6f3;--button-fg-tertiary-rest: #7db6e8;--button-fg-tertiary-hover: #93c5ec;--button-bg-tertiary-hover: #2686d93b;--button-bg-tertiary-active: #2686d947;--button-fg-quaternary-rest: #7db6e8;--button-fg-quaternary-hover: #a6cdef}.dark a-button[tone=success],.dark a[role=button][tone=success]{--button-bg-primary-rest: #226737;--button-bg-primary-hover: #2a7e43;--button-bg-primary-active: #329550;--button-bg-secondary-rest: #3295503b;--button-bg-secondary-hover: #32955047;--button-bg-secondary-active: #32955054;--button-fg-secondary-rest: #8ceca9;--button-fg-secondary-hover: #b3e5c2;--button-fg-tertiary-rest: #74cd8e;--button-fg-tertiary-hover: #88d7a0;--button-bg-tertiary-hover: #3295503b;--button-bg-tertiary-active: #32955047;--button-fg-quaternary-rest: #74cd8e;--button-fg-quaternary-hover: #9ddeb1}.dark a-button[tone=warning],.dark a[role=button][tone=warning]{--button-bg-primary-rest: #7f410b;--button-bg-primary-hover: #995200;--button-bg-primary-active: #ae6613;--button-bg-secondary-rest: #c374163b;--button-bg-secondary-hover: #c3741647;--button-bg-secondary-active: #c3741654;--button-fg-secondary-rest: #f7c06e;--button-fg-secondary-hover: #f3cc91;--button-fg-tertiary-rest: #e1a452;--button-fg-tertiary-hover: #edb25a;--button-bg-tertiary-hover: #c374163b;--button-bg-tertiary-active: #c3741647;--button-fg-quaternary-rest: #e1a452;--button-fg-quaternary-hover: #f0bf75}a-button,a[role=button]{user-select:none;display:inline-flex;align-items:center;gap:.5ch;overflow:hidden;cursor:pointer;flex-shrink:0;color:var(--button-fg);background-color:var(--button-bg);border-radius:4px;text-decoration:none;box-shadow:inset 0 0 1px color-mix(in oklch,currentColor,transparent 70%);font-size:15px;font-family:var(--sans-serif);font-weight:450;font-variation-settings:"wdth" 88,"slnt" 0,"ital" 0;font-feature-settings:"ss02","ss05";line-height:18px;letter-spacing:.05ch;text-overflow:ellipsis;text-wrap:nowrap;white-space:nowrap;max-width:var(--button-max-width);max-height:var(--button-max-height);padding-inline:var(--button-padding-x);padding-block:var(--button-padding-y);>a-button-label{display:inline-block;text-overflow:ellipsis;text-wrap:nowrap;white-space:nowrap;overflow:hidden;min-width:0;line-height:17px;padding-bottom:1px;&:has(>*){display:inline-flex;gap:.25ch}}>*{pointer-events:none}& a-icon{transition:color var(--button-timing-out)}transition:color var(--button-timing-out),background-color var(--button-timing-out);&:hover,&:focus-visible{transition:color var(--button-timing-in),background-color var(--button-timing-in);& a-icon{transition:color var(--button-timing-in)}}&:active,&[selected]{transition:color var(--button-timing-active),background-color var(--button-timing-active);& a-icon{transition:color var(--button-timing-active)}}&[disabled]{pointer-events:none;cursor:not-allowed;transition:none;& a-icon{transition:none}}&:focus-visible{outline:1px solid var(--button-focus);outline-offset:1px}&[priority=quaternary]{--button-timing-in: 0s;--button-timing-active: 0s;--button-timing-out: 0s}&[size=small]{--button-padding-y: 3px;--button-padding-x: 7px}&[size=large]{--button-padding-y: 7px;--button-padding-x: 13px}&[priority=tertiary],&[priority=quaternary]{&[underline=solid]{text-decoration:underline solid}&[underline=dashed]{text-decoration:underline dashed}&[underline=dotted]{text-decoration:underline dotted}&[underline]{text-decoration-color:color-mix(in srgb,currentColor 75%,transparent);text-decoration-thickness:1px;text-underline-offset:3px;&[selected]{text-decoration-color:var(--button-fg);text-decoration-thickness:1px}@media(hover:hover)and (pointer:fine){&:hover{text-decoration-color:var(--button-fg);text-decoration-thickness:1px}}}}&[priority=quaternary][paddingless]{--button-padding-x: 0;--button-padding-y: 0}&:has(>a-icon):not(:has(>a-icon~a-icon)):not(:has(>:not(a-icon):not(a-tooltip))){--button-padding-y: 5px;--button-padding-x: 5px;min-width:28px;min-height:28px;justify-content:center;&[size=small]{--button-padding-y: 3px;--button-padding-x: 3px;min-width:24px;min-height:24px}&[size=large]{--button-padding-y: 7px;--button-padding-x: 7px;min-width:32px;min-height:32px}}&:is(:has(>a-icon:first-child),:has(>a-tooltip:first-child+a-icon)):is(:has(>a-icon~a-icon),:has(>:not(a-icon):not(a-tooltip))){padding-inline-start:max(0px,var(--button-padding-x) - 2px)}&:is(:has(>a-icon:last-child),:has(>a-icon+a-tooltip:last-child)):is(:has(>a-icon~a-icon),:has(>:not(a-icon):not(a-tooltip))){padding-inline-end:max(0px,var(--button-padding-x) - 2px)}&[loading]{position:relative;pointer-events:none;cursor:wait;&:before{content:"";position:absolute;top:0;bottom:0;left:calc(0px - var(--button-loading-x-period));right:0;pointer-events:none;background:repeating-linear-gradient(var(--button-loading-angle),transparent 0,transparent var(--button-loading-stripe-gap),currentColor var(--button-loading-stripe-gap),currentColor calc(var(--button-loading-stripe-gap) + var(--button-loading-stripe)));opacity:var(--button-loading-opacity);filter:blur(var(--button-loading-blur));will-change:transform;animation:btn-loading-slide var(--button-loading-duration) linear infinite;animation-delay:-9999s}}&[tone]:not([tone=""],[tone=brand],[tone=neutral],[tone=critical],[tone=info],[tone=success],[tone=warning]){--button-tone-source: attr(tone type(<color>), transparent);--_tone-fg-l: .46;--_tone-fg-strong-l: .4;--_tone-fg-c: .17;--_tone-bg-l: .54;--_tone-bg-c: .16;--_tone-bg-a-rest: .1;--_tone-bg-a-hover: .15;--_tone-bg-a-active: .2;--_tone-primary-l-rest: .5;--_tone-primary-l-hover: .45;--_tone-primary-l-active: .4;--button-bg-primary-rest: oklch(from var(--button-tone-source) var(--_tone-primary-l-rest) c h);--button-bg-primary-hover: oklch(from var(--button-tone-source) var(--_tone-primary-l-hover) c h);--button-bg-primary-active: oklch(from var(--button-tone-source) var(--_tone-primary-l-active) c h);--button-fg-primary-rest: var(--button-primary-fg);--button-fg-secondary-rest: oklch(from var(--button-tone-source) var(--_tone-fg-l) var(--_tone-fg-c) h);--button-fg-secondary-hover: oklch(from var(--button-tone-source) var(--_tone-fg-strong-l) var(--_tone-fg-c) h);--button-fg-tertiary-rest: oklch(from var(--button-tone-source) var(--_tone-fg-l) var(--_tone-fg-c) h);--button-fg-tertiary-hover: oklch(from var(--button-tone-source) var(--_tone-fg-strong-l) var(--_tone-fg-c) h);--button-fg-quaternary-rest: oklch(from var(--button-tone-source) var(--_tone-fg-l) var(--_tone-fg-c) h);--button-fg-quaternary-hover: oklch(from var(--button-tone-source) var(--_tone-fg-strong-l) var(--_tone-fg-c) h);--button-bg-secondary-rest: oklch(from var(--button-tone-source) var(--_tone-bg-l) var(--_tone-bg-c) h / var(--_tone-bg-a-rest));--button-bg-secondary-hover: oklch(from var(--button-tone-source) var(--_tone-bg-l) var(--_tone-bg-c) h / var(--_tone-bg-a-hover));--button-bg-secondary-active: oklch(from var(--button-tone-source) var(--_tone-bg-l) var(--_tone-bg-c) h / var(--_tone-bg-a-active));--button-bg-tertiary-hover: oklch(from var(--button-tone-source) var(--_tone-bg-l) var(--_tone-bg-c) h / var(--_tone-bg-a-rest));--button-bg-tertiary-active: oklch(from var(--button-tone-source) var(--_tone-bg-l) var(--_tone-bg-c) h / var(--_tone-bg-a-hover))}.dark &[tone]:not([tone=""],[tone=brand],[tone=neutral],[tone=critical],[tone=info],[tone=success],[tone=warning]){--_tone-fg-l: .78;--_tone-fg-strong-l: .85;--_tone-fg-c: .11;--_tone-bg-l: .58;--_tone-bg-a-rest: .23;--_tone-bg-a-hover: .28;--_tone-bg-a-active: .33;--_tone-primary-l-rest: .45;--_tone-primary-l-hover: .5;--_tone-primary-l-active: .57}--button-fg: oklch(from var(--button-fg-secondary-rest) calc(l - var(--button-fg-secondary-l-shift)) c h);--button-bg: var(--button-bg-secondary-rest);@media(hover:hover)and (pointer:fine){&:hover{--button-fg: var(--button-fg-secondary-hover);--button-bg: var(--button-bg-secondary-hover)}}&:active,&[selected]{--button-fg: var(--button-fg-secondary-hover);--button-bg: var(--button-bg-secondary-active)}&[priority=primary]{--button-fg: var(--button-fg-primary-rest);--button-bg: var(--button-bg-primary-rest);box-shadow:none;@media(hover:hover)and (pointer:fine){&:hover{--button-bg: var(--button-bg-primary-hover)}}&:active,&[selected]{--button-bg: var(--button-bg-primary-active)}}&[priority=tertiary]{--button-fg: var(--button-fg-tertiary-rest);--button-bg: transparent;box-shadow:none;@media(hover:hover)and (pointer:fine){&:hover{--button-fg: var(--button-fg-tertiary-hover);--button-bg: var(--button-bg-tertiary-hover)}}&:active,&[selected]{--button-fg: var(--button-fg-tertiary-hover);--button-bg: var(--button-bg-tertiary-active)}}&[priority=quaternary]{--button-fg: var(--button-fg-quaternary-rest);--button-bg: transparent;box-shadow:none;font-weight:400;letter-spacing:.06ch;@media(hover:hover)and (pointer:fine){&:hover{--button-fg: var(--button-fg-quaternary-hover)}}&[selected]{--button-fg: var(--button-fg-quaternary-hover)}&:active{--button-fg: oklch(from var(--button-fg-quaternary-rest) calc(l + .05) c h)}.dark &:active{--button-fg: var(--button-fg-quaternary-rest)}}&[selected]{box-shadow:inset 0 0 0 1px currentColor}&[disabled]{background-color:var(--bg-secondary-disabled);color:var(--fg-disabled);&[priority=primary]{background-color:var(--bg-primary-disabled);color:var(--fg-disabled-primary)}&[priority=tertiary],&[priority=quaternary]{background-color:transparent;color:var(--fg-disabled)}}}}@keyframes btn-loading-slide{to{transform:translate(var(--button-loading-x-period))}}
@@ -1 +1 @@
1
- @layer anta{a-icon[shape=arrow-left-to-line]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath fill='%23000' d='M1.33 14V2a.67.67 0 0 1 1.34 0v12a.67.67 0 1 1-1.34 0ZM8.86 2.86a.67.67 0 1 1 .94.94L6.28 7.33H14a.67.67 0 1 1 0 1.34H6.28L9.8 12.2a.67.67 0 0 1-.94.94L4.2 8.47a.67.67 0 0 1 0-.94l4.66-4.67Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=arrow-left]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 19-7-7 7-7'/%3E%3Cpath d='M19 12H5'/%3E%3C/svg%3E%0A")}a-icon[shape=arrow-narrow-down]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A %3Cpath d='M5.3335 10.6668L8.00016 13.3335M8.00016 13.3335L10.6668 10.6668M8.00016 13.3335V2.66683' stroke='currentColor' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E")}a-icon[shape=arrow-narrow-up-down]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A%3Cpath d='M14 10.6665L11.3333 13.3332M11.3333 13.3332L8.66667 10.6665M11.3333 13.3332V2.6665M2 5.33317L4.66667 2.6665M4.66667 2.6665L7.33333 5.33317M4.66667 2.6665V13.3332' stroke='currentColor' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E")}a-icon[shape=arrow-narrow-up]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A %3Cpath d='M5.3335 5.33317L8.00016 2.6665M8.00016 2.6665L10.6668 5.33317M8.00016 2.6665V13.3332' stroke='currentColor' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E")}a-icon[shape=arrow-right]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M3.33 8h9.34m0 0L8 3.33M12.67 8 8 12.67'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=arrow-top-right]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7h10v10'/%3E%3Cpath d='M7 17 17 7'/%3E%3C/svg%3E%0A")}a-icon[shape=asterisk]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 6v12'/%3E%3Cpath d='M17.196 9 6.804 15'/%3E%3Cpath d='m6.804 9 10.392 6'/%3E%3C/svg%3E%0A")}a-icon[shape=book-open]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M8 4.67V14m0-9.33A2.67 2.67 0 0 0 5.33 2H2a.67.67 0 0 0-.67.67v8.66A.67.67 0 0 0 2 12h4a2 2 0 0 1 2 2m0-9.33A2.67 2.67 0 0 1 10.67 2H14a.67.67 0 0 1 .67.67v8.66A.67.67 0 0 1 14 12h-4a2 2 0 0 0-2 2'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=braces]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath fill='%23000' d='M3.2 1.86a2 2 0 0 1 1.47-.61h.66a.75.75 0 1 1 0 1.5h-.66a.58.58 0 0 0-.59.58v3.34c0 .49-.17.96-.48 1.33.31.37.48.84.48 1.33v3.34c0 .32.27.58.59.58h.66a.75.75 0 0 1 0 1.5h-.66a2.09 2.09 0 0 1-2.09-2.08V9.33A.58.58 0 0 0 2 8.75a.75.75 0 0 1 0-1.5.58.58 0 0 0 .58-.58V3.33c0-.55.22-1.08.61-1.47ZM9.91 2c0-.41.33-.75.75-.75h.66a2.08 2.08 0 0 1 2.09 2.08v3.34a.58.58 0 0 0 .58.58.75.75 0 0 1 0 1.5.59.59 0 0 0-.58.58v3.34a2.08 2.08 0 0 1-2.09 2.08h-.66a.75.75 0 0 1 0-1.5h.66a.58.58 0 0 0 .59-.58V9.33c0-.5.18-.97.48-1.33a2.08 2.08 0 0 1-.48-1.33V3.33a.58.58 0 0 0-.59-.58h-.66A.75.75 0 0 1 9.92 2Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=bug]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M5.33 1.33 6.6 2.6m2.82 0 1.26-1.26M6 4.75V4.1a2 2 0 1 1 4 0v.66m-2 8.58c-2.2 0-4-1.8-4-4v-2a2.67 2.67 0 0 1 2.67-2.66h2.66A2.67 2.67 0 0 1 12 7.33v2c0 2.2-1.8 4-4 4Zm0 0v-6M4.35 6A2.68 2.68 0 0 1 2 3.33m2 5.34H1.33M2 14a2.7 2.7 0 0 1 2.53-2.67m9.45-8c0 1.4-1.07 2.54-2.33 2.67m3.02 2.67H12m-.53 2.66A2.7 2.7 0 0 1 14 14'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=calendar]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A %3Cpath d='M5.33333 1.33325V3.99992M10.6667 1.33325V3.99992M2 6.66659H14M3.33333 2.66659H12.6667C13.403 2.66659 14 3.26354 14 3.99992V13.3333C14 14.0696 13.403 14.6666 12.6667 14.6666H3.33333C2.59695 14.6666 2 14.0696 2 13.3333V3.99992C2 3.26354 2.59695 2.66659 3.33333 2.66659Z' stroke='%230B0B0B' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E")}a-icon[shape=case-sensitive]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath fill='%23000' d='M11.25 12.12c-.42 0-.8-.08-1.13-.25a1.9 1.9 0 0 1-.74-.69c-.18-.3-.26-.62-.26-1 0-.37.09-.7.27-1 .19-.3.45-.53.8-.7.37-.16.8-.25 1.3-.25h1.91v.97h-1.9c-.37 0-.66.09-.87.26-.2.16-.3.39-.3.67 0 .29.1.51.29.68.19.17.46.25.81.25.33 0 .61-.06.85-.2a1.48 1.48 0 0 0 .76-1.33V7.86c0-.38-.12-.67-.35-.88-.23-.2-.54-.3-.92-.3-.31 0-.57.06-.78.2-.2.13-.35.32-.43.55H9.32a2.4 2.4 0 0 1 .85-1.35c.43-.32.96-.49 1.61-.49.51 0 .95.1 1.32.28.38.18.66.45.85.8.2.35.3.75.3 1.23V12h-1l-.15-.8h-.06a2.1 2.1 0 0 1-1.78.92ZM1.06 12l3.02-8.4h1.56L8.66 12H7.31L4.88 5.08h-.06L2.4 12H1.06Zm1.64-1.88.44-1.17h3.44l.45 1.17H2.7Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=chat]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg clip-path='url(%23a)'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M13.33 6a1.33 1.33 0 0 1 1.34 1.33v6.86a.47.47 0 0 1-.81.34l-1.47-1.47c-.25-.25-.59-.4-.94-.4H6.67a1.33 1.33 0 0 1-1.34-1.33v-.66m5.34-4A1.33 1.33 0 0 1 9.33 8H4.55c-.35 0-.7.14-.94.4L2.14 9.85a.47.47 0 0 1-.8-.34V2.67a1.33 1.33 0 0 1 1.33-1.34h6.66a1.33 1.33 0 0 1 1.34 1.34v4Z'/%3E%0A %3C/g%3E%0A %3Cdefs%3E%0A %3CclipPath id='a'%3E%0A %3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%0A %3C/clipPath%3E%0A %3C/defs%3E%0A%3C/svg%3E%0A")}a-icon[shape=check]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5l3 3 7-7'/%3E%3C/svg%3E%0A")}a-icon[shape=chevron-down]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E%0A")}a-icon[shape=chevron-left]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 4l-4 4 4 4'/%3E%3C/svg%3E%0A")}a-icon[shape=chevron-right]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 4l4 4-4 4'/%3E%3C/svg%3E%0A")}a-icon[shape=chevron-up]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 10l4-4 4 4'/%3E%3C/svg%3E%0A")}a-icon[shape=chevrons-right]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath fill='%23000' d='M3.53 4.2a.67.67 0 0 1 .94 0L7.8 7.53a.67.67 0 0 1 0 .94L4.47 11.8a.67.67 0 1 1-.94-.94L6.39 8 3.53 5.14a.67.67 0 0 1 0-.94Zm4.67 0a.66.66 0 0 1 .94 0l3.33 3.33a.67.67 0 0 1 0 .94L9.14 11.8a.66.66 0 1 1-.94-.94L11.06 8 8.2 5.14a.66.66 0 0 1 0-.94Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=circle-check]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg clip-path='url(%23a)'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M14.53 6.67a6.67 6.67 0 1 1-3.2-4.45M6 7.33l2 2 6.67-6.66'/%3E%0A %3C/g%3E%0A %3Cdefs%3E%0A %3CclipPath id='a'%3E%0A %3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%0A %3C/clipPath%3E%0A %3C/defs%3E%0A%3C/svg%3E%0A")}a-icon[shape=circle-large]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A %3Cg clip-path='url(%23clip0_5922_134)'%3E%0A %3Cpath d='M8.00016 14.6667C11.6821 14.6667 14.6668 11.6819 14.6668 8C14.6668 4.3181 11.6821 1.33333 8.00016 1.33333C4.31826 1.33333 1.3335 4.3181 1.3335 8C1.3335 11.6819 4.31826 14.6667 8.00016 14.6667Z' stroke='%23525A61' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A %3C/g%3E%0A %3Cdefs%3E%0A %3CclipPath id='clip0_5922_134'%3E%0A %3Crect width='16' height='16' fill='white'/%3E%0A %3C/clipPath%3E%0A %3C/defs%3E%0A%3C/svg%3E")}a-icon[shape=circle]{--icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 11C9.65685 11 11 9.65685 11 8C11 6.34315 9.65685 5 8 5C6.34315 5 5 6.34315 5 8C5 9.65685 6.34315 11 8 11Z' stroke='%23525A61' stroke-width='1.33' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A")}a-icon[shape=click]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A %3Cpath d='M9.33322 2.73334L7.99989 4.00001M3.39989 5.33334L1.46655 4.80001M3.99989 8.00001L2.73322 9.33334M4.79989 1.46667L5.33322 3.40001M6.02455 6.46001C5.9987 6.39911 5.99163 6.33188 6.00426 6.26694C6.01688 6.20199 6.04862 6.1423 6.0954 6.09552C6.14218 6.04874 6.20187 6.017 6.26681 6.00438C6.33176 5.99176 6.39899 5.99882 6.45989 6.02468L13.7932 9.02468C13.8585 9.05145 13.9136 9.09824 13.9506 9.15832C13.9875 9.21839 14.0045 9.28865 13.999 9.35898C13.9935 9.42931 13.9659 9.49609 13.92 9.54971C13.8742 9.60332 13.8125 9.64101 13.7439 9.65734L10.8446 10.3513C10.7249 10.3799 10.6154 10.4411 10.5284 10.528C10.4413 10.615 10.38 10.7244 10.3512 10.844L9.65789 13.744C9.64173 13.8129 9.60408 13.8748 9.5504 13.9209C9.49671 13.9669 9.42977 13.9947 9.35925 14.0002C9.28874 14.0057 9.2183 13.9886 9.15813 13.9514C9.09796 13.9142 9.05118 13.8589 9.02455 13.7933L6.02455 6.46001Z' stroke='black' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E")}a-icon[shape=clock]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-clock-icon lucide-clock'%3E%3Cpath d='M12 6v6l4 2'/%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/svg%3E")}a-icon[shape=cloud-upload]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 13v8'/%3E%3Cpath d='M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242'/%3E%3Cpath d='m8 17 4-4 4 4'/%3E%3C/svg%3E%0A")}a-icon[shape=copy]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='14' height='14' x='8' y='8' rx='2' ry='2'/%3E%3Cpath d='M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2'/%3E%3C/svg%3E%0A")}a-icon[shape=corner-down-right]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M10 6.67 13.33 10m0 0L10 13.33M13.33 10h-8a2.67 2.67 0 0 1-2.66-2.67V2.67'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=cube]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.3' d='M13.7 4.9 8 8m0 0L2.3 4.9M8 8v6.3m6-3.6V4.8l-.2-.2-.3-.2-5-2.8-.4-.2H8l-.4.2-5 2.8c-.2 0-.3.1-.3.2l-.2.2v6.4l.2.2.3.2 5 2.8.4.2h0l.4-.2 5-2.8c.2 0 .3-.1.3-.2l.2-.2v-.5Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=dots-vertical]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A %3Cpath d='M8.00004 8.6665C8.36823 8.6665 8.66671 8.36803 8.66671 7.99984C8.66671 7.63165 8.36823 7.33317 8.00004 7.33317C7.63185 7.33317 7.33337 7.63165 7.33337 7.99984C7.33337 8.36803 7.63185 8.6665 8.00004 8.6665Z' stroke='currentColor' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A %3Cpath d='M8.00004 3.99984C8.36823 3.99984 8.66671 3.70136 8.66671 3.33317C8.66671 2.96498 8.36823 2.6665 8.00004 2.6665C7.63185 2.6665 7.33337 2.96498 7.33337 3.33317C7.33337 3.70136 7.63185 3.99984 8.00004 3.99984Z' stroke='currentColor' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A %3Cpath d='M8.00004 13.3332C8.36823 13.3332 8.66671 13.0347 8.66671 12.6665C8.66671 12.2983 8.36823 11.9998 8.00004 11.9998C7.63185 11.9998 7.33337 12.2983 7.33337 12.6665C7.33337 13.0347 7.63185 13.3332 8.00004 13.3332Z' stroke='currentColor' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E")}a-icon[shape=download]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M14 10v2.67A1.33 1.33 0 0 1 12.67 14H3.33A1.33 1.33 0 0 1 2 12.67V10m2.67-3.33L8 10l3.33-3.33M8 10V2'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=edit]{--icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%0A %3Cpath d='M8 2.00003H3.33333C2.97971 2.00003 2.64057 2.1405 2.39052 2.39055C2.14048 2.6406 2 2.97974 2 3.33336V12.6667C2 13.0203 2.14048 13.3595 2.39052 13.6095C2.64057 13.8596 2.97971 14 3.33333 14H12.6667C13.0203 14 13.3594 13.8596 13.6095 13.6095C13.8595 13.3595 14 13.0203 14 12.6667V8.00003M12.25 1.75003C12.5152 1.48481 12.8749 1.33582 13.25 1.33582C13.6251 1.33582 13.9848 1.48481 14.25 1.75003C14.5152 2.01525 14.6642 2.37496 14.6642 2.75003C14.6642 3.1251 14.5152 3.48481 14.25 3.75003L8.24133 9.75936C8.08303 9.91753 7.88747 10.0333 7.67267 10.096L5.75733 10.656C5.69997 10.6728 5.63916 10.6738 5.58127 10.6589C5.52339 10.6441 5.47055 10.614 5.4283 10.5717C5.38604 10.5295 5.35593 10.4766 5.3411 10.4188C5.32627 10.3609 5.32727 10.3001 5.344 10.2427L5.904 8.32736C5.96702 8.11273 6.08302 7.9174 6.24133 7.75936L12.25 1.75003Z' stroke='%23616369' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=education-disk]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%0A %3Cpath fill='%23fff' d='M12 0a12 12 0 1 1 0 24 12 12 0 0 1 0-24Zm7.2 12.8-.6.2-.3.1a1 1 0 0 0-.3.1v1.2c0 .4-.4.7-.9.7-.4 0-.8-.3-.8-.7 0-.2-.2-.3-.4-.2l-3 1.2-.4.2a1.4 1.4 0 0 1-.9-.1L6 13l-.6-.2-.2.1-.1.6v1.9l.1.7c0 .2.2.4.4.5l.7.4 5.2 2 .6.3h.6l.5-.2 5.3-2.1.7-.4.4-.5v-3.2l-.3-.1Zm-6.7-7.2a1.4 1.4 0 0 0-.9.2L3.8 9.2c-.2.1-.4.3-.4.6s.2.5.4.6l7.9 3.5.4.2h.3l.5-.2 2.3-1 .6-.4v-.3l-.6-.3-2.5-1.1c-.4-.2-.5-.6-.3-1 .2-.3.6-.4 1-.3l3.8 1.7.4.2v.1c.3.1.4.2.6 0l1.3-.5 1.2-.6c.3 0 .5-.3.5-.6s-.2-.5-.5-.6L13 5.8l-.4-.2Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=external-link]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg fill='%23000'%3E%0A %3Cpath d='M3.796 3.796a.446.446 0 0 0-.131.315v7.778a.446.446 0 0 0 .446.446h7.778a.446.446 0 0 0 .446-.446V8.556a.665.665 0 1 1 1.33 0v3.333a1.776 1.776 0 0 1-1.776 1.776H4.11a1.776 1.776 0 0 1-1.776-1.776V4.11A1.776 1.776 0 0 1 4.11 2.334h3.333a.665.665 0 1 1 0 1.33H4.111a.446.446 0 0 0-.315.13Z'/%3E%0A %3Cpath d='M9.002 3c0-.367.297-.665.665-.665H13c.367 0 .665.298.665.665v3.333a.665.665 0 0 1-1.33 0V4.605L8.47 8.47a.665.665 0 1 1-.94-.94l3.865-3.865H9.667A.665.665 0 0 1 9.002 3Z'/%3E%0A %3C/g%3E%0A%3C/svg%3E%0A")}a-icon[shape=file-down]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z'/%3E%0A %3Cpath d='M14 2v5a1 1 0 0 0 1 1h5'/%3E%0A %3Cpath d='M12 18v-6'/%3E%0A %3Cpath d='m9 15 3 3 3-3'/%3E%0A%3C/svg%3E")}a-icon[shape=file]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 13 15'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M7.67 1v2.67A1.33 1.33 0 0 0 9 5h2.67M5 5.67H3.67M9 8.33H3.67M9 11H3.67M8.33 1h-6A1.33 1.33 0 0 0 1 2.33V13a1.33 1.33 0 0 0 1.33 1.33h8A1.33 1.33 0 0 0 11.67 13V4.33L8.33 1Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=filter]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M1 3h14v2H1zm3 4h8v2H4zm3 4h2v2H7z'/%3E%3C/svg%3E")}a-icon[shape=folder-close]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z'/%3E%3Cpath d='M2 10h20'/%3E%3C/svg%3E%0A")}a-icon[shape=folder-open]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2'/%3E%3C/svg%3E%0A")}a-icon[shape=folder-tree]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath fill='%23000' d='M2.65 2a.65.65 0 0 0-1.3 0v8.67a1.98 1.98 0 0 0 1.98 1.98h2a.65.65 0 1 0 0-1.3h-2a.68.68 0 0 1-.68-.68V5.2c.22.07.45.12.68.12h2a.65.65 0 0 0 0-1.3h-2a.68.68 0 0 1-.68-.69V2Zm6.02.34h4.66a1.32 1.32 0 0 1 1.32 1.32v2a1.32 1.32 0 0 1-1.32 1.32H8.67a1.32 1.32 0 0 1-1.32-1.32v-2a1.32 1.32 0 0 1 1.32-1.32Zm-.02 1.3v2.02a.02.02 0 0 0 .02.02h4.66a.02.02 0 0 0 .02-.02v-2a.02.02 0 0 0-.02-.02H8.65Zm.02 6.04h4.66A1.32 1.32 0 0 1 14.65 11v2a1.32 1.32 0 0 1-1.32 1.32H8.67A1.32 1.32 0 0 1 7.35 13v-2a1.32 1.32 0 0 1 1.32-1.32Zm-.02 1.3v2.03h4.68a.02.02 0 0 0 .02-.01v-2a.02.02 0 0 0-.02-.02H8.65Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=github-logo]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg clip-path='url(%23a)'%3E%0A %3Cpath fill='%23000' fill-rule='evenodd' d='M7.98 0A8.08 8.08 0 0 0 0 8.2c0 3.63 2.28 6.7 5.45 7.78.4.09.55-.17.55-.39l-.02-1.52c-2.22.49-2.68-.98-2.68-.98-.36-.95-.88-1.2-.88-1.2-.73-.5.05-.5.05-.5.8.06 1.23.85 1.23.85.71 1.25 1.86.9 2.32.68.07-.53.28-.9.5-1.1-1.77-.2-3.63-.9-3.63-4.05 0-.9.32-1.63.82-2.2a3 3 0 0 1 .08-2.17s.67-.22 2.2.84a7.52 7.52 0 0 1 3.98 0c1.52-1.06 2.2-.84 2.2-.84.43 1.12.15 1.96.07 2.17.52.57.82 1.3.82 2.2 0 3.15-1.86 3.84-3.64 4.05.29.25.54.74.54 1.52l-.02 2.25c0 .22.15.48.55.4a8.18 8.18 0 0 0 5.45-7.79A8.07 8.07 0 0 0 7.98 0Z' clip-rule='evenodd'/%3E%0A %3C/g%3E%0A %3Cdefs%3E%0A %3CclipPath id='a'%3E%0A %3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%0A %3C/clipPath%3E%0A %3C/defs%3E%0A%3C/svg%3E%0A")}a-icon[shape=gitlab-logo]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg fill='%23000' clip-path='url(%23a)'%3E%0A %3Cpath d='m15.73 6.39-.02-.06L13.53.66a.57.57 0 0 0-.56-.36.57.57 0 0 0-.52.42l-1.47 4.5H5.03L3.55.72A.57.57 0 0 0 3.04.3a.58.58 0 0 0-.56.36L.29 6.34l-.02.06a4.05 4.05 0 0 0 1.34 4.67l.02.02 3.32 2.48 1.64 1.24 1 .76a.67.67 0 0 0 .81 0l2.64-2 3.34-2.5a4.04 4.04 0 0 0 1.35-4.68Z'/%3E%0A %3Cpath d='m15.73 6.39-.02-.06a7.37 7.37 0 0 0-2.93 1.32L8 11.27l3.05 2.3 3.34-2.5a4.05 4.05 0 0 0 1.34-4.68ZM4.95 13.57l1.64 1.24 1 .76a.67.67 0 0 0 .81 0l2.64-2-3.05-2.3-3.04 2.3Z'/%3E%0A %3Cpath d='M3.22 7.65A7.36 7.36 0 0 0 .29 6.34l-.02.05a4.04 4.04 0 0 0 1.34 4.68l.02.02 3.32 2.48L8 11.27 3.22 7.65Z'/%3E%0A %3C/g%3E%0A %3Cdefs%3E%0A %3CclipPath id='a'%3E%0A %3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%0A %3C/clipPath%3E%0A %3C/defs%3E%0A%3C/svg%3E%0A")}a-icon[shape=hat-glasses]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 18a2 2 0 0 0-4 0'/%3E%3Cpath d='m19 11-2.11-6.657a2 2 0 0 0-2.752-1.148l-1.276.61A2 2 0 0 1 12 4H8.5a2 2 0 0 0-1.925 1.456L5 11'/%3E%3Cpath d='M2 11h20'/%3E%3Ccircle cx='17' cy='18' r='3'/%3E%3Ccircle cx='7' cy='18' r='3'/%3E%3C/svg%3E%0A")}a-icon[shape=heart-handshake]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19.414 14.414C21 12.828 22 11.5 22 9.5a5.5 5.5 0 0 0-9.591-3.676.6.6 0 0 1-.818.001A5.5 5.5 0 0 0 2 9.5c0 2.3 1.5 4 3 5.5l5.535 5.362a2 2 0 0 0 2.879.052 2.12 2.12 0 0 0-.004-3 2.124 2.124 0 1 0 3-3 2.124 2.124 0 0 0 3.004 0 2 2 0 0 0 0-2.828l-1.881-1.882a2.41 2.41 0 0 0-3.409 0l-1.71 1.71a2 2 0 0 1-2.828 0 2 2 0 0 1 0-2.828l2.823-2.762'/%3E%3C/svg%3E%0A")}a-icon[shape=help-disk]{--icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%0A%3C!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%0A%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%0A%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px'%0A viewBox='0 0 16 16' enable-background='new 0 0 16 16' xml:space='preserve'%3E%0A%3Cg id='help_2_'%3E%0A %3Cg%3E%0A %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8,0C3.58,0,0,3.58,0,8s3.58,8,8,8s8-3.58,8-8S12.42,0,8,0z M9,13H7v-2h2V13z%0A M10.93,6.48c-0.14,0.32-0.35,0.64-0.62,0.97L9.25,8.83C9.13,8.98,9.01,9.12,8.97,9.25C8.93,9.38,8.88,9.55,8.88,9.77V10H7.12%0A V8.88c0,0,0.05-0.51,0.21-0.71L8.4,6.73c0.22-0.26,0.35-0.49,0.44-0.68c0.09-0.19,0.12-0.38,0.12-0.58c0-0.3-0.1-0.55-0.28-0.75%0A C8.5,4.53,8.24,4.44,7.92,4.44c-0.33,0-0.59,0.1-0.78,0.29c-0.19,0.19-0.33,0.46-0.4,0.81c-0.03,0.11-0.1,0.15-0.2,0.14l-1.7-0.25%0A C4.72,5.42,4.68,5.35,4.7,5.24C4.82,4.42,5.16,3.77,5.73,3.3C6.3,2.82,7.05,2.58,7.98,2.58c0.47,0,0.9,0.07,1.29,0.22%0A c0.39,0.15,0.72,0.34,1,0.59c0.28,0.25,0.49,0.55,0.65,0.89C11.07,4.63,11.14,5,11.14,5.4S11.07,6.15,10.93,6.48z'/%3E%0A %3C/g%3E%0A%3C/g%3E%0A%3C/svg%3E%0A")}a-icon[shape=history-tree]{--icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%0A%3Cpath d='M2 2V14H14' stroke='%23998FFD' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3Cpath d='M4.5 4V11.5' stroke='%23998FFD' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3Cpath d='M4.5 4H7.25M9 4H7.25M7.25 4V6H12.5' stroke='%23998FFD' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3Cpath d='M4.5 9H7.25M8.5 9H7.25M7.25 9V11H11' stroke='%23998FFD' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=history]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8'/%3E%3Cpath d='M3 3v5h5'/%3E%3Cpath d='M12 7v5l4 2'/%3E%3C/svg%3E%0A")}a-icon[shape=home]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M10 14V8.67A.67.67 0 0 0 9.33 8H6.67a.67.67 0 0 0-.67.67V14M2 6.67a1.33 1.33 0 0 1 .47-1.02l4.67-4a1.33 1.33 0 0 1 1.72 0l4.67 4A1.33 1.33 0 0 1 14 6.67v6A1.33 1.33 0 0 1 12.67 14H3.33A1.33 1.33 0 0 1 2 12.67v-6Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=hourglass]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 22h14'/%3E%3Cpath d='M5 2h14'/%3E%3Cpath d='M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22'/%3E%3Cpath d='M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2'/%3E%3C/svg%3E%0A")}a-icon[shape=info]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='8' r='6.25'/%3E%3Cpath d='M8 7.5v3.5M8 5h.01'/%3E%3C/svg%3E%0A")}a-icon[shape=jira-logo]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg fill='%23000'%3E%0A %3Cpath d='M14.55 1.71H7.67a3.1 3.1 0 0 0 3.1 3.1h1.27v1.23a3.1 3.1 0 0 0 3.1 3.1V2.32a.6.6 0 0 0-.6-.6Z'/%3E%0A %3Cpath d='M11.14 5.14H4.26a3.1 3.1 0 0 0 3.1 3.1h1.27v1.23a3.1 3.1 0 0 0 3.1 3.1V5.74a.6.6 0 0 0-.59-.6Z'/%3E%0A %3Cpath d='M7.74 8.57H.86a3.1 3.1 0 0 0 3.1 3.1h1.27v1.23a3.1 3.1 0 0 0 3.1 3.1V9.16a.6.6 0 0 0-.6-.6Z'/%3E%0A %3C/g%3E%0A%3C/svg%3E%0A")}a-icon[shape=linear-logo]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg clip-path='url(%23a)'%3E%0A %3Cpath fill='%23fff' d='M.2 9.84c-.04-.15.14-.24.25-.13l5.84 5.84c.11.1.02.29-.13.25A8.02 8.02 0 0 1 .2 9.84ZM0 7.5c0 .05.01.1.05.12l8.33 8.33c.03.04.07.05.12.05a8 8 0 0 0 1.11-.15.16.16 0 0 0 .08-.26L.4 6.3a.16.16 0 0 0-.26.08C.07 6.75.02 7.12 0 7.5Zm.67-2.75a.16.16 0 0 0 .04.18l10.36 10.36c.05.05.12.06.18.04.28-.13.56-.27.83-.43.09-.06.1-.18.03-.25L1.35 3.89a.16.16 0 0 0-.25.03c-.16.27-.3.55-.43.83ZM2.03 2.9a.16.16 0 0 1-.01-.21 8 8 0 1 1 11.3 11.3.16.16 0 0 1-.21 0L2.03 2.88Z'/%3E%0A %3C/g%3E%0A %3Cdefs%3E%0A %3CclipPath id='a'%3E%0A %3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%0A %3C/clipPath%3E%0A %3C/defs%3E%0A%3C/svg%3E%0A")}a-icon[shape=link]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%234D4E5C' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='m8.47 12.24-.94.95A3.33 3.33 0 0 1 2.8 8.47l.95-.94m8.48.94.95-.94A3.33 3.33 0 0 0 8.47 2.8l-.94.95m-1.86 6.57 4.66-4.66'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=list-detail-view]{--icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%0D%0A%3C!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%0D%0A%3Csvg version='1.1' id='Rounded_Rectangle_5_1_' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%0D%0A x='0px' y='0px' viewBox='0 0 16 16' enable-background='new 0 0 16 16' xml:space='preserve'%3E%0D%0A%3Cg id='Rounded_Rectangle_5'%3E%0D%0A %3Cg%3E%0D%0A %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6,9H1c-0.55,0-1,0.45-1,1s0.45,1,1,1h5c0.55,0,1-0.45,1-1S6.55,9,6,9z M6,13H1%0D%0A c-0.55,0-1,0.45-1,1s0.45,1,1,1h5c0.55,0,1-0.45,1-1S6.55,13,6,13z M15,1h-5C9.45,1,9,1.45,9,2v12c0,0.55,0.45,1,1,1h5%0D%0A c0.55,0,1-0.45,1-1V2C16,1.45,15.55,1,15,1z M6,5H1C0.45,5,0,5.45,0,6s0.45,1,1,1h5c0.55,0,1-0.45,1-1S6.55,5,6,5z M6,1H1%0D%0A C0.45,1,0,1.45,0,2s0.45,1,1,1h5c0.55,0,1-0.45,1-1S6.55,1,6,1z'/%3E%0D%0A %3C/g%3E%0D%0A%3C/g%3E%0D%0A%3C/svg%3E%0D%0A")}a-icon[shape=maximize]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M10 2h4v4m-8 8H2v-4m12-8L9.33 6.67M2 14l4.67-4.67'/%3E%0A%3C/svg%3E")}a-icon[shape=megaphone]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M4 9.33a8 8 0 0 0 1.6 4.8 1.33 1.33 0 1 0 2.13-1.6 5.33 5.33 0 0 1-1.06-3.2M5.33 4v5.33m2-5.33c2.03.05 4.01-.6 5.6-1.87a.67.67 0 0 1 1.07.54v8a.67.67 0 0 1-1.07.53 8.67 8.67 0 0 0-5.6-1.87h-4A1.33 1.33 0 0 1 2 8V5.33A1.33 1.33 0 0 1 3.33 4h4Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=menu]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5h10M3 8h10M3 11h10'/%3E%3C/svg%3E%0A")}a-icon[shape=minimize]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M2.67 9.33h4v4m6.66-6.66h-4v-4m0 4L14 2M2 14l4.67-4.67'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=minus]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8h10'/%3E%3C/svg%3E%0A")}a-icon[shape=moon]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=more]{--icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%0A%3C!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%0A%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%0A%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px'%0A viewBox='0 0 16 16' enable-background='new 0 0 16 16' xml:space='preserve'%3E%0A%3Cg id='more_3_'%3E%0A %3Ccircle cx='2' cy='8.03' r='2'/%3E%0A %3Ccircle cx='14' cy='8.03' r='2'/%3E%0A %3Ccircle cx='8' cy='8.03' r='2'/%3E%0A%3C/g%3E%0A%3C/svg%3E%0A")}a-icon[shape=move-horizontal]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 8 4 4-4 4'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='m6 8-4 4 4 4'/%3E%3C/svg%3E%0A")}a-icon[shape=not-equal]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M3.33 6H10m0 0h2.67M10 6l2.67-2.67M10 6l-4 4m-2.67 0H6m0 0h6.67M6 10l-2.67 2.67'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=play]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath fill='%23000' d='M6.4 10.8V5.2L10.8 8l-4.4 2.8ZM8 14.4a6.25 6.25 0 0 1-4.53-1.88 6.45 6.45 0 0 1-1.37-7A6.48 6.48 0 0 1 8 1.6a6.2 6.2 0 0 1 4.53 1.88A6.47 6.47 0 0 1 14.4 8a6.25 6.25 0 0 1-1.88 4.53A6.46 6.46 0 0 1 8 14.4Zm0-1.2c1.44 0 2.67-.5 3.68-1.52A5.01 5.01 0 0 0 13.2 8c0-1.44-.5-2.67-1.52-3.68A5.01 5.01 0 0 0 8 2.8c-1.44 0-2.67.5-3.68 1.52A5.01 5.01 0 0 0 2.8 8c0 1.44.5 2.67 1.52 3.68A5.01 5.01 0 0 0 8 13.2Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=plus]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3v10M3 8h10'/%3E%3C/svg%3E%0A")}a-icon[shape=pointer]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-pointer-icon lucide-pointer'%3E%3Cpath d='M22 14a8 8 0 0 1-8 8'/%3E%3Cpath d='M18 11v-1a2 2 0 0 0-2-2a2 2 0 0 0-2 2'/%3E%3Cpath d='M14 10V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1'/%3E%3Cpath d='M10 9.5V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v10'/%3E%3Cpath d='M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15'/%3E%3C/svg%3E")}a-icon[shape=presentation]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 3h20'/%3E%3Cpath d='M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3'/%3E%3Cpath d='m7 21 5-5 5 5'/%3E%3C/svg%3E%0A")}a-icon[shape=refresh-ccw-dot]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%0A %3Cg stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%0A %3Cpath d='M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8'/%3E%0A %3Cpath d='M3 3v5h5'/%3E%0A %3Cpath d='M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16'/%3E%0A %3Cpath d='M16 16h5v5'/%3E%0A %3Ccircle cx='12' cy='12' r='1'/%3E%0A %3C/g%3E%0A%3C/svg%3E%0A")}a-icon[shape=refresh]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A %3Cpath d='M14 8C14 6.4087 13.3679 4.88258 12.2426 3.75736C11.1174 2.63214 9.5913 2 8 2C6.32263 2.00631 4.71265 2.66082 3.50667 3.82667L2 5.33333M2 5.33333V2M2 5.33333H5.33333M2 8C2 9.5913 2.63214 11.1174 3.75736 12.2426C4.88258 13.3679 6.4087 14 8 14C9.67737 13.9937 11.2874 13.3392 12.4933 12.1733L14 10.6667M14 10.6667H10.6667M14 10.6667V14' stroke='%230B0B0B' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E")}a-icon[shape=regex]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg stroke='%23000' stroke-linecap='round' stroke-linejoin='round'%3E%0A %3Cpath d='M11.33 2v6.67m-2.88-5L14.22 7M8.45 7l5.77-3.33'/%3E%0A %3Cpath fill='%23000' d='M6 11a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1Z'/%3E%0A %3C/g%3E%0A%3C/svg%3E%0A")}a-icon[shape=repeat]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='scale(-1 1) translate(-24 0)'%3E%3Cpath d='M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8'/%3E%3Cpath d='M3 3v5h5'/%3E%3C/g%3E%3C/svg%3E%0A")}a-icon[shape=rotate-ccw]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8'/%3E%3Cpath d='M3 3v5h5'/%3E%3C/svg%3E%0A")}a-icon[shape=rss]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M2.67 7.33a6 6 0 0 1 6 6m-6-10.66a10.67 10.67 0 0 1 10.66 10.66M4 12.67a.67.67 0 1 1-1.33 0 .67.67 0 0 1 1.33 0Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=runs-history]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M4.67 1.33h6.66M3.33 4h9.34M3.33 6.67h9.34c.73 0 1.33.6 1.33 1.33v5.33c0 .74-.6 1.34-1.33 1.34H3.33c-.73 0-1.33-.6-1.33-1.34V8c0-.74.6-1.33 1.33-1.33Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=scroll-text]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M10 8H6.67M10 5.33H6.67m6 6v-8A1.33 1.33 0 0 0 11.33 2H2.67m0 0A1.33 1.33 0 0 1 4 3.33v9.34A1.33 1.33 0 0 0 5.33 14M2.67 2a1.33 1.33 0 0 0-1.34 1.33v1.34a.67.67 0 0 0 .67.66h2M5.33 14h8a1.33 1.33 0 0 0 1.34-1.33V12a.67.67 0 0 0-.67-.67H7.33a.67.67 0 0 0-.66.67v.67A1.33 1.33 0 0 1 5.33 14Z'/%3E%0A%3C/svg%3E")}a-icon[shape=search-check]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='m5.33 7.33 1.34 1.34L9.33 6M14 14l-2.87-2.87m1.54-3.8A5.33 5.33 0 1 1 2 7.33a5.33 5.33 0 0 1 10.67 0Z'/%3E%0A%3C/svg%3E")}a-icon[shape=search]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='m14 14-2.87-2.87m1.54-3.8A5.33 5.33 0 1 1 2 7.33a5.33 5.33 0 0 1 10.67 0Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=send]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z'/%3E%0A %3Cpath d='M6 12h16'/%3E%0A%3C/svg%3E")}a-icon[shape=sparkles]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg clip-path='url(%23a)'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M13.33 1.33V4m1.34-1.33H12m-4.66-.8a.67.67 0 0 1 1.32 0l.7 3.71a1.33 1.33 0 0 0 1.06 1.06l3.7.7a.67.67 0 0 1 0 1.32l-3.7.7a1.33 1.33 0 0 0-1.06 1.06l-.7 3.7a.67.67 0 0 1-1.32 0l-.7-3.7a1.33 1.33 0 0 0-1.06-1.06l-3.7-.7a.67.67 0 0 1 0-1.32l3.7-.7a1.33 1.33 0 0 0 1.06-1.06l.7-3.7ZM4 13.34a1.33 1.33 0 1 1-2.67 0 1.33 1.33 0 0 1 2.67 0Z'/%3E%0A %3C/g%3E%0A %3Cdefs%3E%0A %3CclipPath id='a'%3E%0A %3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%0A %3C/clipPath%3E%0A %3C/defs%3E%0A%3C/svg%3E%0A")}a-icon[shape=sun]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%0A %3Cg stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%0A %3Ccircle cx='12' cy='12' r='4'/%3E%0A %3Cpath d='M12 2v2'/%3E%0A %3Cpath d='M12 20v2'/%3E%0A %3Cpath d='m4.93 4.93 1.41 1.41'/%3E%0A %3Cpath d='m17.66 17.66 1.41 1.41'/%3E%0A %3Cpath d='M2 12h2'/%3E%0A %3Cpath d='M20 12h2'/%3E%0A %3Cpath d='m6.34 17.66-1.41 1.41'/%3E%0A %3Cpath d='m19.07 4.93-1.41 1.41'/%3E%0A %3C/g%3E%0A%3C/svg%3E%0A")}a-icon[shape=swatch-book]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 17a4 4 0 0 1-8 0V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2Z'/%3E%3Cpath d='M16.7 13H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H7'/%3E%3Cpath d='M 7 17h.01'/%3E%3Cpath d='m11 8 2.3-2.3a2.4 2.4 0 0 1 3.404.004L18.6 7.6a2.4 2.4 0 0 1 .026 3.434L9.9 19.8'/%3E%3C/svg%3E%0A")}a-icon[shape=table-2]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18'/%3E%3C/svg%3E%0A")}a-icon[shape=tag]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z'/%3E%3Ccircle cx='7.5' cy='7.5' r='.5' fill='currentColor'/%3E%3C/svg%3E%0A")}a-icon[shape=text-highlight]{--icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%0A%3C!-- Generator: Adobe Illustrator 18.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%0A%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px'%0A viewBox='0 0 16 16' enable-background='new 0 0 16 16' xml:space='preserve'%3E%0A%3Cg id='text_highlight_1_'%3E%0A %3Cg%3E%0A %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9,10H2V6h7V4H1C0.45,4,0,4.45,0,5v6c0,0.55,0.45,1,1,1h8V10z M13,13h-1V3h1%0A c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-1c-0.37,0-0.7,0.11-1,0.28C10.7,1.11,10.37,1,10,1H9C8.45,1,8,1.45,8,2c0,0.55,0.45,1,1,1%0A h1v10H9c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h1c0.37,0,0.7-0.11,1-0.28c0.3,0.17,0.63,0.28,1,0.28h1c0.55,0,1-0.45,1-1%0A C14,13.45,13.55,13,13,13z M15,4h-2v2h1v4h-1v2h2c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z'/%3E%0A %3C/g%3E%0A%3C/g%3E%0A%3C/svg%3E%0A")}a-icon[shape=text-initial]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 5h6'/%3E%3Cpath d='M15 12h6'/%3E%3Cpath d='M3 19h18'/%3E%3Cpath d='m3 12 3.553-7.724a.5.5 0 0 1 .894 0L11 12'/%3E%3Cpath d='M3.92 10h6.16'/%3E%3C/svg%3E%0A")}a-icon[shape=timer]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='10' x2='14' y1='2' y2='2'/%3E%3Cline x1='12' x2='15' y1='14' y2='11'/%3E%3Ccircle cx='12' cy='14' r='8'/%3E%3C/svg%3E%0A")}a-icon[shape=trash]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 11v6'/%3E%3Cpath d='M14 11v6'/%3E%3Cpath d='M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6'/%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2'/%3E%3C/svg%3E%0A")}a-icon[shape=trello-logo]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg clip-path='url(%23a)'%3E%0A %3Cpath fill='%23000' fill-rule='evenodd' d='M14.1 0H1.9C.83 0 0 .84 0 1.9v12.18c0 1.05.84 1.9 1.9 1.9h12.18c1.05 0 1.9-.85 1.92-1.9V1.9C16 .84 15.16 0 14.1 0ZM6.89 11.53c0 .35-.29.63-.63.63H3.57a.64.64 0 0 1-.63-.63V3.6c0-.34.3-.63.63-.63h2.68c.34 0 .63.29.63.63v7.93Zm6.18-3.65c0 .34-.3.63-.63.63H9.75a.64.64 0 0 1-.63-.63V3.6c0-.34.29-.63.63-.63h2.68c.34 0 .63.29.63.63v4.28Z' clip-rule='evenodd'/%3E%0A %3C/g%3E%0A %3Cdefs%3E%0A %3CclipPath id='a'%3E%0A %3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%0A %3C/clipPath%3E%0A %3C/defs%3E%0A%3C/svg%3E%0A")}a-icon[shape=view]{--icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%0A%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.91879 1.9191C2.29387 1.54403 2.80257 1.33331 3.33301 1.33331H12.6663C13.1968 1.33331 13.7055 1.54403 14.0806 1.9191C14.4556 2.29417 14.6663 2.80288 14.6663 3.33331V4.66665C14.6663 5.03484 14.3679 5.33331 13.9997 5.33331C13.6315 5.33331 13.333 5.03484 13.333 4.66665V3.33331C13.333 3.1565 13.2628 2.98693 13.1377 2.86191C13.0127 2.73688 12.8432 2.66665 12.6663 2.66665H3.33301C3.1562 2.66665 2.98663 2.73688 2.8616 2.86191C2.73658 2.98693 2.66634 3.1565 2.66634 3.33331V4.66665C2.66634 5.03484 2.36786 5.33331 1.99967 5.33331C1.63148 5.33331 1.33301 5.03484 1.33301 4.66665V3.33331C1.33301 2.80288 1.54372 2.29417 1.91879 1.9191ZM4.83914 4.96581C5.77358 4.3379 6.87387 4.00256 7.99967 4.00256C9.12548 4.00256 10.2258 4.3379 11.1602 4.96581C12.0946 5.59372 12.8209 6.48573 13.2463 7.52808C13.2505 7.53861 13.2546 7.54924 13.2583 7.55998C13.3579 7.84486 13.3579 8.1551 13.2583 8.43998C13.2546 8.45071 13.2505 8.46135 13.2463 8.47188C12.8209 9.51423 12.0946 10.4062 11.1602 11.0341C10.2258 11.6621 9.12548 11.9974 7.99967 11.9974C6.87387 11.9974 5.77358 11.6621 4.83914 11.0341C3.90471 10.4062 3.17848 9.51423 2.7531 8.47188C2.7488 8.46135 2.74477 8.45071 2.74102 8.43998C2.64143 8.1551 2.64143 7.84486 2.74102 7.55998C2.74477 7.54924 2.7488 7.53861 2.7531 7.52808C3.17848 6.48573 3.90471 5.59372 4.83914 4.96581ZM7.99967 5.3359C7.13876 5.3359 6.29737 5.59233 5.5828 6.0725C4.87778 6.54625 4.32775 7.21659 4.00075 7.99998C4.32775 8.78337 4.87778 9.45371 5.5828 9.92746C6.29737 10.4076 7.13876 10.6641 7.99967 10.6641C8.86058 10.6641 9.70198 10.4076 10.4166 9.92746C11.1216 9.45371 11.6716 8.78336 11.9986 7.99998C11.6716 7.21659 11.1216 6.54625 10.4166 6.0725C9.70198 5.59233 8.86058 5.3359 7.99967 5.3359ZM6.66634 7.99998C6.66634 7.2636 7.26329 6.66665 7.99967 6.66665C8.73605 6.66665 9.33301 7.2636 9.33301 7.99998C9.33301 8.73636 8.73605 9.33331 7.99967 9.33331C7.26329 9.33331 6.66634 8.73636 6.66634 7.99998ZM1.99967 10.6666C2.36786 10.6666 2.66634 10.9651 2.66634 11.3333V12.6666C2.66634 12.8435 2.73658 13.013 2.8616 13.138C2.98663 13.2631 3.1562 13.3333 3.33301 13.3333H12.6663C12.8432 13.3333 13.0127 13.2631 13.1377 13.138C13.2628 13.013 13.333 12.8435 13.333 12.6666V11.3333C13.333 10.9651 13.6315 10.6666 13.9997 10.6666C14.3679 10.6666 14.6663 10.9651 14.6663 11.3333V12.6666C14.6663 13.1971 14.4556 13.7058 14.0806 14.0809C13.7055 14.4559 13.1968 14.6666 12.6663 14.6666H3.33301C2.80257 14.6666 2.29387 14.4559 1.91879 14.0809C1.54372 13.7058 1.33301 13.1971 1.33301 12.6666V11.3333C1.33301 10.9651 1.63148 10.6666 1.99967 10.6666Z' fill='%23616369'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=warning-triangle]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3'/%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E%0A")}a-icon[shape=webhook]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A %3Cpath d='M11.9999 11.3201H8.00659C7.27325 11.3201 6.70659 11.9468 6.35325 12.5868C6.07355 13.1116 5.62644 13.5279 5.083 13.7694C4.53955 14.011 3.93096 14.0639 3.35397 13.9199C2.77697 13.7758 2.26469 13.443 1.89855 12.9744C1.53241 12.5057 1.33344 11.9282 1.33325 11.3335C1.33992 10.8668 1.46659 10.4001 1.71325 10.0001M3.99992 11.3335L6.08659 7.48012C6.43992 6.83345 6.15325 6.02679 5.75325 5.41345C5.56446 5.11152 5.43806 4.77484 5.38149 4.42326C5.32493 4.07168 5.33935 3.71234 5.42391 3.36643C5.50847 3.02052 5.66146 2.69505 5.87384 2.40922C6.08623 2.12339 6.3537 1.88299 6.6605 1.70221C6.96729 1.52143 7.30719 1.40393 7.66013 1.35663C8.01307 1.30934 8.37191 1.33321 8.71548 1.42684C9.05904 1.52048 9.38038 1.68197 9.66052 1.9018C9.94066 2.12163 10.1739 2.39534 10.3466 2.70679M7.99992 4.00012L10.0866 7.82012C10.4399 8.46679 11.2666 8.66679 11.9999 8.66679C12.7072 8.66679 13.3854 8.94774 13.8855 9.44783C14.3856 9.94793 14.6666 10.6262 14.6666 11.3335C14.6666 12.0407 14.3856 12.719 13.8855 13.2191C13.3854 13.7192 12.7072 14.0001 11.9999 14.0001' stroke='%23000' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E")}a-icon[shape=workflow]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M4.67 7.33V10A1.33 1.33 0 0 0 6 11.33h2.67M3.33 2H6c.74 0 1.33.6 1.33 1.33V6c0 .74-.6 1.33-1.33 1.33H3.33C2.6 7.33 2 6.73 2 6V3.33C2 2.6 2.6 2 3.33 2ZM10 8.67h2.67c.73 0 1.33.6 1.33 1.33v2.67c0 .73-.6 1.33-1.33 1.33H10c-.74 0-1.33-.6-1.33-1.33V10c0-.74.6-1.33 1.33-1.33Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=x]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4l8 8M12 4l-8 8'/%3E%3C/svg%3E%0A")}}
1
+ @layer anta{a-icon[shape=arrow-left-to-line]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath fill='%23000' d='M1.33 14V2a.67.67 0 0 1 1.34 0v12a.67.67 0 1 1-1.34 0ZM8.86 2.86a.67.67 0 1 1 .94.94L6.28 7.33H14a.67.67 0 1 1 0 1.34H6.28L9.8 12.2a.67.67 0 0 1-.94.94L4.2 8.47a.67.67 0 0 1 0-.94l4.66-4.67Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=arrow-left]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 19-7-7 7-7'/%3E%3Cpath d='M19 12H5'/%3E%3C/svg%3E%0A")}a-icon[shape=arrow-narrow-down]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A %3Cpath d='M5.3335 10.6668L8.00016 13.3335M8.00016 13.3335L10.6668 10.6668M8.00016 13.3335V2.66683' stroke='currentColor' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E")}a-icon[shape=arrow-narrow-up-down]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A%3Cpath d='M14 10.6665L11.3333 13.3332M11.3333 13.3332L8.66667 10.6665M11.3333 13.3332V2.6665M2 5.33317L4.66667 2.6665M4.66667 2.6665L7.33333 5.33317M4.66667 2.6665V13.3332' stroke='currentColor' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E")}a-icon[shape=arrow-narrow-up]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A %3Cpath d='M5.3335 5.33317L8.00016 2.6665M8.00016 2.6665L10.6668 5.33317M8.00016 2.6665V13.3332' stroke='currentColor' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E")}a-icon[shape=arrow-right]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M3.33 8h9.34m0 0L8 3.33M12.67 8 8 12.67'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=arrow-top-right]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7h10v10'/%3E%3Cpath d='M7 17 17 7'/%3E%3C/svg%3E%0A")}a-icon[shape=asterisk]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 6v12'/%3E%3Cpath d='M17.196 9 6.804 15'/%3E%3Cpath d='m6.804 9 10.392 6'/%3E%3C/svg%3E%0A")}a-icon[shape=book-open]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M8 4.67V14m0-9.33A2.67 2.67 0 0 0 5.33 2H2a.67.67 0 0 0-.67.67v8.66A.67.67 0 0 0 2 12h4a2 2 0 0 1 2 2m0-9.33A2.67 2.67 0 0 1 10.67 2H14a.67.67 0 0 1 .67.67v8.66A.67.67 0 0 1 14 12h-4a2 2 0 0 0-2 2'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=braces]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath fill='%23000' d='M3.2 1.86a2 2 0 0 1 1.47-.61h.66a.75.75 0 1 1 0 1.5h-.66a.58.58 0 0 0-.59.58v3.34c0 .49-.17.96-.48 1.33.31.37.48.84.48 1.33v3.34c0 .32.27.58.59.58h.66a.75.75 0 0 1 0 1.5h-.66a2.09 2.09 0 0 1-2.09-2.08V9.33A.58.58 0 0 0 2 8.75a.75.75 0 0 1 0-1.5.58.58 0 0 0 .58-.58V3.33c0-.55.22-1.08.61-1.47ZM9.91 2c0-.41.33-.75.75-.75h.66a2.08 2.08 0 0 1 2.09 2.08v3.34a.58.58 0 0 0 .58.58.75.75 0 0 1 0 1.5.59.59 0 0 0-.58.58v3.34a2.08 2.08 0 0 1-2.09 2.08h-.66a.75.75 0 0 1 0-1.5h.66a.58.58 0 0 0 .59-.58V9.33c0-.5.18-.97.48-1.33a2.08 2.08 0 0 1-.48-1.33V3.33a.58.58 0 0 0-.59-.58h-.66A.75.75 0 0 1 9.92 2Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=bug]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M5.33 1.33 6.6 2.6m2.82 0 1.26-1.26M6 4.75V4.1a2 2 0 1 1 4 0v.66m-2 8.58c-2.2 0-4-1.8-4-4v-2a2.67 2.67 0 0 1 2.67-2.66h2.66A2.67 2.67 0 0 1 12 7.33v2c0 2.2-1.8 4-4 4Zm0 0v-6M4.35 6A2.68 2.68 0 0 1 2 3.33m2 5.34H1.33M2 14a2.7 2.7 0 0 1 2.53-2.67m9.45-8c0 1.4-1.07 2.54-2.33 2.67m3.02 2.67H12m-.53 2.66A2.7 2.7 0 0 1 14 14'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=calendar]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A %3Cpath d='M5.33333 1.33325V3.99992M10.6667 1.33325V3.99992M2 6.66659H14M3.33333 2.66659H12.6667C13.403 2.66659 14 3.26354 14 3.99992V13.3333C14 14.0696 13.403 14.6666 12.6667 14.6666H3.33333C2.59695 14.6666 2 14.0696 2 13.3333V3.99992C2 3.26354 2.59695 2.66659 3.33333 2.66659Z' stroke='%230B0B0B' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E")}a-icon[shape=case-sensitive]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath fill='%23000' d='M11.25 12.12c-.42 0-.8-.08-1.13-.25a1.9 1.9 0 0 1-.74-.69c-.18-.3-.26-.62-.26-1 0-.37.09-.7.27-1 .19-.3.45-.53.8-.7.37-.16.8-.25 1.3-.25h1.91v.97h-1.9c-.37 0-.66.09-.87.26-.2.16-.3.39-.3.67 0 .29.1.51.29.68.19.17.46.25.81.25.33 0 .61-.06.85-.2a1.48 1.48 0 0 0 .76-1.33V7.86c0-.38-.12-.67-.35-.88-.23-.2-.54-.3-.92-.3-.31 0-.57.06-.78.2-.2.13-.35.32-.43.55H9.32a2.4 2.4 0 0 1 .85-1.35c.43-.32.96-.49 1.61-.49.51 0 .95.1 1.32.28.38.18.66.45.85.8.2.35.3.75.3 1.23V12h-1l-.15-.8h-.06a2.1 2.1 0 0 1-1.78.92ZM1.06 12l3.02-8.4h1.56L8.66 12H7.31L4.88 5.08h-.06L2.4 12H1.06Zm1.64-1.88.44-1.17h3.44l.45 1.17H2.7Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=chat]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg clip-path='url(%23a)'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M13.33 6a1.33 1.33 0 0 1 1.34 1.33v6.86a.47.47 0 0 1-.81.34l-1.47-1.47c-.25-.25-.59-.4-.94-.4H6.67a1.33 1.33 0 0 1-1.34-1.33v-.66m5.34-4A1.33 1.33 0 0 1 9.33 8H4.55c-.35 0-.7.14-.94.4L2.14 9.85a.47.47 0 0 1-.8-.34V2.67a1.33 1.33 0 0 1 1.33-1.34h6.66a1.33 1.33 0 0 1 1.34 1.34v4Z'/%3E%0A %3C/g%3E%0A %3Cdefs%3E%0A %3CclipPath id='a'%3E%0A %3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%0A %3C/clipPath%3E%0A %3C/defs%3E%0A%3C/svg%3E%0A")}a-icon[shape=check]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5l3 3 7-7'/%3E%3C/svg%3E%0A")}a-icon[shape=chevron-down]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E%0A")}a-icon[shape=chevron-left]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 4l-4 4 4 4'/%3E%3C/svg%3E%0A")}a-icon[shape=chevron-right]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 4l4 4-4 4'/%3E%3C/svg%3E%0A")}a-icon[shape=chevron-up]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 10l4-4 4 4'/%3E%3C/svg%3E%0A")}a-icon[shape=chevrons-right]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath fill='%23000' d='M3.53 4.2a.67.67 0 0 1 .94 0L7.8 7.53a.67.67 0 0 1 0 .94L4.47 11.8a.67.67 0 1 1-.94-.94L6.39 8 3.53 5.14a.67.67 0 0 1 0-.94Zm4.67 0a.66.66 0 0 1 .94 0l3.33 3.33a.67.67 0 0 1 0 .94L9.14 11.8a.66.66 0 1 1-.94-.94L11.06 8 8.2 5.14a.66.66 0 0 1 0-.94Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=circle-check]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg clip-path='url(%23a)'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M14.53 6.67a6.67 6.67 0 1 1-3.2-4.45M6 7.33l2 2 6.67-6.66'/%3E%0A %3C/g%3E%0A %3Cdefs%3E%0A %3CclipPath id='a'%3E%0A %3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%0A %3C/clipPath%3E%0A %3C/defs%3E%0A%3C/svg%3E%0A")}a-icon[shape=circle-large]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A %3Cg clip-path='url(%23clip0_5922_134)'%3E%0A %3Cpath d='M8.00016 14.6667C11.6821 14.6667 14.6668 11.6819 14.6668 8C14.6668 4.3181 11.6821 1.33333 8.00016 1.33333C4.31826 1.33333 1.3335 4.3181 1.3335 8C1.3335 11.6819 4.31826 14.6667 8.00016 14.6667Z' stroke='%23525A61' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A %3C/g%3E%0A %3Cdefs%3E%0A %3CclipPath id='clip0_5922_134'%3E%0A %3Crect width='16' height='16' fill='white'/%3E%0A %3C/clipPath%3E%0A %3C/defs%3E%0A%3C/svg%3E")}a-icon[shape=circle]{--icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 11C9.65685 11 11 9.65685 11 8C11 6.34315 9.65685 5 8 5C6.34315 5 5 6.34315 5 8C5 9.65685 6.34315 11 8 11Z' stroke='%23525A61' stroke-width='1.33' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A")}a-icon[shape=click]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A %3Cpath d='M9.33322 2.73334L7.99989 4.00001M3.39989 5.33334L1.46655 4.80001M3.99989 8.00001L2.73322 9.33334M4.79989 1.46667L5.33322 3.40001M6.02455 6.46001C5.9987 6.39911 5.99163 6.33188 6.00426 6.26694C6.01688 6.20199 6.04862 6.1423 6.0954 6.09552C6.14218 6.04874 6.20187 6.017 6.26681 6.00438C6.33176 5.99176 6.39899 5.99882 6.45989 6.02468L13.7932 9.02468C13.8585 9.05145 13.9136 9.09824 13.9506 9.15832C13.9875 9.21839 14.0045 9.28865 13.999 9.35898C13.9935 9.42931 13.9659 9.49609 13.92 9.54971C13.8742 9.60332 13.8125 9.64101 13.7439 9.65734L10.8446 10.3513C10.7249 10.3799 10.6154 10.4411 10.5284 10.528C10.4413 10.615 10.38 10.7244 10.3512 10.844L9.65789 13.744C9.64173 13.8129 9.60408 13.8748 9.5504 13.9209C9.49671 13.9669 9.42977 13.9947 9.35925 14.0002C9.28874 14.0057 9.2183 13.9886 9.15813 13.9514C9.09796 13.9142 9.05118 13.8589 9.02455 13.7933L6.02455 6.46001Z' stroke='black' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E")}a-icon[shape=clock]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-clock-icon lucide-clock'%3E%3Cpath d='M12 6v6l4 2'/%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/svg%3E")}a-icon[shape=cloud-upload]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 13v8'/%3E%3Cpath d='M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242'/%3E%3Cpath d='m8 17 4-4 4 4'/%3E%3C/svg%3E%0A")}a-icon[shape=copy]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='rotate(90 12 12)'%3E%3Crect width='14' height='14' x='8' y='8' rx='2' ry='2'/%3E%3Cpath d='M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2'/%3E%3C/g%3E%3C/svg%3E%0A")}a-icon[shape=corner-down-right]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M10 6.67 13.33 10m0 0L10 13.33M13.33 10h-8a2.67 2.67 0 0 1-2.66-2.67V2.67'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=cube]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.3' d='M13.7 4.9 8 8m0 0L2.3 4.9M8 8v6.3m6-3.6V4.8l-.2-.2-.3-.2-5-2.8-.4-.2H8l-.4.2-5 2.8c-.2 0-.3.1-.3.2l-.2.2v6.4l.2.2.3.2 5 2.8.4.2h0l.4-.2 5-2.8c.2 0 .3-.1.3-.2l.2-.2v-.5Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=dots-vertical]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A %3Cpath d='M8.00004 8.6665C8.36823 8.6665 8.66671 8.36803 8.66671 7.99984C8.66671 7.63165 8.36823 7.33317 8.00004 7.33317C7.63185 7.33317 7.33337 7.63165 7.33337 7.99984C7.33337 8.36803 7.63185 8.6665 8.00004 8.6665Z' stroke='currentColor' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A %3Cpath d='M8.00004 3.99984C8.36823 3.99984 8.66671 3.70136 8.66671 3.33317C8.66671 2.96498 8.36823 2.6665 8.00004 2.6665C7.63185 2.6665 7.33337 2.96498 7.33337 3.33317C7.33337 3.70136 7.63185 3.99984 8.00004 3.99984Z' stroke='currentColor' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A %3Cpath d='M8.00004 13.3332C8.36823 13.3332 8.66671 13.0347 8.66671 12.6665C8.66671 12.2983 8.36823 11.9998 8.00004 11.9998C7.63185 11.9998 7.33337 12.2983 7.33337 12.6665C7.33337 13.0347 7.63185 13.3332 8.00004 13.3332Z' stroke='currentColor' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E")}a-icon[shape=download]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M14 10v2.67A1.33 1.33 0 0 1 12.67 14H3.33A1.33 1.33 0 0 1 2 12.67V10m2.67-3.33L8 10l3.33-3.33M8 10V2'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=edit]{--icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%0A %3Cpath d='M8 2.00003H3.33333C2.97971 2.00003 2.64057 2.1405 2.39052 2.39055C2.14048 2.6406 2 2.97974 2 3.33336V12.6667C2 13.0203 2.14048 13.3595 2.39052 13.6095C2.64057 13.8596 2.97971 14 3.33333 14H12.6667C13.0203 14 13.3594 13.8596 13.6095 13.6095C13.8595 13.3595 14 13.0203 14 12.6667V8.00003M12.25 1.75003C12.5152 1.48481 12.8749 1.33582 13.25 1.33582C13.6251 1.33582 13.9848 1.48481 14.25 1.75003C14.5152 2.01525 14.6642 2.37496 14.6642 2.75003C14.6642 3.1251 14.5152 3.48481 14.25 3.75003L8.24133 9.75936C8.08303 9.91753 7.88747 10.0333 7.67267 10.096L5.75733 10.656C5.69997 10.6728 5.63916 10.6738 5.58127 10.6589C5.52339 10.6441 5.47055 10.614 5.4283 10.5717C5.38604 10.5295 5.35593 10.4766 5.3411 10.4188C5.32627 10.3609 5.32727 10.3001 5.344 10.2427L5.904 8.32736C5.96702 8.11273 6.08302 7.9174 6.24133 7.75936L12.25 1.75003Z' stroke='%23616369' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=education-disk]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%0A %3Cpath fill='%23fff' d='M12 0a12 12 0 1 1 0 24 12 12 0 0 1 0-24Zm7.2 12.8-.6.2-.3.1a1 1 0 0 0-.3.1v1.2c0 .4-.4.7-.9.7-.4 0-.8-.3-.8-.7 0-.2-.2-.3-.4-.2l-3 1.2-.4.2a1.4 1.4 0 0 1-.9-.1L6 13l-.6-.2-.2.1-.1.6v1.9l.1.7c0 .2.2.4.4.5l.7.4 5.2 2 .6.3h.6l.5-.2 5.3-2.1.7-.4.4-.5v-3.2l-.3-.1Zm-6.7-7.2a1.4 1.4 0 0 0-.9.2L3.8 9.2c-.2.1-.4.3-.4.6s.2.5.4.6l7.9 3.5.4.2h.3l.5-.2 2.3-1 .6-.4v-.3l-.6-.3-2.5-1.1c-.4-.2-.5-.6-.3-1 .2-.3.6-.4 1-.3l3.8 1.7.4.2v.1c.3.1.4.2.6 0l1.3-.5 1.2-.6c.3 0 .5-.3.5-.6s-.2-.5-.5-.6L13 5.8l-.4-.2Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=external-link]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg fill='%23000'%3E%0A %3Cpath d='M3.796 3.796a.446.446 0 0 0-.131.315v7.778a.446.446 0 0 0 .446.446h7.778a.446.446 0 0 0 .446-.446V8.556a.665.665 0 1 1 1.33 0v3.333a1.776 1.776 0 0 1-1.776 1.776H4.11a1.776 1.776 0 0 1-1.776-1.776V4.11A1.776 1.776 0 0 1 4.11 2.334h3.333a.665.665 0 1 1 0 1.33H4.111a.446.446 0 0 0-.315.13Z'/%3E%0A %3Cpath d='M9.002 3c0-.367.297-.665.665-.665H13c.367 0 .665.298.665.665v3.333a.665.665 0 0 1-1.33 0V4.605L8.47 8.47a.665.665 0 1 1-.94-.94l3.865-3.865H9.667A.665.665 0 0 1 9.002 3Z'/%3E%0A %3C/g%3E%0A%3C/svg%3E%0A")}a-icon[shape=file-down]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z'/%3E%0A %3Cpath d='M14 2v5a1 1 0 0 0 1 1h5'/%3E%0A %3Cpath d='M12 18v-6'/%3E%0A %3Cpath d='m9 15 3 3 3-3'/%3E%0A%3C/svg%3E")}a-icon[shape=file]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 13 15'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M7.67 1v2.67A1.33 1.33 0 0 0 9 5h2.67M5 5.67H3.67M9 8.33H3.67M9 11H3.67M8.33 1h-6A1.33 1.33 0 0 0 1 2.33V13a1.33 1.33 0 0 0 1.33 1.33h8A1.33 1.33 0 0 0 11.67 13V4.33L8.33 1Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=filter]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 5h20'/%3E%3Cpath d='M6 12h12'/%3E%3Cpath d='M9 19h6'/%3E%3C/svg%3E%0A")}a-icon[shape=folder-close]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z'/%3E%3Cpath d='M2 10h20'/%3E%3C/svg%3E%0A")}a-icon[shape=folder-open]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2'/%3E%3C/svg%3E%0A")}a-icon[shape=folder-tree]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath fill='%23000' d='M2.65 2a.65.65 0 0 0-1.3 0v8.67a1.98 1.98 0 0 0 1.98 1.98h2a.65.65 0 1 0 0-1.3h-2a.68.68 0 0 1-.68-.68V5.2c.22.07.45.12.68.12h2a.65.65 0 0 0 0-1.3h-2a.68.68 0 0 1-.68-.69V2Zm6.02.34h4.66a1.32 1.32 0 0 1 1.32 1.32v2a1.32 1.32 0 0 1-1.32 1.32H8.67a1.32 1.32 0 0 1-1.32-1.32v-2a1.32 1.32 0 0 1 1.32-1.32Zm-.02 1.3v2.02a.02.02 0 0 0 .02.02h4.66a.02.02 0 0 0 .02-.02v-2a.02.02 0 0 0-.02-.02H8.65Zm.02 6.04h4.66A1.32 1.32 0 0 1 14.65 11v2a1.32 1.32 0 0 1-1.32 1.32H8.67A1.32 1.32 0 0 1 7.35 13v-2a1.32 1.32 0 0 1 1.32-1.32Zm-.02 1.3v2.03h4.68a.02.02 0 0 0 .02-.01v-2a.02.02 0 0 0-.02-.02H8.65Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=github-logo]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg clip-path='url(%23a)'%3E%0A %3Cpath fill='%23000' fill-rule='evenodd' d='M7.98 0A8.08 8.08 0 0 0 0 8.2c0 3.63 2.28 6.7 5.45 7.78.4.09.55-.17.55-.39l-.02-1.52c-2.22.49-2.68-.98-2.68-.98-.36-.95-.88-1.2-.88-1.2-.73-.5.05-.5.05-.5.8.06 1.23.85 1.23.85.71 1.25 1.86.9 2.32.68.07-.53.28-.9.5-1.1-1.77-.2-3.63-.9-3.63-4.05 0-.9.32-1.63.82-2.2a3 3 0 0 1 .08-2.17s.67-.22 2.2.84a7.52 7.52 0 0 1 3.98 0c1.52-1.06 2.2-.84 2.2-.84.43 1.12.15 1.96.07 2.17.52.57.82 1.3.82 2.2 0 3.15-1.86 3.84-3.64 4.05.29.25.54.74.54 1.52l-.02 2.25c0 .22.15.48.55.4a8.18 8.18 0 0 0 5.45-7.79A8.07 8.07 0 0 0 7.98 0Z' clip-rule='evenodd'/%3E%0A %3C/g%3E%0A %3Cdefs%3E%0A %3CclipPath id='a'%3E%0A %3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%0A %3C/clipPath%3E%0A %3C/defs%3E%0A%3C/svg%3E%0A")}a-icon[shape=gitlab-logo]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg fill='%23000' clip-path='url(%23a)'%3E%0A %3Cpath d='m15.73 6.39-.02-.06L13.53.66a.57.57 0 0 0-.56-.36.57.57 0 0 0-.52.42l-1.47 4.5H5.03L3.55.72A.57.57 0 0 0 3.04.3a.58.58 0 0 0-.56.36L.29 6.34l-.02.06a4.05 4.05 0 0 0 1.34 4.67l.02.02 3.32 2.48 1.64 1.24 1 .76a.67.67 0 0 0 .81 0l2.64-2 3.34-2.5a4.04 4.04 0 0 0 1.35-4.68Z'/%3E%0A %3Cpath d='m15.73 6.39-.02-.06a7.37 7.37 0 0 0-2.93 1.32L8 11.27l3.05 2.3 3.34-2.5a4.05 4.05 0 0 0 1.34-4.68ZM4.95 13.57l1.64 1.24 1 .76a.67.67 0 0 0 .81 0l2.64-2-3.05-2.3-3.04 2.3Z'/%3E%0A %3Cpath d='M3.22 7.65A7.36 7.36 0 0 0 .29 6.34l-.02.05a4.04 4.04 0 0 0 1.34 4.68l.02.02 3.32 2.48L8 11.27 3.22 7.65Z'/%3E%0A %3C/g%3E%0A %3Cdefs%3E%0A %3CclipPath id='a'%3E%0A %3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%0A %3C/clipPath%3E%0A %3C/defs%3E%0A%3C/svg%3E%0A")}a-icon[shape=hat-glasses]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 18a2 2 0 0 0-4 0'/%3E%3Cpath d='m19 11-2.11-6.657a2 2 0 0 0-2.752-1.148l-1.276.61A2 2 0 0 1 12 4H8.5a2 2 0 0 0-1.925 1.456L5 11'/%3E%3Cpath d='M2 11h20'/%3E%3Ccircle cx='17' cy='18' r='3'/%3E%3Ccircle cx='7' cy='18' r='3'/%3E%3C/svg%3E%0A")}a-icon[shape=heart-handshake]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19.414 14.414C21 12.828 22 11.5 22 9.5a5.5 5.5 0 0 0-9.591-3.676.6.6 0 0 1-.818.001A5.5 5.5 0 0 0 2 9.5c0 2.3 1.5 4 3 5.5l5.535 5.362a2 2 0 0 0 2.879.052 2.12 2.12 0 0 0-.004-3 2.124 2.124 0 1 0 3-3 2.124 2.124 0 0 0 3.004 0 2 2 0 0 0 0-2.828l-1.881-1.882a2.41 2.41 0 0 0-3.409 0l-1.71 1.71a2 2 0 0 1-2.828 0 2 2 0 0 1 0-2.828l2.823-2.762'/%3E%3C/svg%3E%0A")}a-icon[shape=help-disk]{--icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%0A%3C!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%0A%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%0A%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px'%0A viewBox='0 0 16 16' enable-background='new 0 0 16 16' xml:space='preserve'%3E%0A%3Cg id='help_2_'%3E%0A %3Cg%3E%0A %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8,0C3.58,0,0,3.58,0,8s3.58,8,8,8s8-3.58,8-8S12.42,0,8,0z M9,13H7v-2h2V13z%0A M10.93,6.48c-0.14,0.32-0.35,0.64-0.62,0.97L9.25,8.83C9.13,8.98,9.01,9.12,8.97,9.25C8.93,9.38,8.88,9.55,8.88,9.77V10H7.12%0A V8.88c0,0,0.05-0.51,0.21-0.71L8.4,6.73c0.22-0.26,0.35-0.49,0.44-0.68c0.09-0.19,0.12-0.38,0.12-0.58c0-0.3-0.1-0.55-0.28-0.75%0A C8.5,4.53,8.24,4.44,7.92,4.44c-0.33,0-0.59,0.1-0.78,0.29c-0.19,0.19-0.33,0.46-0.4,0.81c-0.03,0.11-0.1,0.15-0.2,0.14l-1.7-0.25%0A C4.72,5.42,4.68,5.35,4.7,5.24C4.82,4.42,5.16,3.77,5.73,3.3C6.3,2.82,7.05,2.58,7.98,2.58c0.47,0,0.9,0.07,1.29,0.22%0A c0.39,0.15,0.72,0.34,1,0.59c0.28,0.25,0.49,0.55,0.65,0.89C11.07,4.63,11.14,5,11.14,5.4S11.07,6.15,10.93,6.48z'/%3E%0A %3C/g%3E%0A%3C/g%3E%0A%3C/svg%3E%0A")}a-icon[shape=history-tree]{--icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%0A%3Cpath d='M2 2V14H14' stroke='%23998FFD' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3Cpath d='M4.5 4V11.5' stroke='%23998FFD' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3Cpath d='M4.5 4H7.25M9 4H7.25M7.25 4V6H12.5' stroke='%23998FFD' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3Cpath d='M4.5 9H7.25M8.5 9H7.25M7.25 9V11H11' stroke='%23998FFD' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=history]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8'/%3E%3Cpath d='M3 3v5h5'/%3E%3Cpath d='M12 7v5l4 2'/%3E%3C/svg%3E%0A")}a-icon[shape=home]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M10 14V8.67A.67.67 0 0 0 9.33 8H6.67a.67.67 0 0 0-.67.67V14M2 6.67a1.33 1.33 0 0 1 .47-1.02l4.67-4a1.33 1.33 0 0 1 1.72 0l4.67 4A1.33 1.33 0 0 1 14 6.67v6A1.33 1.33 0 0 1 12.67 14H3.33A1.33 1.33 0 0 1 2 12.67v-6Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=hourglass]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 22h14'/%3E%3Cpath d='M5 2h14'/%3E%3Cpath d='M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22'/%3E%3Cpath d='M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2'/%3E%3C/svg%3E%0A")}a-icon[shape=info]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='8' r='6.25'/%3E%3Cpath d='M8 7.5v3.5M8 5h.01'/%3E%3C/svg%3E%0A")}a-icon[shape=jira-logo]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg fill='%23000'%3E%0A %3Cpath d='M14.55 1.71H7.67a3.1 3.1 0 0 0 3.1 3.1h1.27v1.23a3.1 3.1 0 0 0 3.1 3.1V2.32a.6.6 0 0 0-.6-.6Z'/%3E%0A %3Cpath d='M11.14 5.14H4.26a3.1 3.1 0 0 0 3.1 3.1h1.27v1.23a3.1 3.1 0 0 0 3.1 3.1V5.74a.6.6 0 0 0-.59-.6Z'/%3E%0A %3Cpath d='M7.74 8.57H.86a3.1 3.1 0 0 0 3.1 3.1h1.27v1.23a3.1 3.1 0 0 0 3.1 3.1V9.16a.6.6 0 0 0-.6-.6Z'/%3E%0A %3C/g%3E%0A%3C/svg%3E%0A")}a-icon[shape=linear-logo]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg clip-path='url(%23a)'%3E%0A %3Cpath fill='%23fff' d='M.2 9.84c-.04-.15.14-.24.25-.13l5.84 5.84c.11.1.02.29-.13.25A8.02 8.02 0 0 1 .2 9.84ZM0 7.5c0 .05.01.1.05.12l8.33 8.33c.03.04.07.05.12.05a8 8 0 0 0 1.11-.15.16.16 0 0 0 .08-.26L.4 6.3a.16.16 0 0 0-.26.08C.07 6.75.02 7.12 0 7.5Zm.67-2.75a.16.16 0 0 0 .04.18l10.36 10.36c.05.05.12.06.18.04.28-.13.56-.27.83-.43.09-.06.1-.18.03-.25L1.35 3.89a.16.16 0 0 0-.25.03c-.16.27-.3.55-.43.83ZM2.03 2.9a.16.16 0 0 1-.01-.21 8 8 0 1 1 11.3 11.3.16.16 0 0 1-.21 0L2.03 2.88Z'/%3E%0A %3C/g%3E%0A %3Cdefs%3E%0A %3CclipPath id='a'%3E%0A %3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%0A %3C/clipPath%3E%0A %3C/defs%3E%0A%3C/svg%3E%0A")}a-icon[shape=link]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%234D4E5C' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='m8.47 12.24-.94.95A3.33 3.33 0 0 1 2.8 8.47l.95-.94m8.48.94.95-.94A3.33 3.33 0 0 0 8.47 2.8l-.94.95m-1.86 6.57 4.66-4.66'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=list-collapse]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 5h11'/%3E%3Cpath d='M10 12h11'/%3E%3Cpath d='M10 19h11'/%3E%3Cpath d='m3 10 3-3-3-3'/%3E%3Cpath d='m3 20 3-3-3-3'/%3E%3C/svg%3E%0A")}a-icon[shape=maximize]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M10 2h4v4m-8 8H2v-4m12-8L9.33 6.67M2 14l4.67-4.67'/%3E%0A%3C/svg%3E")}a-icon[shape=megaphone]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M4 9.33a8 8 0 0 0 1.6 4.8 1.33 1.33 0 1 0 2.13-1.6 5.33 5.33 0 0 1-1.06-3.2M5.33 4v5.33m2-5.33c2.03.05 4.01-.6 5.6-1.87a.67.67 0 0 1 1.07.54v8a.67.67 0 0 1-1.07.53 8.67 8.67 0 0 0-5.6-1.87h-4A1.33 1.33 0 0 1 2 8V5.33A1.33 1.33 0 0 1 3.33 4h4Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=menu]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5h10M3 8h10M3 11h10'/%3E%3C/svg%3E%0A")}a-icon[shape=minimize]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M2.67 9.33h4v4m6.66-6.66h-4v-4m0 4L14 2M2 14l4.67-4.67'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=minus]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8h10'/%3E%3C/svg%3E%0A")}a-icon[shape=moon]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=more]{--icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%0A%3C!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%0A%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%0A%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px'%0A viewBox='0 0 16 16' enable-background='new 0 0 16 16' xml:space='preserve'%3E%0A%3Cg id='more_3_'%3E%0A %3Ccircle cx='2' cy='8.03' r='2'/%3E%0A %3Ccircle cx='14' cy='8.03' r='2'/%3E%0A %3Ccircle cx='8' cy='8.03' r='2'/%3E%0A%3C/g%3E%0A%3C/svg%3E%0A")}a-icon[shape=move-horizontal]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 8 4 4-4 4'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='m6 8-4 4 4 4'/%3E%3C/svg%3E%0A")}a-icon[shape=not-equal]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M3.33 6H10m0 0h2.67M10 6l2.67-2.67M10 6l-4 4m-2.67 0H6m0 0h6.67M6 10l-2.67 2.67'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=play]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath fill='%23000' d='M6.4 10.8V5.2L10.8 8l-4.4 2.8ZM8 14.4a6.25 6.25 0 0 1-4.53-1.88 6.45 6.45 0 0 1-1.37-7A6.48 6.48 0 0 1 8 1.6a6.2 6.2 0 0 1 4.53 1.88A6.47 6.47 0 0 1 14.4 8a6.25 6.25 0 0 1-1.88 4.53A6.46 6.46 0 0 1 8 14.4Zm0-1.2c1.44 0 2.67-.5 3.68-1.52A5.01 5.01 0 0 0 13.2 8c0-1.44-.5-2.67-1.52-3.68A5.01 5.01 0 0 0 8 2.8c-1.44 0-2.67.5-3.68 1.52A5.01 5.01 0 0 0 2.8 8c0 1.44.5 2.67 1.52 3.68A5.01 5.01 0 0 0 8 13.2Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=plus]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3v10M3 8h10'/%3E%3C/svg%3E%0A")}a-icon[shape=pointer]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-pointer-icon lucide-pointer'%3E%3Cpath d='M22 14a8 8 0 0 1-8 8'/%3E%3Cpath d='M18 11v-1a2 2 0 0 0-2-2a2 2 0 0 0-2 2'/%3E%3Cpath d='M14 10V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1'/%3E%3Cpath d='M10 9.5V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v10'/%3E%3Cpath d='M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15'/%3E%3C/svg%3E")}a-icon[shape=presentation]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 3h20'/%3E%3Cpath d='M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3'/%3E%3Cpath d='m7 21 5-5 5 5'/%3E%3C/svg%3E%0A")}a-icon[shape=refresh-ccw-dot]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%0A %3Cg stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%0A %3Cpath d='M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8'/%3E%0A %3Cpath d='M3 3v5h5'/%3E%0A %3Cpath d='M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16'/%3E%0A %3Cpath d='M16 16h5v5'/%3E%0A %3Ccircle cx='12' cy='12' r='1'/%3E%0A %3C/g%3E%0A%3C/svg%3E%0A")}a-icon[shape=refresh]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A %3Cpath d='M14 8C14 6.4087 13.3679 4.88258 12.2426 3.75736C11.1174 2.63214 9.5913 2 8 2C6.32263 2.00631 4.71265 2.66082 3.50667 3.82667L2 5.33333M2 5.33333V2M2 5.33333H5.33333M2 8C2 9.5913 2.63214 11.1174 3.75736 12.2426C4.88258 13.3679 6.4087 14 8 14C9.67737 13.9937 11.2874 13.3392 12.4933 12.1733L14 10.6667M14 10.6667H10.6667M14 10.6667V14' stroke='%230B0B0B' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E")}a-icon[shape=regex]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg stroke='%23000' stroke-linecap='round' stroke-linejoin='round'%3E%0A %3Cpath d='M11.33 2v6.67m-2.88-5L14.22 7M8.45 7l5.77-3.33'/%3E%0A %3Cpath fill='%23000' d='M6 11a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1Z'/%3E%0A %3C/g%3E%0A%3C/svg%3E%0A")}a-icon[shape=repeat]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='scale(-1 1) translate(-24 0)'%3E%3Cpath d='M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8'/%3E%3Cpath d='M3 3v5h5'/%3E%3C/g%3E%3C/svg%3E%0A")}a-icon[shape=rotate-ccw]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8'/%3E%3Cpath d='M3 3v5h5'/%3E%3C/svg%3E%0A")}a-icon[shape=rss]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M2.67 7.33a6 6 0 0 1 6 6m-6-10.66a10.67 10.67 0 0 1 10.66 10.66M4 12.67a.67.67 0 1 1-1.33 0 .67.67 0 0 1 1.33 0Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=runs-history]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M4.67 1.33h6.66M3.33 4h9.34M3.33 6.67h9.34c.73 0 1.33.6 1.33 1.33v5.33c0 .74-.6 1.34-1.33 1.34H3.33c-.73 0-1.33-.6-1.33-1.34V8c0-.74.6-1.33 1.33-1.33Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=scroll-text]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M10 8H6.67M10 5.33H6.67m6 6v-8A1.33 1.33 0 0 0 11.33 2H2.67m0 0A1.33 1.33 0 0 1 4 3.33v9.34A1.33 1.33 0 0 0 5.33 14M2.67 2a1.33 1.33 0 0 0-1.34 1.33v1.34a.67.67 0 0 0 .67.66h2M5.33 14h8a1.33 1.33 0 0 0 1.34-1.33V12a.67.67 0 0 0-.67-.67H7.33a.67.67 0 0 0-.66.67v.67A1.33 1.33 0 0 1 5.33 14Z'/%3E%0A%3C/svg%3E")}a-icon[shape=search-check]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='m5.33 7.33 1.34 1.34L9.33 6M14 14l-2.87-2.87m1.54-3.8A5.33 5.33 0 1 1 2 7.33a5.33 5.33 0 0 1 10.67 0Z'/%3E%0A%3C/svg%3E")}a-icon[shape=search]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='m14 14-2.87-2.87m1.54-3.8A5.33 5.33 0 1 1 2 7.33a5.33 5.33 0 0 1 10.67 0Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=send]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z'/%3E%0A %3Cpath d='M6 12h16'/%3E%0A%3C/svg%3E")}a-icon[shape=sparkles]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg clip-path='url(%23a)'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M13.33 1.33V4m1.34-1.33H12m-4.66-.8a.67.67 0 0 1 1.32 0l.7 3.71a1.33 1.33 0 0 0 1.06 1.06l3.7.7a.67.67 0 0 1 0 1.32l-3.7.7a1.33 1.33 0 0 0-1.06 1.06l-.7 3.7a.67.67 0 0 1-1.32 0l-.7-3.7a1.33 1.33 0 0 0-1.06-1.06l-3.7-.7a.67.67 0 0 1 0-1.32l3.7-.7a1.33 1.33 0 0 0 1.06-1.06l.7-3.7ZM4 13.34a1.33 1.33 0 1 1-2.67 0 1.33 1.33 0 0 1 2.67 0Z'/%3E%0A %3C/g%3E%0A %3Cdefs%3E%0A %3CclipPath id='a'%3E%0A %3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%0A %3C/clipPath%3E%0A %3C/defs%3E%0A%3C/svg%3E%0A")}a-icon[shape=sun]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%0A %3Cg stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%0A %3Ccircle cx='12' cy='12' r='4'/%3E%0A %3Cpath d='M12 2v2'/%3E%0A %3Cpath d='M12 20v2'/%3E%0A %3Cpath d='m4.93 4.93 1.41 1.41'/%3E%0A %3Cpath d='m17.66 17.66 1.41 1.41'/%3E%0A %3Cpath d='M2 12h2'/%3E%0A %3Cpath d='M20 12h2'/%3E%0A %3Cpath d='m6.34 17.66-1.41 1.41'/%3E%0A %3Cpath d='m19.07 4.93-1.41 1.41'/%3E%0A %3C/g%3E%0A%3C/svg%3E%0A")}a-icon[shape=swatch-book]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 17a4 4 0 0 1-8 0V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2Z'/%3E%3Cpath d='M16.7 13H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H7'/%3E%3Cpath d='M 7 17h.01'/%3E%3Cpath d='m11 8 2.3-2.3a2.4 2.4 0 0 1 3.404.004L18.6 7.6a2.4 2.4 0 0 1 .026 3.434L9.9 19.8'/%3E%3C/svg%3E%0A")}a-icon[shape=table-2]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18'/%3E%3C/svg%3E%0A")}a-icon[shape=tag]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z'/%3E%3Ccircle cx='7.5' cy='7.5' r='.5' fill='currentColor'/%3E%3C/svg%3E%0A")}a-icon[shape=text-highlight]{--icon: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%0A%3C!-- Generator: Adobe Illustrator 18.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%0A%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px'%0A viewBox='0 0 16 16' enable-background='new 0 0 16 16' xml:space='preserve'%3E%0A%3Cg id='text_highlight_1_'%3E%0A %3Cg%3E%0A %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9,10H2V6h7V4H1C0.45,4,0,4.45,0,5v6c0,0.55,0.45,1,1,1h8V10z M13,13h-1V3h1%0A c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-1c-0.37,0-0.7,0.11-1,0.28C10.7,1.11,10.37,1,10,1H9C8.45,1,8,1.45,8,2c0,0.55,0.45,1,1,1%0A h1v10H9c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h1c0.37,0,0.7-0.11,1-0.28c0.3,0.17,0.63,0.28,1,0.28h1c0.55,0,1-0.45,1-1%0A C14,13.45,13.55,13,13,13z M15,4h-2v2h1v4h-1v2h2c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z'/%3E%0A %3C/g%3E%0A%3C/g%3E%0A%3C/svg%3E%0A")}a-icon[shape=text-initial]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 5h6'/%3E%3Cpath d='M15 12h6'/%3E%3Cpath d='M3 19h18'/%3E%3Cpath d='m3 12 3.553-7.724a.5.5 0 0 1 .894 0L11 12'/%3E%3Cpath d='M3.92 10h6.16'/%3E%3C/svg%3E%0A")}a-icon[shape=timer]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='10' x2='14' y1='2' y2='2'/%3E%3Cline x1='12' x2='15' y1='14' y2='11'/%3E%3Ccircle cx='12' cy='14' r='8'/%3E%3C/svg%3E%0A")}a-icon[shape=trash]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 11v6'/%3E%3Cpath d='M14 11v6'/%3E%3Cpath d='M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6'/%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2'/%3E%3C/svg%3E%0A")}a-icon[shape=trello-logo]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cg clip-path='url(%23a)'%3E%0A %3Cpath fill='%23000' fill-rule='evenodd' d='M14.1 0H1.9C.83 0 0 .84 0 1.9v12.18c0 1.05.84 1.9 1.9 1.9h12.18c1.05 0 1.9-.85 1.92-1.9V1.9C16 .84 15.16 0 14.1 0ZM6.89 11.53c0 .35-.29.63-.63.63H3.57a.64.64 0 0 1-.63-.63V3.6c0-.34.3-.63.63-.63h2.68c.34 0 .63.29.63.63v7.93Zm6.18-3.65c0 .34-.3.63-.63.63H9.75a.64.64 0 0 1-.63-.63V3.6c0-.34.29-.63.63-.63h2.68c.34 0 .63.29.63.63v4.28Z' clip-rule='evenodd'/%3E%0A %3C/g%3E%0A %3Cdefs%3E%0A %3CclipPath id='a'%3E%0A %3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%0A %3C/clipPath%3E%0A %3C/defs%3E%0A%3C/svg%3E%0A")}a-icon[shape=view]{--icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%0A%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.91879 1.9191C2.29387 1.54403 2.80257 1.33331 3.33301 1.33331H12.6663C13.1968 1.33331 13.7055 1.54403 14.0806 1.9191C14.4556 2.29417 14.6663 2.80288 14.6663 3.33331V4.66665C14.6663 5.03484 14.3679 5.33331 13.9997 5.33331C13.6315 5.33331 13.333 5.03484 13.333 4.66665V3.33331C13.333 3.1565 13.2628 2.98693 13.1377 2.86191C13.0127 2.73688 12.8432 2.66665 12.6663 2.66665H3.33301C3.1562 2.66665 2.98663 2.73688 2.8616 2.86191C2.73658 2.98693 2.66634 3.1565 2.66634 3.33331V4.66665C2.66634 5.03484 2.36786 5.33331 1.99967 5.33331C1.63148 5.33331 1.33301 5.03484 1.33301 4.66665V3.33331C1.33301 2.80288 1.54372 2.29417 1.91879 1.9191ZM4.83914 4.96581C5.77358 4.3379 6.87387 4.00256 7.99967 4.00256C9.12548 4.00256 10.2258 4.3379 11.1602 4.96581C12.0946 5.59372 12.8209 6.48573 13.2463 7.52808C13.2505 7.53861 13.2546 7.54924 13.2583 7.55998C13.3579 7.84486 13.3579 8.1551 13.2583 8.43998C13.2546 8.45071 13.2505 8.46135 13.2463 8.47188C12.8209 9.51423 12.0946 10.4062 11.1602 11.0341C10.2258 11.6621 9.12548 11.9974 7.99967 11.9974C6.87387 11.9974 5.77358 11.6621 4.83914 11.0341C3.90471 10.4062 3.17848 9.51423 2.7531 8.47188C2.7488 8.46135 2.74477 8.45071 2.74102 8.43998C2.64143 8.1551 2.64143 7.84486 2.74102 7.55998C2.74477 7.54924 2.7488 7.53861 2.7531 7.52808C3.17848 6.48573 3.90471 5.59372 4.83914 4.96581ZM7.99967 5.3359C7.13876 5.3359 6.29737 5.59233 5.5828 6.0725C4.87778 6.54625 4.32775 7.21659 4.00075 7.99998C4.32775 8.78337 4.87778 9.45371 5.5828 9.92746C6.29737 10.4076 7.13876 10.6641 7.99967 10.6641C8.86058 10.6641 9.70198 10.4076 10.4166 9.92746C11.1216 9.45371 11.6716 8.78336 11.9986 7.99998C11.6716 7.21659 11.1216 6.54625 10.4166 6.0725C9.70198 5.59233 8.86058 5.3359 7.99967 5.3359ZM6.66634 7.99998C6.66634 7.2636 7.26329 6.66665 7.99967 6.66665C8.73605 6.66665 9.33301 7.2636 9.33301 7.99998C9.33301 8.73636 8.73605 9.33331 7.99967 9.33331C7.26329 9.33331 6.66634 8.73636 6.66634 7.99998ZM1.99967 10.6666C2.36786 10.6666 2.66634 10.9651 2.66634 11.3333V12.6666C2.66634 12.8435 2.73658 13.013 2.8616 13.138C2.98663 13.2631 3.1562 13.3333 3.33301 13.3333H12.6663C12.8432 13.3333 13.0127 13.2631 13.1377 13.138C13.2628 13.013 13.333 12.8435 13.333 12.6666V11.3333C13.333 10.9651 13.6315 10.6666 13.9997 10.6666C14.3679 10.6666 14.6663 10.9651 14.6663 11.3333V12.6666C14.6663 13.1971 14.4556 13.7058 14.0806 14.0809C13.7055 14.4559 13.1968 14.6666 12.6663 14.6666H3.33301C2.80257 14.6666 2.29387 14.4559 1.91879 14.0809C1.54372 13.7058 1.33301 13.1971 1.33301 12.6666V11.3333C1.33301 10.9651 1.63148 10.6666 1.99967 10.6666Z' fill='%23616369'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=warning-triangle]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3'/%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E%0A")}a-icon[shape=webhook]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%0A %3Cpath d='M11.9999 11.3201H8.00659C7.27325 11.3201 6.70659 11.9468 6.35325 12.5868C6.07355 13.1116 5.62644 13.5279 5.083 13.7694C4.53955 14.011 3.93096 14.0639 3.35397 13.9199C2.77697 13.7758 2.26469 13.443 1.89855 12.9744C1.53241 12.5057 1.33344 11.9282 1.33325 11.3335C1.33992 10.8668 1.46659 10.4001 1.71325 10.0001M3.99992 11.3335L6.08659 7.48012C6.43992 6.83345 6.15325 6.02679 5.75325 5.41345C5.56446 5.11152 5.43806 4.77484 5.38149 4.42326C5.32493 4.07168 5.33935 3.71234 5.42391 3.36643C5.50847 3.02052 5.66146 2.69505 5.87384 2.40922C6.08623 2.12339 6.3537 1.88299 6.6605 1.70221C6.96729 1.52143 7.30719 1.40393 7.66013 1.35663C8.01307 1.30934 8.37191 1.33321 8.71548 1.42684C9.05904 1.52048 9.38038 1.68197 9.66052 1.9018C9.94066 2.12163 10.1739 2.39534 10.3466 2.70679M7.99992 4.00012L10.0866 7.82012C10.4399 8.46679 11.2666 8.66679 11.9999 8.66679C12.7072 8.66679 13.3854 8.94774 13.8855 9.44783C14.3856 9.94793 14.6666 10.6262 14.6666 11.3335C14.6666 12.0407 14.3856 12.719 13.8855 13.2191C13.3854 13.7192 12.7072 14.0001 11.9999 14.0001' stroke='%23000' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%0A%3C/svg%3E")}a-icon[shape=workflow]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%0A %3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.33' d='M4.67 7.33V10A1.33 1.33 0 0 0 6 11.33h2.67M3.33 2H6c.74 0 1.33.6 1.33 1.33V6c0 .74-.6 1.33-1.33 1.33H3.33C2.6 7.33 2 6.73 2 6V3.33C2 2.6 2.6 2 3.33 2ZM10 8.67h2.67c.73 0 1.33.6 1.33 1.33v2.67c0 .73-.6 1.33-1.33 1.33H10c-.74 0-1.33-.6-1.33-1.33V10c0-.74.6-1.33 1.33-1.33Z'/%3E%0A%3C/svg%3E%0A")}a-icon[shape=x]{--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4l8 8M12 4l-8 8'/%3E%3C/svg%3E%0A")}}
@@ -1,5 +1,5 @@
1
1
  import type { IconShapes } from '@antadesign/anta';
2
- export declare const ICON_SHAPES: readonly ["arrow-left-to-line", "arrow-left", "arrow-narrow-down", "arrow-narrow-up-down", "arrow-narrow-up", "arrow-right", "arrow-top-right", "asterisk", "book-open", "braces", "bug", "calendar", "case-sensitive", "chat", "check", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-right", "circle-check", "circle-large", "circle", "click", "clock", "cloud-upload", "copy", "corner-down-right", "cube", "dots-vertical", "download", "edit", "education-disk", "external-link", "file-down", "file", "filter", "folder-close", "folder-open", "folder-tree", "github-logo", "gitlab-logo", "hat-glasses", "heart-handshake", "help-disk", "history-tree", "history", "home", "hourglass", "info", "jira-logo", "linear-logo", "link", "list-detail-view", "maximize", "megaphone", "menu", "minimize", "minus", "moon", "more", "move-horizontal", "not-equal", "play", "plus", "pointer", "presentation", "refresh-ccw-dot", "refresh", "regex", "repeat", "rotate-ccw", "rss", "runs-history", "scroll-text", "search-check", "search", "send", "sparkles", "sun", "swatch-book", "table-2", "tag", "text-highlight", "text-initial", "timer", "trash", "trello-logo", "view", "warning-triangle", "webhook", "workflow", "x"];
2
+ export declare const ICON_SHAPES: readonly ["arrow-left-to-line", "arrow-left", "arrow-narrow-down", "arrow-narrow-up-down", "arrow-narrow-up", "arrow-right", "arrow-top-right", "asterisk", "book-open", "braces", "bug", "calendar", "case-sensitive", "chat", "check", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "chevrons-right", "circle-check", "circle-large", "circle", "click", "clock", "cloud-upload", "copy", "corner-down-right", "cube", "dots-vertical", "download", "edit", "education-disk", "external-link", "file-down", "file", "filter", "folder-close", "folder-open", "folder-tree", "github-logo", "gitlab-logo", "hat-glasses", "heart-handshake", "help-disk", "history-tree", "history", "home", "hourglass", "info", "jira-logo", "linear-logo", "link", "list-collapse", "maximize", "megaphone", "menu", "minimize", "minus", "moon", "more", "move-horizontal", "not-equal", "play", "plus", "pointer", "presentation", "refresh-ccw-dot", "refresh", "regex", "repeat", "rotate-ccw", "rss", "runs-history", "scroll-text", "search-check", "search", "send", "sparkles", "sun", "swatch-book", "table-2", "tag", "text-highlight", "text-initial", "timer", "trash", "trello-logo", "view", "warning-triangle", "webhook", "workflow", "x"];
3
3
  export declare const ICON_SYNONYMS: Readonly<Record<string, readonly string[]>>;
4
4
  declare module '@antadesign/anta' {
5
5
  interface IconShapes {
@@ -56,7 +56,7 @@ declare module '@antadesign/anta' {
56
56
  'jira-logo': true;
57
57
  'linear-logo': true;
58
58
  'link': true;
59
- 'list-detail-view': true;
59
+ 'list-collapse': true;
60
60
  'maximize': true;
61
61
  'megaphone': true;
62
62
  'menu': true;
@@ -52,7 +52,7 @@ const ICON_SHAPES = [
52
52
  "jira-logo",
53
53
  "linear-logo",
54
54
  "link",
55
- "list-detail-view",
55
+ "list-collapse",
56
56
  "maximize",
57
57
  "megaphone",
58
58
  "menu",
@@ -139,7 +139,7 @@ const ICON_SYNONYMS = {
139
139
  "braces": ["code", "brackets", "json"],
140
140
  "case-sensitive": ["aA", "capitalize", "case"],
141
141
  "text-highlight": ["mark", "highlight"],
142
- "list-detail-view": ["list", "items"],
142
+ "list-collapse": ["list", "collapse", "expand", "items"],
143
143
  "table-2": ["table", "grid", "data", "spreadsheet", "rows", "columns"],
144
144
  "folder-open": ["directory", "browse"],
145
145
  "folder-close": ["directory"],
@@ -1 +1 @@
1
- @layer anta{a-text{--text-color: var(--text-2);--text-link-color: var(--link-color);--text-link-hover: var(--link-color-hover);display:block;color:var(--text-color);font-size:15px;line-height:20px}a-text[size=small]{font-size:13px;line-height:16px}a-text[size=medium]{font-size:15px;line-height:20px}a-text[size=large]{font-size:17px;line-height:24px}a-text[inline]{display:inline-block}a-text[truncate]{min-width:0}a-text[priority=primary]{--text-color: var(--text-1)}a-text[priority=tertiary]{--text-color: var(--text-3);--text-link-color: currentColor;--text-link-hover: var(--text-2)}a-text[priority=quaternary]{--text-color: var(--text-4);--text-link-color: currentColor;--text-link-hover: var(--text-3)}a-text[priority=quinary]{--text-color: var(--text-5);--text-link-color: currentColor;--text-link-hover: var(--text-4)}a-text[tone=brand]{--text-color: var(--text-2-brand);--text-link-color: currentColor;--text-link-hover: var(--text-1-brand)}a-text[tone=brand][priority=primary]{--text-color: var(--text-1-brand)}a-text[tone=brand][priority=tertiary]{--text-color: var(--text-3-brand);--text-link-hover: var(--text-2-brand)}a-text[tone=brand][priority=quaternary]{--text-color: var(--text-4-brand);--text-link-hover: var(--text-3-brand)}a-text[tone=brand][priority=quinary]{--text-color: var(--text-5-brand);--text-link-hover: var(--text-4-brand)}a-text[tone=success]{--text-color: var(--text-2-success);--text-link-color: currentColor;--text-link-hover: var(--text-1-success)}a-text[tone=success][priority=primary]{--text-color: var(--text-1-success)}a-text[tone=success][priority=tertiary]{--text-color: var(--text-3-success);--text-link-hover: var(--text-2-success)}a-text[tone=success][priority=quaternary]{--text-color: var(--text-4-success);--text-link-hover: var(--text-3-success)}a-text[tone=success][priority=quinary]{--text-color: var(--text-5-success);--text-link-hover: var(--text-4-success)}a-text[tone=critical]{--text-color: var(--text-2-critical);--text-link-color: currentColor;--text-link-hover: var(--text-1-critical)}a-text[tone=critical][priority=primary]{--text-color: var(--text-1-critical)}a-text[tone=critical][priority=tertiary]{--text-color: var(--text-3-critical);--text-link-hover: var(--text-2-critical)}a-text[tone=critical][priority=quaternary]{--text-color: var(--text-4-critical);--text-link-hover: var(--text-3-critical)}a-text[tone=critical][priority=quinary]{--text-color: var(--text-5-critical);--text-link-hover: var(--text-4-critical)}a-text[tone=warning]{--text-color: var(--text-2-warning);--text-link-color: currentColor;--text-link-hover: var(--text-1-warning)}a-text[tone=warning][priority=primary]{--text-color: var(--text-1-warning)}a-text[tone=warning][priority=tertiary]{--text-color: var(--text-3-warning);--text-link-hover: var(--text-2-warning)}a-text[tone=warning][priority=quaternary]{--text-color: var(--text-4-warning);--text-link-hover: var(--text-3-warning)}a-text[tone=warning][priority=quinary]{--text-color: var(--text-5-warning);--text-link-hover: var(--text-4-warning)}a-text[tone=info]{--text-color: var(--text-2-info);--text-link-color: currentColor;--text-link-hover: var(--text-1-info)}a-text[tone=info][priority=primary]{--text-color: var(--text-1-info)}a-text[tone=info][priority=tertiary]{--text-color: var(--text-3-info);--text-link-hover: var(--text-2-info)}a-text[tone=info][priority=quaternary]{--text-color: var(--text-4-info);--text-link-hover: var(--text-3-info)}a-text[tone=info][priority=quinary]{--text-color: var(--text-5-info);--text-link-hover: var(--text-4-info)}a-text a,a-text a:link,a-text a:visited{color:var(--text-link-color)}@media(hover:hover)and (pointer:fine){a-text a:hover{color:var(--text-link-hover);text-decoration-color:var(--text-link-hover)}}}
1
+ @layer anta{a-text{--text-color: var(--text-2);--text-link-color: var(--link-color);--text-link-hover: var(--link-color-hover);display:block;color:var(--text-color);font-size:15px;line-height:20px;font-feature-settings:"ss02","ss05"}a-text[size=small]{font-size:13px;line-height:16px}a-text[size=medium]{font-size:15px;line-height:20px}a-text[size=large]{font-size:17px;line-height:24px}a-text[inline]{display:inline-block}a-text[truncate]{min-width:0}a-text[priority=primary]{--text-color: var(--text-1)}a-text[priority=tertiary]{--text-color: var(--text-3);--text-link-color: currentColor;--text-link-hover: var(--text-2)}a-text[priority=quaternary]{--text-color: var(--text-4);--text-link-color: currentColor;--text-link-hover: var(--text-3)}a-text[priority=quinary]{--text-color: var(--text-5);--text-link-color: currentColor;--text-link-hover: var(--text-4)}a-text[tone=brand]{--text-color: var(--text-2-brand);--text-link-color: currentColor;--text-link-hover: var(--text-1-brand)}a-text[tone=brand][priority=primary]{--text-color: var(--text-1-brand)}a-text[tone=brand][priority=tertiary]{--text-color: var(--text-3-brand);--text-link-hover: var(--text-2-brand)}a-text[tone=brand][priority=quaternary]{--text-color: var(--text-4-brand);--text-link-hover: var(--text-3-brand)}a-text[tone=brand][priority=quinary]{--text-color: var(--text-5-brand);--text-link-hover: var(--text-4-brand)}a-text[tone=success]{--text-color: var(--text-2-success);--text-link-color: currentColor;--text-link-hover: var(--text-1-success)}a-text[tone=success][priority=primary]{--text-color: var(--text-1-success)}a-text[tone=success][priority=tertiary]{--text-color: var(--text-3-success);--text-link-hover: var(--text-2-success)}a-text[tone=success][priority=quaternary]{--text-color: var(--text-4-success);--text-link-hover: var(--text-3-success)}a-text[tone=success][priority=quinary]{--text-color: var(--text-5-success);--text-link-hover: var(--text-4-success)}a-text[tone=critical]{--text-color: var(--text-2-critical);--text-link-color: currentColor;--text-link-hover: var(--text-1-critical)}a-text[tone=critical][priority=primary]{--text-color: var(--text-1-critical)}a-text[tone=critical][priority=tertiary]{--text-color: var(--text-3-critical);--text-link-hover: var(--text-2-critical)}a-text[tone=critical][priority=quaternary]{--text-color: var(--text-4-critical);--text-link-hover: var(--text-3-critical)}a-text[tone=critical][priority=quinary]{--text-color: var(--text-5-critical);--text-link-hover: var(--text-4-critical)}a-text[tone=warning]{--text-color: var(--text-2-warning);--text-link-color: currentColor;--text-link-hover: var(--text-1-warning)}a-text[tone=warning][priority=primary]{--text-color: var(--text-1-warning)}a-text[tone=warning][priority=tertiary]{--text-color: var(--text-3-warning);--text-link-hover: var(--text-2-warning)}a-text[tone=warning][priority=quaternary]{--text-color: var(--text-4-warning);--text-link-hover: var(--text-3-warning)}a-text[tone=warning][priority=quinary]{--text-color: var(--text-5-warning);--text-link-hover: var(--text-4-warning)}a-text[tone=info]{--text-color: var(--text-2-info);--text-link-color: currentColor;--text-link-hover: var(--text-1-info)}a-text[tone=info][priority=primary]{--text-color: var(--text-1-info)}a-text[tone=info][priority=tertiary]{--text-color: var(--text-3-info);--text-link-hover: var(--text-2-info)}a-text[tone=info][priority=quaternary]{--text-color: var(--text-4-info);--text-link-hover: var(--text-3-info)}a-text[tone=info][priority=quinary]{--text-color: var(--text-5-info);--text-link-hover: var(--text-4-info)}a-text a,a-text a:link,a-text a:visited{color:var(--text-link-color)}@media(hover:hover)and (pointer:fine){a-text a:hover{color:var(--text-link-hover);text-decoration-color:var(--text-link-hover)}}}
@@ -1 +1 @@
1
- @layer anta{a-title{display:block;color:var(--text-1);font-weight:584.62;letter-spacing:0;text-wrap:balance}a-title a-icon{transform:translateY(-.05em)}a-title[level="1"]{font-size:28px;line-height:32px;margin-block-start:0;margin-block-end:16px}a-title[level="2"]{font-size:24px;line-height:28px;margin-block-start:32px;margin-block-end:12px}a-title[level="3"]{font-size:20px;line-height:24px;margin-block-start:24px;margin-block-end:12px}a-title[level="4"]{font-size:17px;line-height:20px;margin-block-start:20px;margin-block-end:8px}a-title[level="5"]{font-size:15px;line-height:20px;margin-block-start:16px;margin-block-end:8px}a-title[level="6"]{font-size:13px;line-height:16px;margin-block-start:16px;margin-block-end:4px}a-title[priority=secondary]{color:var(--text-2)}a-title[priority=tertiary]{color:var(--text-3)}a-title[priority=quaternary]{color:var(--text-4)}a-title[priority=quinary]{color:var(--text-5)}a-title[tone=brand]{color:var(--text-1-brand)}a-title[tone=brand][priority=secondary]{color:var(--text-2-brand)}a-title[tone=brand][priority=tertiary]{color:var(--text-3-brand)}a-title[tone=brand][priority=quaternary]{color:var(--text-4-brand)}a-title[tone=brand][priority=quinary]{color:var(--text-5-brand)}a-title[tone=success]{color:var(--text-1-success)}a-title[tone=success][priority=secondary]{color:var(--text-2-success)}a-title[tone=success][priority=tertiary]{color:var(--text-3-success)}a-title[tone=success][priority=quaternary]{color:var(--text-4-success)}a-title[tone=success][priority=quinary]{color:var(--text-5-success)}a-title[tone=critical]{color:var(--text-1-critical)}a-title[tone=critical][priority=secondary]{color:var(--text-2-critical)}a-title[tone=critical][priority=tertiary]{color:var(--text-3-critical)}a-title[tone=critical][priority=quaternary]{color:var(--text-4-critical)}a-title[tone=critical][priority=quinary]{color:var(--text-5-critical)}a-title[tone=warning]{color:var(--text-1-warning)}a-title[tone=warning][priority=secondary]{color:var(--text-2-warning)}a-title[tone=warning][priority=tertiary]{color:var(--text-3-warning)}a-title[tone=warning][priority=quaternary]{color:var(--text-4-warning)}a-title[tone=warning][priority=quinary]{color:var(--text-5-warning)}a-title[tone=info]{color:var(--text-1-info)}a-title[tone=info][priority=secondary]{color:var(--text-2-info)}a-title[tone=info][priority=tertiary]{color:var(--text-3-info)}a-title[tone=info][priority=quaternary]{color:var(--text-4-info)}a-title[tone=info][priority=quinary]{color:var(--text-5-info)}}
1
+ @layer anta{a-title{display:block;color:var(--text-1);font-weight:584.62;letter-spacing:0;text-wrap:balance;font-feature-settings:"ss02","ss05"}a-title a-icon{transform:translateY(-.05em)}a-title[level="1"]{font-size:28px;line-height:32px;margin-block-start:0;margin-block-end:16px}a-title[level="2"]{font-size:24px;line-height:28px;margin-block-start:32px;margin-block-end:12px}a-title[level="3"]{font-size:20px;line-height:24px;margin-block-start:24px;margin-block-end:12px}a-title[level="4"]{font-size:17px;line-height:20px;margin-block-start:20px;margin-block-end:8px}a-title[level="5"]{font-size:15px;line-height:20px;margin-block-start:16px;margin-block-end:8px}a-title[level="6"]{font-size:13px;line-height:16px;margin-block-start:16px;margin-block-end:4px}a-title[priority=secondary]{color:var(--text-2)}a-title[priority=tertiary]{color:var(--text-3)}a-title[priority=quaternary]{color:var(--text-4)}a-title[priority=quinary]{color:var(--text-5)}a-title[tone=brand]{color:var(--text-1-brand)}a-title[tone=brand][priority=secondary]{color:var(--text-2-brand)}a-title[tone=brand][priority=tertiary]{color:var(--text-3-brand)}a-title[tone=brand][priority=quaternary]{color:var(--text-4-brand)}a-title[tone=brand][priority=quinary]{color:var(--text-5-brand)}a-title[tone=success]{color:var(--text-1-success)}a-title[tone=success][priority=secondary]{color:var(--text-2-success)}a-title[tone=success][priority=tertiary]{color:var(--text-3-success)}a-title[tone=success][priority=quaternary]{color:var(--text-4-success)}a-title[tone=success][priority=quinary]{color:var(--text-5-success)}a-title[tone=critical]{color:var(--text-1-critical)}a-title[tone=critical][priority=secondary]{color:var(--text-2-critical)}a-title[tone=critical][priority=tertiary]{color:var(--text-3-critical)}a-title[tone=critical][priority=quaternary]{color:var(--text-4-critical)}a-title[tone=critical][priority=quinary]{color:var(--text-5-critical)}a-title[tone=warning]{color:var(--text-1-warning)}a-title[tone=warning][priority=secondary]{color:var(--text-2-warning)}a-title[tone=warning][priority=tertiary]{color:var(--text-3-warning)}a-title[tone=warning][priority=quaternary]{color:var(--text-4-warning)}a-title[tone=warning][priority=quinary]{color:var(--text-5-warning)}a-title[tone=info]{color:var(--text-1-info)}a-title[tone=info][priority=secondary]{color:var(--text-2-info)}a-title[tone=info][priority=tertiary]{color:var(--text-3-info)}a-title[tone=info][priority=quaternary]{color:var(--text-4-info)}a-title[tone=info][priority=quinary]{color:var(--text-5-info)}}
@@ -4,6 +4,10 @@ export declare class ATooltipElement extends HTMLElementBase {
4
4
  static observedAttributes: string[];
5
5
  /** Shadow-internal popover surface — the only thing we ever mutate. */
6
6
  private container;
7
+ /** Inner bubble inside `.container`. Holds the slot + all visual chrome and
8
+ * carries the proximity (distance-from-anchor) opacity, kept separate from
9
+ * the container's enter/exit/cross-fade opacity. */
10
+ private bubble;
7
11
  private anchor;
8
12
  listening: boolean;
9
13
  private shown;
@@ -36,22 +40,36 @@ export declare class ATooltipElement extends HTMLElementBase {
36
40
  private get view();
37
41
  private get doc();
38
42
  private get isInteractive();
39
- /** Pinned under the anchor (no cursor-following). Interactive implies this
40
- * you can't move into a bubble that's chasing the cursor. */
41
- private get isStatic();
42
- /** Pinned to the anchor for any reason: the `static`/`interactive` attrs, or
43
- * a touch long-press (a finger can't track a following bubble). */
43
+ /** Pinned under the anchor (no cursor-following) the DEFAULT. Following the
44
+ * cursor is opt-in via the `follow` attribute. `interactive` (you can't move
45
+ * into a bubble that chases the cursor) and a touch long-press (a finger
46
+ * can't track one) force pinned regardless of `follow`. */
44
47
  private get isPinned();
45
48
  private get prefersTop();
46
49
  private get delay();
47
50
  private positionToTarget;
48
51
  private positionToMouse;
49
52
  private position;
53
+ /** Opacity for the inner bubble from the cursor's distance to the anchor rect
54
+ * (0 inside the rect): 1 within PROX_NEAR, a linear ramp to 0 at PROX_FAR.
55
+ * Cursor-follow only — drives the "fade as you move away" behaviour. */
56
+ private proximityOpacity;
50
57
  show: (e?: MouseEvent) => void;
51
58
  hide: () => void;
59
+ /** Remove every document / window listener this element binds and stop the
60
+ * fade timer. Used by hide() (after the exit fade) and by cleanup()
61
+ * (immediately). Idempotent. */
62
+ private detachGlobals;
63
+ /** Full, immediate teardown: close the popover now (no fade), detach every
64
+ * listener, clear all timers, release the coordinator slot, reset state.
65
+ * Idempotent. Called from disconnectedCallback, and from the orphan safety
66
+ * net (claimOpen / onDocMove) when the element is gone but
67
+ * disconnectedCallback didn't fire. Not `private` — the module coordinator
68
+ * calls it. */
69
+ cleanup(): void;
52
70
  /** While shown, track the cursor even after it has left the anchor (during
53
- * the close delay). Cursor-following onlystatic/interactive bubbles
54
- * stay pinned. */
71
+ * the close delay). Only runs for `follow` tooltips pinned bubbles
72
+ * (the default, `interactive`, touch) stay put. */
55
73
  private onDocMove;
56
74
  /** Hide after CLOSE_DELAY unless something cancels it first (re-enter, or
57
75
  * another tooltip claiming the slot). Lets the bubble bridge the gap to a
@@ -8,6 +8,9 @@ const DEFAULT_DELAY = 250;
8
8
  const FADE_MS = 150;
9
9
  const GRACE_MS = 300;
10
10
  const CLOSE_DELAY = 120;
11
+ const PROX_NEAR = 10;
12
+ const PROX_FAR = 100;
13
+ const PROX_FADE_MS = 60;
11
14
  const ENTER_TOUCH_DELAY = 500;
12
15
  const LEAVE_TOUCH_DELAY = 1500;
13
16
  const TOUCH_SLOP = 10;
@@ -26,7 +29,10 @@ function clearGrace() {
26
29
  }
27
30
  }
28
31
  function claimOpen(el) {
29
- if (currentOpen && currentOpen !== el) currentOpen.hide();
32
+ if (currentOpen && currentOpen !== el) {
33
+ if (currentOpen.isConnected) currentOpen.hide();
34
+ else currentOpen.cleanup();
35
+ }
30
36
  currentOpen = el;
31
37
  clearGrace();
32
38
  }
@@ -58,6 +64,10 @@ class ATooltipElement extends HTMLElementBase {
58
64
  static observedAttributes = ["delay"];
59
65
  /** Shadow-internal popover surface — the only thing we ever mutate. */
60
66
  container;
67
+ /** Inner bubble inside `.container`. Holds the slot + all visual chrome and
68
+ * carries the proximity (distance-from-anchor) opacity, kept separate from
69
+ * the container's enter/exit/cross-fade opacity. */
70
+ bubble;
61
71
  anchor = null;
62
72
  listening = false;
63
73
  shown = false;
@@ -81,38 +91,47 @@ class ATooltipElement extends HTMLElementBase {
81
91
 
82
92
  .container {
83
93
  --_dur: ${FADE_MS}ms;
84
-
85
94
  position: fixed;
86
95
  left: 0;
87
96
  top: 0;
88
97
  margin: 0;
98
+ padding: 0;
99
+ border: 0;
100
+ background: transparent;
101
+ color: inherit;
102
+ overflow: visible;
103
+ box-sizing: border-box;
104
+ width: fit-content;
105
+ pointer-events: none;
106
+ opacity: 0;
107
+ transition:
108
+ opacity var(--_dur) ease,
109
+ overlay var(--_dur) ease allow-discrete,
110
+ display var(--_dur) ease allow-discrete;
111
+ }
112
+
113
+ .container:popover-open { opacity: 1; }
114
+
115
+ @starting-style {
116
+ .container:popover-open { opacity: 0; }
117
+ }
118
+
119
+ .bubble {
89
120
  box-sizing: border-box;
90
121
  width: fit-content;
91
122
  max-width: var(--tooltip-max-width, min(calc(100vw - 20px), 80ch));
92
123
  max-height: calc(100vh - 20px);
93
124
  overflow: clip;
94
- pointer-events: none;
95
125
  text-align: left;
96
-
97
126
  background: var(--tooltip-bg, Canvas);
98
127
  color: var(--text-3, CanvasText);
99
128
  box-shadow: var(--tooltip-shadow, 0 1px 8px rgba(0, 0, 0, 0.2));
100
129
  -webkit-backdrop-filter: var(--tooltip-backdrop-filter, blur(8px));
101
130
  backdrop-filter: var(--tooltip-backdrop-filter, blur(8px));
102
- padding: 5px 8px;
131
+ padding: var(--tooltip-padding, 4px 8px);
103
132
  border: var(--tooltip-border, none);
104
133
  border-radius: var(--tooltip-radius, 3px);
105
134
  outline: none;
106
-
107
- /* The bubble establishes its own text baseline so inheritable text
108
- properties from the anchor (e.g. a Button's condensed "wdth" 88
109
- axis, its 0.05ch letter-spacing, an uppercase transform, a custom
110
- font) don't bleed into the slotted content. The content is slotted
111
- light DOM, so it inherits these *from this container* \u2014 making this
112
- the single choke point. Values mirror Anta's body text. Consumers
113
- still customise a single tooltip by styling their own content
114
- element directly (a class on the content overrides what it inherits
115
- \u2014 see the Tooltip docs). */
116
135
  font-family: var(--sans-serif, system-ui, sans-serif);
117
136
  font-size: 14px;
118
137
  font-weight: 400;
@@ -126,34 +145,21 @@ class ATooltipElement extends HTMLElementBase {
126
145
  white-space: break-spaces;
127
146
  word-break: break-word;
128
147
  overflow-wrap: break-word;
129
-
130
- /* Clean enter/exit fade. allow-discrete keeps the bubble rendered
131
- through its fade-out after hidePopover(), and @starting-style
132
- gives every open a from-opacity:0 \u2014 so the first paint at a
133
- not-yet-computed transform is invisible (no flash at a stale
134
- spot), and re-appearing is always clean. */
135
- opacity: 0;
136
- transition:
137
- opacity var(--_dur) ease,
138
- overlay var(--_dur) ease allow-discrete,
139
- display var(--_dur) ease allow-discrete;
148
+ opacity: 1;
149
+ transition: opacity ${PROX_FADE_MS}ms linear;
140
150
  }
141
151
 
142
- .container:popover-open { opacity: 1; }
143
-
144
- @starting-style {
145
- .container:popover-open { opacity: 0; }
146
- }
147
-
148
- /* Interactive tooltips accept pointer events so their content (links,
149
- buttons) is clickable; the default click-through bubble does not. */
150
152
  :host([interactive]) .container { pointer-events: auto; }
151
153
  `;
152
154
  this.container = document.createElement("div");
153
155
  this.container.className = "container";
154
156
  this.container.setAttribute("popover", "manual");
155
157
  this.container.setAttribute("role", "tooltip");
156
- this.container.append(document.createElement("slot"));
158
+ this.bubble = document.createElement("div");
159
+ this.bubble.className = "bubble";
160
+ this.bubble.setAttribute("part", "bubble");
161
+ this.bubble.append(document.createElement("slot"));
162
+ this.container.append(this.bubble);
157
163
  this.container.addEventListener("mouseenter", () => {
158
164
  if (this.isInteractive) this.cancelHide();
159
165
  });
@@ -170,17 +176,7 @@ class ATooltipElement extends HTMLElementBase {
170
176
  lazyObserver?.observe(parent);
171
177
  }
172
178
  disconnectedCallback() {
173
- this.hide();
174
- if (this.fadeTimer !== void 0) {
175
- clearTimeout(this.fadeTimer);
176
- this.fadeTimer = void 0;
177
- }
178
- this.fading = false;
179
- if (this.docMoveBound) {
180
- this.doc.removeEventListener("mousemove", this.onDocMove);
181
- this.docMoveBound = false;
182
- }
183
- this.teardownListeners();
179
+ this.cleanup();
184
180
  if (this.anchor) {
185
181
  if (anchorToTooltip.get(this.anchor) === this) {
186
182
  anchorToTooltip.delete(this.anchor);
@@ -215,15 +211,13 @@ class ATooltipElement extends HTMLElementBase {
215
211
  get isInteractive() {
216
212
  return this.hasAttribute("interactive");
217
213
  }
218
- /** Pinned under the anchor (no cursor-following). Interactive implies this
219
- * you can't move into a bubble that's chasing the cursor. */
220
- get isStatic() {
221
- return this.hasAttribute("static") || this.isInteractive;
222
- }
223
- /** Pinned to the anchor for any reason: the `static`/`interactive` attrs, or
224
- * a touch long-press (a finger can't track a following bubble). */
214
+ /** Pinned under the anchor (no cursor-following) the DEFAULT. Following the
215
+ * cursor is opt-in via the `follow` attribute. `interactive` (you can't move
216
+ * into a bubble that chases the cursor) and a touch long-press (a finger
217
+ * can't track one) force pinned regardless of `follow`. */
225
218
  get isPinned() {
226
- return this.isStatic || this.touchOpen;
219
+ if (this.isInteractive || this.touchOpen) return true;
220
+ return !this.hasAttribute("follow");
227
221
  }
228
222
  get prefersTop() {
229
223
  return this.getAttribute("placement") === "top";
@@ -284,6 +278,19 @@ class ATooltipElement extends HTMLElementBase {
284
278
  if (!this.isPinned && e) this.positionToMouse(e);
285
279
  else this.positionToTarget();
286
280
  }
281
+ /** Opacity for the inner bubble from the cursor's distance to the anchor rect
282
+ * (0 inside the rect): 1 within PROX_NEAR, a linear ramp to 0 at PROX_FAR.
283
+ * Cursor-follow only — drives the "fade as you move away" behaviour. */
284
+ proximityOpacity(e) {
285
+ if (!this.anchor) return 1;
286
+ const r = this.anchor.getBoundingClientRect();
287
+ const dx = Math.max(r.left - e.clientX, 0, e.clientX - r.right);
288
+ const dy = Math.max(r.top - e.clientY, 0, e.clientY - r.bottom);
289
+ const dist = Math.hypot(dx, dy);
290
+ if (dist <= PROX_NEAR) return 1;
291
+ if (dist >= PROX_FAR) return 0;
292
+ return 1 - (dist - PROX_NEAR) / (PROX_FAR - PROX_NEAR);
293
+ }
287
294
  // --- show / hide ---
288
295
  show = (e) => {
289
296
  if (!this.anchor) return;
@@ -295,6 +302,7 @@ class ATooltipElement extends HTMLElementBase {
295
302
  if (!this.shown) {
296
303
  this.shown = true;
297
304
  this.fading = false;
305
+ this.bubble.style.opacity = "1";
298
306
  if (this.fadeTimer !== void 0) {
299
307
  clearTimeout(this.fadeTimer);
300
308
  this.fadeTimer = void 0;
@@ -315,28 +323,65 @@ class ATooltipElement extends HTMLElementBase {
315
323
  this.shown = false;
316
324
  this.touchOpen = false;
317
325
  this.container.hidePopover();
318
- this.view.removeEventListener("scroll", this.hide, { capture: true });
319
- this.doc.removeEventListener("keydown", this.onKeyDown, true);
320
326
  this.fading = true;
321
327
  if (this.fadeTimer !== void 0) clearTimeout(this.fadeTimer);
322
- this.fadeTimer = setTimeout(() => {
323
- this.fading = false;
324
- this.fadeTimer = void 0;
325
- if (this.docMoveBound) {
326
- this.doc.removeEventListener("mousemove", this.onDocMove);
327
- this.docMoveBound = false;
328
- }
329
- }, FADE_MS);
328
+ this.fadeTimer = setTimeout(() => this.detachGlobals(), FADE_MS);
330
329
  releaseOpen(this);
331
330
  };
331
+ /** Remove every document / window listener this element binds and stop the
332
+ * fade timer. Used by hide() (after the exit fade) and by cleanup()
333
+ * (immediately). Idempotent. */
334
+ detachGlobals() {
335
+ if (this.fadeTimer !== void 0) {
336
+ clearTimeout(this.fadeTimer);
337
+ this.fadeTimer = void 0;
338
+ }
339
+ this.fading = false;
340
+ this.view.removeEventListener("scroll", this.hide, { capture: true });
341
+ this.doc.removeEventListener("keydown", this.onKeyDown, true);
342
+ if (this.docMoveBound) {
343
+ this.doc.removeEventListener("mousemove", this.onDocMove);
344
+ this.docMoveBound = false;
345
+ }
346
+ }
347
+ /** Full, immediate teardown: close the popover now (no fade), detach every
348
+ * listener, clear all timers, release the coordinator slot, reset state.
349
+ * Idempotent. Called from disconnectedCallback, and from the orphan safety
350
+ * net (claimOpen / onDocMove) when the element is gone but
351
+ * disconnectedCallback didn't fire. Not `private` — the module coordinator
352
+ * calls it. */
353
+ cleanup() {
354
+ this.cancelHide();
355
+ if (this.shown) {
356
+ this.shown = false;
357
+ this.touchOpen = false;
358
+ if (this.container.matches(":popover-open")) this.container.hidePopover();
359
+ }
360
+ this.detachGlobals();
361
+ this.teardownListeners();
362
+ releaseOpen(this);
363
+ this.bubble.style.opacity = "";
364
+ }
332
365
  /** While shown, track the cursor even after it has left the anchor (during
333
- * the close delay). Cursor-following onlystatic/interactive bubbles
334
- * stay pinned. */
366
+ * the close delay). Only runs for `follow` tooltips pinned bubbles
367
+ * (the default, `interactive`, touch) stay put. */
335
368
  onDocMove = (e) => {
336
- if ((this.shown || this.fading) && !this.isPinned) {
337
- this.lastMouse = e;
338
- this.positionToMouse(e);
369
+ if (!this.isConnected) {
370
+ this.cleanup();
371
+ return;
372
+ }
373
+ if (!(this.shown || this.fading) || this.isPinned) return;
374
+ this.lastMouse = e;
375
+ const o = this.proximityOpacity(e);
376
+ if (o === 0) {
377
+ this.bubble.style.transition = "none";
378
+ this.bubble.style.opacity = "0";
379
+ if (this.shown) this.hide();
380
+ return;
339
381
  }
382
+ this.positionToMouse(e);
383
+ this.bubble.style.transition = "";
384
+ this.bubble.style.opacity = String(o);
340
385
  };
341
386
  /** Hide after CLOSE_DELAY unless something cancels it first (re-enter, or
342
387
  * another tooltip claiming the slot). Lets the bubble bridge the gap to a
@@ -163,11 +163,11 @@ export interface ATooltipAttributes extends BaseAttributes {
163
163
  delay?: number | string;
164
164
  /** Preferred side; auto-flips when there's no room. Defaults to `'bottom'`. */
165
165
  placement?: 'top' | 'bottom';
166
- /** Pin under the anchor instead of following the cursor. Presence-based
167
- * (`''` on, omit off). */
168
- static?: boolean | '';
166
+ /** Follow the cursor instead of pinning under the anchor (pinned is the
167
+ * default). Presence-based (`''` on, omit off). */
168
+ follow?: boolean | '';
169
169
  /** Make the bubble hoverable/clickable (pointer events on, stays open while
170
- * hovered). Implies `static`. Presence-based (`''` on, omit off). */
170
+ * hovered). Always pinned. Presence-based (`''` on, omit off). */
171
171
  interactive?: boolean | '';
172
172
  /** HTML `id`. */
173
173
  id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antadesign/anta",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",