duck-dev-lib 0.0.22 → 0.0.23

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.
@@ -1 +1 @@
1
- {"version":3,"file":"duck-dev-lib.mjs","sources":["../../../projects/duck-dev-lib/src/lib/shared/enum/button-enum.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-button/button-blur-lift/button-blur-lift.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-button/button-blur-lift/button-blur-lift.html","../../../projects/duck-dev-lib/src/lib/duck-dev-button/button-glide-over/button-glide-over.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-button/button-glide-over/button-glide-over.html","../../../projects/duck-dev-lib/src/lib/duck-dev-button/button-flip/button-flip.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-button/button-flip/button-flip.html","../../../projects/duck-dev-lib/src/lib/duck-dev-button/button-casper/button-casper.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-button/button-casper/button-casper.html","../../../projects/duck-dev-lib/src/lib/duck-dev-loader/loader-text-bubble/loader-loading-bubble.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-loader/loader-text-bubble/loader-loading-bubble.html","../../../projects/duck-dev-lib/src/lib/duck-dev-loader/loader-classic/loader-classic.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-loader/loader-classic/loader-classic.html","../../../projects/duck-dev-lib/src/lib/duck-dev-loader/loader-three-dots/loader-three-dots.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-loader/loader-three-dots/loader-three-dots.html","../../../projects/duck-dev-lib/src/lib/duck-dev-tab/duck-dev-horizontal-tab/duck-dev-tab.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-tab/duck-dev-horizontal-tab/duck-dev-tab.html","../../../projects/duck-dev-lib/src/lib/duck-dev-tab/duck-dev-vertical-tab/duck-dev-tab-vertical.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-tab/duck-dev-vertical-tab/duck-dev-tab-vertical.html","../../../projects/duck-dev-lib/src/lib/main-documentation-page/button-block/button-block.ts","../../../projects/duck-dev-lib/src/lib/main-documentation-page/button-block/button-block.html","../../../projects/duck-dev-lib/src/lib/main-documentation-page/loader-block/loader-block.ts","../../../projects/duck-dev-lib/src/lib/main-documentation-page/loader-block/loader-block.html","../../../projects/duck-dev-lib/src/lib/main-documentation-page/tabs-block/tabs-block.ts","../../../projects/duck-dev-lib/src/lib/main-documentation-page/tabs-block/tabs-block.html","../../../projects/duck-dev-lib/src/lib/svg-source-code/icons/icons.ts","../../../projects/duck-dev-lib/src/lib/svg-source-code/icons/index.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-input/duck-dev-input/duck-dev-input.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-input/duck-dev-input/duck-dev-input.html","../../../projects/duck-dev-lib/src/lib/duck-dev-notification/notification.service.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-svg-block/duck-dev-svg-block.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-svg-block/duck-dev-svg-block.html","../../../projects/duck-dev-lib/src/lib/main-documentation-page/input-block/input-block.ts","../../../projects/duck-dev-lib/src/lib/main-documentation-page/input-block/input-block.html","../../../projects/duck-dev-lib/src/lib/main-documentation-page/notification-block/notification-block.ts","../../../projects/duck-dev-lib/src/lib/main-documentation-page/notification-block/notification-block.html","../../../projects/duck-dev-lib/src/lib/duck-dev-icon/duck-dev-icon.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-notification/duck-dev-notification/duck-dev-notification.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-notification/duck-dev-notification/duck-dev-notification.html","../../../projects/duck-dev-lib/src/lib/duck-dev-notification/duck-dev-notification/duck-dev-notification-container.ts","../../../projects/duck-dev-lib/src/lib/main-documentation-page/main-documentation-page.ts","../../../projects/duck-dev-lib/src/lib/main-documentation-page/main-documentation-page.html","../../../projects/duck-dev-lib/src/lib/translation.ts","../../../projects/duck-dev-lib/src/public-api.ts","../../../projects/duck-dev-lib/src/duck-dev-lib.ts"],"sourcesContent":["export enum ButtonEnumColor {\n Orange = 'orange',\n Dark = 'dark',\n White = 'white',\n Gray = 'gray',\n Violet = 'violet'\n}\n","import {Component, computed, input} from '@angular/core';\nimport {ButtonEnumColor} from '../../shared';\n\n@Component({\n selector: 'duck-dev-button-blur-lift',\n imports: [],\n templateUrl: './button-blur-lift.html',\n styleUrl: './button-blur-lift.scss',\n})\nexport class ButtonBlurLift {\n public readonly textButton = input.required<string>();\n public readonly colorButton = input<ButtonEnumColor>(ButtonEnumColor.White);\n public readonly padding = input<string | null>(null);\n public readonly hoverText = input<string | null>(null);\n\n protected readonly buttonStyle = computed(() => {\n const color = this.colorButton();\n let bgColor, borderColor, hoverColor, activeColor, textColor, focusShadow;\n\n switch (color) {\n case ButtonEnumColor.Violet:\n bgColor = 'var(--dd-base-secondary)';\n hoverColor = 'var(--dd-base-secondary)';\n activeColor = 'var(--dd-base-secondary)';\n textColor = 'var(--dd-gray-0)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-secondary)';\n break;\n\n case ButtonEnumColor.Orange:\n bgColor = 'var(--dd-base-accent-orange)';\n hoverColor = 'var(--dd-base-active-orange)';\n activeColor = 'var(--dd-base-accent-yellow)';\n textColor = 'var(--dd-gray-0)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-active-orange)';\n break;\n\n case ButtonEnumColor.White:\n bgColor = 'var(--dd-base-0)';\n hoverColor = 'var(--dd-base-100)';\n activeColor = 'var(--dd-base-200)';\n textColor = 'var(--dd-base-600)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-300)';\n break;\n\n case ButtonEnumColor.Gray:\n bgColor = 'var(--dd-base-100)';\n hoverColor = 'var(--dd-base-200)';\n activeColor = 'var(--dd-base-200)';\n textColor = 'var(--dd-base-600)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-400)';\n break;\n\n case ButtonEnumColor.Dark:\n bgColor = 'var(--dd-base-600)';\n hoverColor = 'var(--dd-base-400)';\n activeColor = 'var(--dd-base-300)';\n textColor = 'var(--dd-base-0)';\n focusShadow = '0 0 0 3px rgba(18, 19, 21, 0.3)';\n borderColor = 'var(--dd-base-600)';\n break;\n\n default:\n bgColor = 'var(--dd-base-0)';\n hoverColor = 'var(--dd-base-100)';\n activeColor = 'var(--dd-base-200)';\n textColor = 'var(--dd-base-600)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-300)';\n break;\n }\n\n return {\n '--btn-bg-color': bgColor,\n '--btn-border-color': borderColor,\n '--btn-padding': this.padding() || '10px 24px',\n '--btn-hover-color': hoverColor,\n '--btn-active-color': activeColor,\n '--btn-text-color': textColor,\n '--btn-focus-shadow': focusShadow\n };\n });\n\n protected readonly textLetters = computed(() => {\n return this.textButton()\n .split('')\n .map((char) => (char === ' ' ? '\\u00A0' : char));\n });\n\n protected readonly hoverTextLetters = computed(() => {\n const hover = this.hoverText();\n\n return hover ? hover.split('').map((char) => (char === ' ' ? '\\u00A0' : char)) : [];\n });\n}\n","<button\n type=\"button\"\n class=\"rounded-button rounded-button--blur-lift\"\n [style]=\"buttonStyle()\"\n>\n <span class=\"button-blur-lift__screen-reader-text\">{{ textButton() }}</span>\n <span\n aria-hidden=\"true\"\n class=\"button-blur-lift__container\"\n >\n <span class=\"button-blur-lift__text\">\n @for (letter of textLetters(); track $index) {\n <span\n [style.--index-outer]=\"$index\"\n class=\"button-blur-lift__letter-outer\"\n >\n <span\n [style.--index]=\"2\"\n class=\"button-blur-lift__letter\"\n >\n {{ letter }}\n </span>\n <span\n [style.--index]=\"1\"\n class=\"button-blur-lift__letter\"\n >\n {{ letter }}\n </span>\n <span\n [style.--index]=\"0\"\n class=\"button-blur-lift__letter\"\n >\n {{ letter }}\n </span>\n </span>\n }\n </span>\n\n @if (hoverText()) {\n <div class=\"button-blur-lift__hover-text\">\n @for (letter of hoverTextLetters(); track $index) {\n <span\n [style.--index-outer]=\"$index\"\n class=\"button-blur-lift__hover-letter-outer\"\n >\n <span\n [style.--index]=\"2\"\n class=\"button-blur-lift__hover-letter\"\n >\n {{ letter }}\n </span>\n <span\n [style.--index]=\"1\"\n class=\"button-blur-lift__hover-letter\"\n >\n {{ letter }}\n </span>\n <span\n [style.--index]=\"0\"\n class=\"button-blur-lift__hover-letter\"\n >\n {{ letter }}\n </span>\n </span>\n }\n </div>\n }\n </span>\n <span class=\"button-blur-lift__background\"></span>\n</button>\n","import {Component, computed, input} from '@angular/core';\nimport {ButtonEnumColor} from '../../shared';\n\n@Component({\n selector: 'duck-dev-button-glide-over',\n standalone: true,\n imports: [],\n templateUrl: './button-glide-over.html',\n styleUrl: './button-glide-over.scss',\n})\nexport class ButtonGlideOver {\n public readonly textButton = input.required<string>();\n public readonly colorButton = input<ButtonEnumColor>(ButtonEnumColor.White);\n public readonly padding = input<string | null>(null);\n\n protected readonly buttonStyle = computed(() => {\n const color = this.colorButton();\n let bgColor, borderColor, hoverColor, activeColor, textColor, focusShadow;\n\n switch (color) {\n case ButtonEnumColor.Violet:\n bgColor = 'var(--dd-base-secondary)';\n hoverColor = 'var(--dd-base-secondary)';\n activeColor = 'var(--dd-base-secondary)';\n textColor = 'var(--dd-gray-0)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-secondary)';\n break;\n\n case ButtonEnumColor.Orange:\n bgColor = 'var(--dd-base-accent-orange)';\n hoverColor = 'var(--dd-base-active-orange)';\n activeColor = 'var(--dd-base-accent-yellow)';\n textColor = 'var(--dd-gray-0)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-active-orange)';\n break;\n\n case ButtonEnumColor.White:\n bgColor = 'var(--dd-base-0)';\n hoverColor = 'var(--dd-base-100)';\n activeColor = 'var(--dd-base-200)';\n textColor = 'var(--dd-base-600)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-300)';\n break;\n\n case ButtonEnumColor.Gray:\n bgColor = 'var(--dd-base-100)';\n hoverColor = 'var(--dd-base-200)';\n activeColor = 'var(--dd-base-200)';\n textColor = 'var(--dd-base-600)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-400)';\n break;\n\n case ButtonEnumColor.Dark:\n bgColor = 'var(--dd-base-600)';\n hoverColor = 'var(--dd-base-400)';\n activeColor = 'var(--dd-base-300)';\n textColor = 'var(--dd-base-0)';\n focusShadow = '0 0 0 3px rgba(18, 19, 21, 0.3)';\n borderColor = 'var(--dd-base-600)';\n break;\n\n default:\n bgColor = 'var(--dd-base-0)';\n hoverColor = 'var(--dd-base-100)';\n activeColor = 'var(--dd-base-200)';\n textColor = 'var(--dd-base-600)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-300)';\n break;\n }\n\n return {\n '--btn-bg-color': bgColor,\n '--btn-border-color': borderColor,\n '--btn-padding': this.padding() || '10px 24px',\n '--btn-hover-color': hoverColor,\n '--btn-active-color': activeColor,\n '--btn-text-color': textColor,\n '--btn-focus-shadow': focusShadow\n };\n });\n}\n","<button\n type=\"button\"\n class=\"rounded-button rounded-button--glide-over\"\n [style]=\"buttonStyle()\"\n>\n<span class=\"button-glide-over__container\">\n <span class=\"button-glide-over__icon is-first\">\n <svg\n class=\"button-glide-over__icon-item\"\n style=\"--index: 3\"\n viewBox=\"0 0 256 256\"\n >\n <path\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"24\"\n d=\"M40 128h176M144 56l72 72-72 72\"\n />\n </svg>\n </span>\n\n <span class=\"button-glide-over__text\">{{ textButton() }}</span>\n\n <span class=\"button-glide-over__icon is-last\">\n <svg\n class=\"button-glide-over__icon-item\"\n style=\"--index: 0\"\n viewBox=\"0 0 256 256\"\n >\n <path\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"20\"\n d=\"M40 128h176M144 56l72 72-72 72\"\n />\n </svg>\n </span>\n </span>\n\n<span class=\"button-glide-over__background\"></span>\n</button>\n","import {Component, computed, input} from '@angular/core';\nimport {ButtonEnumColor} from '../../shared';\n\n@Component({\n selector: 'duck-dev-button-flip',\n standalone: true,\n templateUrl: './button-flip.html',\n styleUrl: './button-flip.scss',\n})\nexport class ButtonFlip {\n public readonly text = input<string>('Color-Flip');\n public readonly disabled = input<boolean>(false);\n public readonly arrowIndex = input<number>(0);\n public readonly direction = input<'previous' | 'next'>();\n public readonly colorButton = input<ButtonEnumColor>(ButtonEnumColor.White);\n\n protected readonly buttonStyle = computed(() => {\n const color = this.colorButton();\n let textColor: string, bgColor: string;\n\n switch (color) {\n case ButtonEnumColor.Violet:\n textColor = 'var(--dd-gray-0)';\n bgColor = 'var(--dd-base-secondary)';\n break;\n case ButtonEnumColor.Orange:\n textColor = 'var(--dd-gray-0)';\n bgColor = 'var(--dd-base-accent-orange)';\n break;\n case ButtonEnumColor.White:\n textColor = 'var(--dd-base-600)';\n bgColor = 'var(--dd-base-0)';\n break;\n case ButtonEnumColor.Gray:\n textColor = 'var(--dd-base-600)';\n bgColor = 'var(--dd-base-100)';\n break;\n case ButtonEnumColor.Dark:\n textColor = 'var(--dd-base-0)';\n bgColor = 'var(--dd-base-600)';\n break;\n default:\n textColor = 'var(--dd-base-600)';\n bgColor = 'var(--dd-base-0)';\n break;\n }\n\n return {\n '--btn-text-color': textColor,\n '--btn-bg-color': bgColor,\n } as { [key: string]: string };\n });\n}\n","<div\n class=\"button-color-flip w-inline-block\"\n [class.disabled]=\"disabled()\"\n [class.is-prev]=\"direction() === 'previous'\"\n [class.is-next]=\"direction() === 'next' || !direction()\"\n [attr.aria-disabled]=\"disabled()\"\n role=\"button\"\n tabindex=\"0\"\n>\n <span class=\"button-color-flip_inner\"\n [style.--btn-bg-color]=\"buttonStyle()['--btn-bg-color']\"\n [style.--btn-text-color]=\"buttonStyle()['--btn-text-color']\">\n <span [attr.data-text]=\"text()\" class=\"button-color-flip_back\"></span>\n <span class=\"button-color-flip_front\">\n <span class=\"button-color-flip_bg\"></span>\n <span class=\"button-color-flip_text\">{{ text() }}</span>\n </span>\n </span>\n\n <span class=\"button-color-flip_arrow-carrier\" aria-hidden=\"true\">\n <span [style.--index]=\"arrowIndex()\" class=\"button-color-flip_arrow\">{{ direction() === 'previous' ? '←' : '→' }}</span>\n </span>\n</div>\n","import {Component, computed, input} from '@angular/core';\nimport {ButtonEnumColor} from '../../shared';\nimport {NgStyle} from '@angular/common';\n\n@Component({\n selector: 'duck-dev-button-casper',\n standalone: true,\n imports: [\n NgStyle\n ],\n templateUrl: './button-casper.html',\n styleUrl: './button-casper.scss',\n})\nexport class ButtonCasper {\n public readonly isDisabled = input<boolean>(false);\n public readonly text = input<string>('empty');\n public readonly colorButton = input<ButtonEnumColor>(ButtonEnumColor.White);\n\n protected readonly buttonStyle = computed(() => {\n const color = this.colorButton();\n let baseColor: string;\n let accentColor: string;\n\n switch (color) {\n case ButtonEnumColor.Violet:\n baseColor = 'var(--dd-base-secondary)';\n accentColor = 'var(--dd-gray-0)';\n break;\n case ButtonEnumColor.Orange:\n baseColor = 'var(--dd-base-accent-orange)';\n accentColor = 'var(--dd-gray-0)';\n break;\n case ButtonEnumColor.White:\n baseColor = 'var(--dd-base-600)';\n accentColor = 'var(--dd-base-0)';\n break;\n case ButtonEnumColor.Gray:\n baseColor = 'var(--dd-base-300)';\n accentColor = 'var(--dd-base-600)';\n break;\n case ButtonEnumColor.Dark:\n baseColor = 'var(--dd-base-600)';\n accentColor = 'var(--dd-base-0)';\n break;\n default:\n baseColor = 'var(--dd-base-600)';\n accentColor = 'var(--dd-base-0)';\n break;\n }\n\n return {\n '--color': baseColor,\n '--color-accent': accentColor,\n } as { [key: string]: string };\n });\n}\n","<button\n class=\"button-default is-casper\"\n [disabled]=\"isDisabled()\"\n [ngStyle]=\"buttonStyle()\"\n>\n <span class=\"content\">\n {{ text() }}\n </span>\n</button>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'duck-dev-loader-loading-bubble',\n imports: [],\n templateUrl: './loader-loading-bubble.html',\n styleUrl: './loader-loading-bubble.scss',\n})\nexport class LoaderLoadingBubble {\n\n}\n","<div class=\"container\">\n <div class=\"main\">\n <span class=\"loader\">Load&nbsp;ng</span>\n </div>\n</div>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'duck-dev-loader-classic',\n imports: [],\n templateUrl: './loader-classic.html',\n styleUrl: './loader-classic.scss',\n})\nexport class LoaderClassic {}\n","<span class=\"loader\"></span>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'duck-dev-loader-three-dots',\n imports: [],\n templateUrl: './loader-three-dots.html',\n styleUrl: './loader-three-dots.scss',\n})\nexport class LoaderThreeDots {}\n","<span class=\"loader\"></span>\n","import { Component, signal, computed, input, output } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nexport interface DuckDevTabItem {\n id: string;\n label: string;\n content?: any;\n}\n\n@Component({\n selector: 'duck-dev-tab',\n standalone: true,\n imports: [CommonModule],\n templateUrl: './duck-dev-tab.html',\n styleUrl: './duck-dev-tab.scss',\n})\nexport class DuckDevTab {\n public tabs = input<DuckDevTabItem[]>([]);\n public tabChange = output<DuckDevTabItem>();\n\n public readonly activeTabIndex = signal<number>(0);\n public readonly animationDirection = signal<'left' | 'right'>('right');\n\n public activeTab = computed(() => this.tabs()[this.activeTabIndex()]);\n\n protected selectTab(index: number): void {\n if (index === this.activeTabIndex()) {\n return;\n }\n\n this.animationDirection.set(index > this.activeTabIndex() ? 'right' : 'left');\n this.activeTabIndex.set(index);\n this.tabChange.emit(this.tabs()[index]);\n }\n\n protected isActive(index: number): boolean {\n return this.activeTabIndex() === index;\n }\n}\n","<div class=\"duck-dev-tab\">\n <div class=\"tab-header\">\n @for (tab of tabs(); track tab.id; let i = $index) {\n <button\n class=\"tab-button\"\n [class.active]=\"isActive(i)\"\n (click)=\"selectTab(i)\"\n type=\"button\"\n >\n {{ tab.label }}\n </button>\n }\n <div\n class=\"tab-indicator\"\n [style.transform]=\"'translateX(' + (activeTabIndex() * 100) + '%)'\"\n [style.width]=\"'calc(100% / ' + tabs().length + ')'\"\n ></div>\n </div>\n\n <div class=\"tab-content-wrapper\">\n <div\n class=\"tab-content\"\n [class.slide-left]=\"animationDirection() === 'left'\"\n [class.slide-right]=\"animationDirection() === 'right'\"\n [attr.data-active-index]=\"activeTabIndex()\"\n >\n <ng-content></ng-content>\n </div>\n </div>\n</div>\n","import { Component, signal, computed, input, output, viewChildren, effect, AfterViewInit, ElementRef } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nexport interface DuckDevTabVerticalItem {\n id: string;\n label: string;\n icon?: string;\n content?: any;\n}\n\n@Component({\n selector: 'duck-dev-tab-vertical',\n standalone: true,\n imports: [CommonModule],\n templateUrl: './duck-dev-tab-vertical.html',\n styleUrl: './duck-dev-tab-vertical.scss',\n})\nexport class DuckDevTabVertical {\n public tabs = input<DuckDevTabVerticalItem[]>([]);\n public tabChange = output<DuckDevTabVerticalItem>();\n\n public readonly activeTabIndex = signal<number>(0);\n public readonly animationDirection = signal<'up' | 'down' | 'none'>('none');\n public readonly animationKey = signal<number>(0);\n public readonly indicatorTop = signal<number>(0);\n public readonly indicatorHeight = signal<number>(0);\n\n public activeTab = computed(() => this.tabs()[this.activeTabIndex()]);\n\n public tabButtons = viewChildren<ElementRef<HTMLButtonElement>>('tabButton');\n\n constructor() {\n effect(() => {\n const buttons = this.tabButtons();\n const activeIndex = this.activeTabIndex();\n\n if (buttons && buttons.length > activeIndex) {\n const activeButton = buttons[activeIndex].nativeElement;\n this.indicatorTop.set(activeButton.offsetTop);\n this.indicatorHeight.set(activeButton.offsetHeight);\n }\n });\n }\n\n protected selectTab(index: number): void {\n if (index === this.activeTabIndex()) {\n return;\n }\n\n const direction = index > this.activeTabIndex() ? 'down' : 'up';\n\n // Reset animation to 'none' first to ensure it retriggers\n this.animationDirection.set('none');\n\n // Use requestAnimationFrame to ensure the reset is applied before setting new direction\n requestAnimationFrame(() => {\n this.animationDirection.set(direction);\n this.activeTabIndex.set(index);\n this.animationKey.set(this.animationKey() + 1);\n this.tabChange.emit(this.tabs()[index]);\n });\n }\n\n protected isActive(index: number): boolean {\n return this.activeTabIndex() === index;\n }\n}\n","<div class=\"duck-dev-tab-vertical\">\n <div class=\"tab-sidebar\">\n @for (tab of tabs(); track tab.id; let i = $index) {\n <button\n #tabButton\n class=\"tab-button\"\n [class.active]=\"isActive(i)\"\n (click)=\"selectTab(i)\"\n type=\"button\"\n >\n @if (tab.icon) {\n <span class=\"tab-icon\" [innerHTML]=\"tab.icon\"></span>\n }\n <span class=\"tab-label\">{{ tab.label }}</span>\n </button>\n }\n <div\n class=\"tab-indicator\"\n [style.top.px]=\"indicatorTop()\"\n [style.height.px]=\"indicatorHeight()\"\n ></div>\n </div>\n\n <div class=\"tab-content-wrapper\">\n <div\n class=\"tab-content\"\n [class.slide-up]=\"animationDirection() === 'up'\"\n [class.slide-down]=\"animationDirection() === 'down'\"\n [attr.data-active-index]=\"activeTabIndex()\"\n [attr.data-animation-key]=\"animationKey()\"\n >\n <ng-content></ng-content>\n </div>\n </div>\n</div>\n","import { Component } from '@angular/core';\nimport {ButtonBlurLift, ButtonGlideOver, ButtonFlip, ButtonCasper} from \"../../duck-dev-button\";\nimport { ButtonEnumColor } from '../../shared';\nimport { TranslocoPipe } from '@jsverse/transloco';\n\n\n@Component({\n selector: 'app-button-block',\n imports: [\n ButtonBlurLift,\n ButtonGlideOver,\n TranslocoPipe,\n ButtonFlip,\n ButtonCasper\n ],\n templateUrl: './button-block.html',\n styleUrl: './button-block.scss',\n})\nexport class ButtonBlock {\n protected readonly colorViolet = ButtonEnumColor.Violet;\n protected readonly colorOrange = ButtonEnumColor.Orange;\n protected readonly colorWhite = ButtonEnumColor.White;\n protected readonly colorGray = ButtonEnumColor.Gray;\n protected readonly colorDark = ButtonEnumColor.Dark;\n}\n","<div class=\"demo-container\">\n <h1>{{ 'buttons.title' | transloco }}</h1>\n\n <!-- Button Glide Over -->\n <section class=\"component-section\">\n <h2>{{ 'buttons.glideOver.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'buttons.glideOver.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'buttons.glideOver.usage' | transloco }}</h3>\n <pre><code>&lt;duck-dev-button-glide-over\n textButton=\"Текст кнопки\"\n [colorButton]=\"buttonColor\"\n [padding]=\"'10px 24px'\"\n/&gt;</code></pre>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'buttons.glideOver.inputs' | transloco }}</h3>\n <ul>\n <li><strong>textButton</strong> ({{ 'buttons.glideOver.required' | transloco }}) - {{ 'buttons.glideOver.inputTextButton' | transloco }}</li>\n <li><strong>colorButton</strong> - {{ 'buttons.glideOver.inputColorButton' | transloco }}</li>\n <li><strong>padding</strong> - {{ 'buttons.glideOver.inputPadding' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"examples-block\">\n <h3>{{ 'buttons.glideOver.examples' | transloco }}</h3>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.glideOver.exampleWhite' | transloco }}</p>\n <duck-dev-button-glide-over textButton=\"Нажми меня\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.glideOver.exampleViolet' | transloco }}</p>\n <duck-dev-button-glide-over textButton=\"Violet Button\" [colorButton]=\"colorViolet\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.glideOver.exampleOrange' | transloco }}</p>\n <duck-dev-button-glide-over textButton=\"Orange Button\" [colorButton]=\"colorOrange\" />\n </div>\n </div>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.glideOver.exampleGray' | transloco }}</p>\n <duck-dev-button-glide-over textButton=\"Gray Button\" [colorButton]=\"colorGray\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.glideOver.exampleDark' | transloco }}</p>\n <duck-dev-button-glide-over textButton=\"Dark Button\" [colorButton]=\"colorDark\" />\n </div>\n </div>\n </div>\n </section>\n\n <!-- Button Blur Lift -->\n <section class=\"component-section\">\n <h2>{{ 'buttons.blurLift.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'buttons.blurLift.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'buttons.blurLift.usage' | transloco }}</h3>\n <pre><code>&lt;duck-dev-button-blur-lift\n textButton=\"Основной текст\"\n [hoverText]=\"'Текст при наведении'\"\n [colorButton]=\"buttonColor\"\n [padding]=\"'10px 24px'\"\n/&gt;</code></pre>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'buttons.blurLift.inputs' | transloco }}</h3>\n <ul>\n <li><strong>textButton</strong> ({{ 'buttons.blurLift.required' | transloco }}) - {{ 'buttons.blurLift.inputTextButton' | transloco }}</li>\n <li><strong>hoverText</strong> - {{ 'buttons.blurLift.inputHoverText' | transloco }}</li>\n <li><strong>colorButton</strong> - {{ 'buttons.blurLift.inputColorButton' | transloco }}</li>\n <li><strong>padding</strong> - {{ 'buttons.blurLift.inputPadding' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"examples-block\">\n <h3>{{ 'buttons.blurLift.examples' | transloco }}</h3>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.blurLift.exampleWhiteHover' | transloco }}</p>\n <duck-dev-button-blur-lift textButton=\"Наведи на меня\" [hoverText]=\"'Привет!'\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.blurLift.exampleViolet' | transloco }}</p>\n <duck-dev-button-blur-lift textButton=\"Click Me\" [hoverText]=\"'Action!'\" [colorButton]=\"colorViolet\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.blurLift.exampleOrange' | transloco }}</p>\n <duck-dev-button-blur-lift textButton=\"Hover\" [hoverText]=\"'Orange!'\" [colorButton]=\"colorOrange\" />\n </div>\n </div>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.blurLift.exampleGray' | transloco }}</p>\n <duck-dev-button-blur-lift textButton=\"Gray Button\" [hoverText]=\"'Hover'\" [colorButton]=\"colorGray\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.blurLift.exampleDark' | transloco }}</p>\n <duck-dev-button-blur-lift textButton=\"Dark Button\" [hoverText]=\"'Magic!'\" [colorButton]=\"colorDark\" />\n </div>\n </div>\n </div>\n </section>\n\n <!-- Button Color Flip -->\n <section class=\"component-section\">\n <h2>{{ 'buttons.flip.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'buttons.flip.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'buttons.flip.usage' | transloco }}</h3>\n <pre><code>&lt;duck-dev-button-flip\n [text]=\"'Text'\"\n [colorButton]=\"buttonColor\"\n [disabled]=\"false\"\n [direction]=\"'next'\"\n [arrowIndex]=\"0\"\n/&gt;</code></pre>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'buttons.flip.inputs' | transloco }}</h3>\n <ul>\n <li><strong>text</strong> - {{ 'buttons.flip.inputText' | transloco }}</li>\n <li><strong>colorButton</strong> - {{ 'buttons.flip.inputColorButton' | transloco }}</li>\n <li><strong>disabled</strong> - {{ 'buttons.flip.inputDisabled' | transloco }}</li>\n <li><strong>direction</strong> - {{ 'buttons.flip.inputDirection' | transloco }}</li>\n <li><strong>arrowIndex</strong> - {{ 'buttons.flip.inputArrowIndex' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"examples-block\">\n <h3>{{ 'buttons.flip.examples' | transloco }}</h3>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.flip.exampleWhite' | transloco }}</p>\n <duck-dev-button-flip [text]=\"'Click me'\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.flip.exampleViolet' | transloco }}</p>\n <duck-dev-button-flip [text]=\"'Violet Button'\" [colorButton]=\"colorViolet\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.flip.exampleOrange' | transloco }}</p>\n <duck-dev-button-flip [text]=\"'Orange Button'\" [colorButton]=\"colorOrange\" />\n </div>\n </div>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.flip.exampleGray' | transloco }}</p>\n <duck-dev-button-flip [text]=\"'Gray Button'\" [colorButton]=\"colorGray\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.flip.exampleDark' | transloco }}</p>\n <duck-dev-button-flip [text]=\"'Dark Button'\" [colorButton]=\"colorDark\" />\n </div>\n </div>\n\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.flip.examplePrev' | transloco }}</p>\n <duck-dev-button-flip [text]=\"'Prev'\" [direction]=\"'previous'\" [colorButton]=\"colorGray\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.flip.exampleNext' | transloco }}</p>\n <duck-dev-button-flip [text]=\"'Next'\" [direction]=\"'next'\" [colorButton]=\"colorViolet\" />\n </div>\n </div>\n </div>\n </section>\n <!-- Button Casper -->\n <section class=\"component-section\">\n <h2>{{ 'buttons.casper.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'buttons.casper.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'buttons.casper.usage' | transloco }}</h3>\n <pre><code>&lt;duck-dev-button-casper\n [text]=\"'Text'\"\n [isDisabled]=\"false\"\n [colorButton]=\"buttonColor\"\n/&gt;</code></pre>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'buttons.casper.inputs' | transloco }}</h3>\n <ul>\n <li><strong>text</strong> — {{ 'buttons.casper.inputText' | transloco }}</li>\n <li><strong>isDisabled</strong> — {{ 'buttons.casper.inputIsDisabled' | transloco }}</li>\n <li><strong>colorButton</strong> — {{ 'buttons.casper.inputColorButton' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"examples-block\">\n <h3>{{ 'buttons.casper.examples' | transloco }}</h3>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.casper.exampleWhite' | transloco }}</p>\n <duck-dev-button-casper [text]=\"'Casper'\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.casper.exampleViolet' | transloco }}</p>\n <duck-dev-button-casper [text]=\"'Casper'\" [colorButton]=\"colorViolet\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.casper.exampleOrange' | transloco }}</p>\n <duck-dev-button-casper [text]=\"'Casper'\" [colorButton]=\"colorOrange\" />\n </div>\n </div>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.casper.exampleGray' | transloco }}</p>\n <duck-dev-button-casper [text]=\"'Casper'\" [colorButton]=\"colorGray\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.casper.exampleDark' | transloco }}</p>\n <duck-dev-button-casper [text]=\"'Casper'\" [colorButton]=\"colorDark\" />\n </div>\n </div>\n </div>\n </section>\n</div>\n","import { Component } from '@angular/core';\nimport { LoaderClassic, LoaderLoadingBubble, LoaderThreeDots } from \"../../index\";\nimport {TranslocoPipe} from '@jsverse/transloco';\n\n@Component({\n selector: 'app-loader-block',\n imports: [\n LoaderClassic,\n LoaderLoadingBubble,\n LoaderThreeDots,\n TranslocoPipe\n ],\n templateUrl: './loader-block.html',\n styleUrl: './loader-block.scss',\n})\nexport class LoaderBlock {\n}\n","<div class=\"demo-container\">\n <h1>{{ 'loaders.title' | transloco }}</h1>\n\n <!-- Loader Classic -->\n <section class=\"component-section\">\n <h2>{{ 'loaders.classic.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'loaders.classic.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'loaders.classic.usage' | transloco }}</h3>\n <pre><code>&lt;duck-dev-loader-classic /&gt;</code></pre>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'loaders.classic.inputs' | transloco }}</h3>\n <ul>\n <li>{{ 'loaders.classic.inputNone' | transloco }}</li>\n <li>{{ 'loaders.classic.inputCss' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"examples-block\">\n <h3>{{ 'loaders.classic.examples' | transloco }}</h3>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'loaders.classic.exampleStandard' | transloco }}</p>\n <duck-dev-loader-classic />\n </div>\n </div>\n </div>\n </section>\n\n <!-- Loader Text Bubble -->\n <section class=\"component-section\">\n <h2>{{ 'loaders.textBubble.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'loaders.textBubble.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'loaders.textBubble.usage' | transloco }}</h3>\n <pre><code>&lt;duck-dev-loader-loading-bubble /&gt;</code></pre>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'loaders.textBubble.inputs' | transloco }}</h3>\n <ul>\n <li>{{ 'loaders.textBubble.inputNone' | transloco }}</li>\n <li>{{ 'loaders.textBubble.inputFixed' | transloco }}</li>\n <li>{{ 'loaders.textBubble.inputCss' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"examples-block\">\n <h3>{{ 'loaders.textBubble.examples' | transloco }}</h3>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'loaders.textBubble.exampleStandard' | transloco }}</p>\n <duck-dev-loader-loading-bubble />\n </div>\n </div>\n </div>\n </section>\n\n <!-- Loader Three Dots -->\n <section class=\"component-section\">\n <h2>{{ 'loaders.threeDots.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'loaders.threeDots.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'loaders.threeDots.usage' | transloco }}</h3>\n <pre><code>&lt;lib-loader-three-dots /&gt;</code></pre>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'loaders.threeDots.inputs' | transloco }}</h3>\n <ul>\n <li>{{ 'loaders.threeDots.inputNone' | transloco }}</li>\n <li>{{ 'loaders.threeDots.inputCss' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"examples-block\">\n <h3>{{ 'loaders.threeDots.examples' | transloco }}</h3>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <duck-dev-loader-three-dots />\n </div>\n </div>\n </div>\n </section>\n</div>\n","import { Component } from '@angular/core';\nimport {TranslocoPipe} from '@jsverse/transloco';\n\n@Component({\n selector: 'app-tabs-block',\n imports: [\n TranslocoPipe\n ],\n templateUrl: './tabs-block.html',\n styleUrl: './tabs-block.scss',\n})\nexport class TabsBlock {\n}\n","<div class=\"demo-container\">\n <h1>{{ 'tabsComponent.title' | transloco }}</h1>\n\n <!-- Duck Dev Tab -->\n <section class=\"component-section\">\n <h2>{{ 'tabsComponent.tab.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'tabsComponent.tab.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'tabsComponent.tab.usage' | transloco }}</h3>\n <p>{{ 'tabsComponent.tab.usageText1' | transloco }}</p>\n <p>{{ 'tabsComponent.tab.usageText2' | transloco }}</p>\n <p>{{ 'tabsComponent.tab.usageText3' | transloco }}</p>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'tabsComponent.tab.inputs' | transloco }}</h3>\n <ul>\n <li><strong>tabs</strong> ({{ 'tabsComponent.tab.required' | transloco }}) - {{ 'tabsComponent.tab.inputTabs' | transloco }}\n <ul>\n <li><strong>id</strong> (string) - {{ 'tabsComponent.tab.inputTabsId' | transloco }}</li>\n <li><strong>label</strong> (string) - {{ 'tabsComponent.tab.inputTabsLabel' | transloco }}</li>\n <li><strong>content</strong> (any, {{ 'tabsComponent.tab.optional' | transloco }}) - {{ 'tabsComponent.tab.inputTabsContent' | transloco }}</li>\n </ul>\n </li>\n </ul>\n </div>\n\n <div class=\"outputs-block\">\n <h3>{{ 'tabsComponent.tab.outputs' | transloco }}</h3>\n <ul>\n <li><strong>tabChange</strong> - {{ 'tabsComponent.tab.outputTabChange' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"features-block\">\n <h3>{{ 'tabsComponent.tab.features' | transloco }}</h3>\n <ul>\n <li>{{ 'tabsComponent.tab.feature1' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.feature2' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.feature3' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.feature4' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.feature5' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.feature6' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.feature7' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"api-block\">\n <h3>{{ 'tabsComponent.tab.api' | transloco }}</h3>\n <ul>\n <li><strong>id: string</strong> - {{ 'tabsComponent.tab.apiId' | transloco }}</li>\n <li><strong>label: string</strong> - {{ 'tabsComponent.tab.apiLabel' | transloco }}</li>\n <li><strong>content?: any</strong> - {{ 'tabsComponent.tab.apiContent' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"implementation-block\">\n <h3>{{ 'tabsComponent.tab.implementation' | transloco }}</h3>\n <ul>\n <li>{{ 'tabsComponent.tab.implementation1' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.implementation2' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.implementation3' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.implementation4' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.implementation5' | transloco }}</li>\n </ul>\n </div>\n </section>\n</div>\n","const duckDevDockMedium = `\n<svg\n width=\"24\" height=\"24\" viewBox=\"0 0 1024 1024\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M239.2 419.5l7 394.6h465.7V251.4H396.6v168.1z\" fill=\"#E1F0FF\" />\n <path d=\"M221 395.5h25.2v418.6H221z\" fill=\"#446EB1\" />\n <path d=\"M221 789.8h488.7v24.3H221zM366.7 227.1h342.9v24.3H366.7z\" fill=\"#446EB1\" />\n <path d=\"M687.6 227.1h24.3v98.1h-24.3zM687.6 765h24.3v49h-24.3zM384.6 244.1l-18.1-17L221 394.7l18.1 17 145.5-167.6z\" fill=\"#446EB1\" />\n <path d=\"M372.6 235.1h23.9v167.6h-23.9z\" fill=\"#446EB1\" /><path d=\"M221 395.5h175.6v23.9H221z\" fill=\"#446EB1\" />\n <path d=\"M776.4 570.2c-5.6 0-11.2 0.9-17.1 2.7L719 532.6 825.6 426c5.3-5.3 5.3-14 0-19.3-2.6-2.6-6-4-9.6-4-3.6 0-7.1 1.4-9.6 4L699.7 513.3 593.1 406.7c-2.6-2.6-6-4-9.6-4s-7.1 1.4-9.6 4c-5.3 5.3-5.3 13.9 0 19.3l106.6 106.6-40.3 40.3c-5.9-1.8-11.5-2.7-17.1-2.7-33.2 0-60.3 27-60.3 60.3 0 33.2 27 60.3 60.3 60.3 33.2 0 60.2-27 60.2-60.3 0-16.4-6.8-31.9-18.8-43.4l35.2-35.2 35.3 35.2c-12 11.4-18.8 26.9-18.8 43.4 0 33.2 27 60.3 60.3 60.3 33.2 0 60.3-27 60.3-60.3-0.2-33.2-27.2-60.3-60.4-60.3z m33 60.3c0 18.2-14.8 33-33 33s-33-14.8-33-33 14.8-33 33-33 33 14.8 33 33z m-153.4 0c0 18.2-14.8 33-33 33s-33-14.8-33-33 14.8-33 33-33 33 14.8 33 33z\" fill=\"#6D9EE8\" />\n </svg>\n`\n\nconst duckDevImageMedium = `\n<svg width=\"24\" height=\"24\" viewBox=\"0 0 1024 1024\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M212.5 239.8h609.3v516.5H212.5z\" fill=\"#E1F0FF\" />\n<path d=\"M229.5 766l-16.7-16.5 249-261.1 263.5 263.8-16.1 17-246.8-247.4z\" fill=\"#6D9EE8\" />\n<path d=\"M806.8 698.2L636.6 552.4c-20 20.5-58.4 59.9-62.5 63.2l-14.6-18.5-0.1 0.1c4-3.5 43.9-44.3 68.1-69.2l7.6-7.8 186.6 159.9-14.9 18.1z\" fill=\"#6D9EE8\" />\n<path d=\"M610.4 374.5a49.4 50.2 0 1 0 98.8 0 49.4 50.2 0 1 0-98.8 0Z\" fill=\"#6D9EE8\" />\n<path d=\"M808.9 228.5h22.3V772h-22.3zM202.1 228.5h606.8v22.6H202.1z\" fill=\"#446EB1\" /><path d=\"M198.9 228.5h22.3V772h-22.3z\" fill=\"#446EB1\" /><path d=\"M202.1 749.4h606.8V772H202.1z\" fill=\"#446EB1\" /></svg>\n`\n\nconst duckDevWordDockMedium = `\n<svg width=\"24\" height=\"24\" viewBox=\"0 0 1024 1024\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M227.7 180.4h455.2v22.8H227.7z\" fill=\"#446EB1\" /><path d=\"M666 196.6l17-16.2 136.4 159.4-17 16.2L666 196.6zM227.7 203.2h22.8V795h-22.8z\" fill=\"#446EB1\" /><path d=\"M250.5 203.2v594.7h546.2V363.3H660.2V203.2H250.5z\" fill=\"#E1F0FF\" /><path d=\"M796.7 339.7h22.8v455.2h-22.8zM227.7 794.9h591.8v22.8H227.7z\" fill=\"#446EB1\" /><path d=\"M500.8 430.8h204.8v22.8H500.8zM341.5 521.8h364.2v22.8H341.5zM341.5 612.9h364.2v22.8H341.5zM341.5 703.9h364.2v22.8H341.5z\" fill=\"#6D9EE8\" /><path d=\"M660.2 203.2H683v159.3h-22.8z\" fill=\"#446EB1\" /><path d=\"M682.9 339.7h113.8v22.8H682.9zM442.3 277.3h15.3L440 347.7l-22.8-99h-36.6l-26.5 99-19.9-99H296L334.8 408h37.4l26.2-94.2 23.4 94.2h34.5l44.5-159.3h-58.6v28.6h0.1z\" fill=\"#446EB1\" /></svg>`\n\nconst duckDevPrinterMedium = `\n<svg width=\"24\" height=\"24\" viewBox=\"0 0 1024 1024\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M418.9 667.6h185.4v20.6H418.9z\" fill=\"#79ACF9\" /><path d=\"M212.9 399.9h20.6v309h-20.6z\" fill=\"#446EB1\" /><path d=\"M233.5 564.6h556.1v20.6H233.5z\" fill=\"#FFFFFF\" /><path d=\"M789.6 399.9h20.6v309h-20.6z\" fill=\"#446EB1\" /><path d=\"M233.5 399.9h576.7v20.6H233.5z\" fill=\"#446EB1\" /><path d=\"M233.5 420.5h556.1v82.4H233.5z\" fill=\"#F8FCFF\" /><path d=\"M233.5 502.8h556.1v82.4H233.5z\" fill=\"#E1F0FF\" /><path d=\"M686.6 441h41.2v41.2h-41.2z\" fill=\"#79ACF9\" /><path d=\"M315.9 255.7h20.6v144.2h-20.6zM707.2 255.7h20.6v144.2h-20.6z\" fill=\"#446EB1\" /><path d=\"M336.5 276.3h370.7v123.6H336.5z\" fill=\"#FFFFFF\" /><path d=\"M336.5 255.7h391.3v20.6H336.5zM274.7 358.7h20.6v41.2h-20.6z\" fill=\"#446EB1\" /><path d=\"M274.7 358.7h41.2v20.6h-41.2zM727.8 358.7H769v20.6h-41.2z\" fill=\"#446EB1\" /><path d=\"M748.4 358.7H769v41.2h-20.6z\" fill=\"#446EB1\" /><path d=\"M233.5 585.2h556.1v20.6H233.5z\" fill=\"#79ACF9\" /><path d=\"M233.5 605.8h556.1v20.6H233.5z\" fill=\"#6D9EE8\" /><path d=\"M233.5 626.4h61.8v61.8h-61.8zM727.8 626.4h61.8v61.8h-61.8zM295.3 626.4h432.5V647H295.3z\" fill=\"#446EB1\" /><path d=\"M212.9 688.2h103v20.6h-103zM707.2 688.2h103v20.6h-103z\" fill=\"#6D9EE8\" /><path d=\"M295.3 647h20.6v144.2h-20.6zM707.2 647h20.6v144.2h-20.6z\" fill=\"#446EB1\" /><path d=\"M315.9 770.6h391.3v20.6H315.9z\" fill=\"#446EB1\" /><path d=\"M398.3 708.8h226.6v20.6H398.3z\" fill=\"#79ACF9\" /></svg>\n`\nconst duckDevCheck = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.3327 4L5.99935 11.3333L2.66602 8\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevBuildMedium = `\n<svg width=\"24\" height=\"24\" viewBox=\"0 0 1024 1024\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M418.9 667.6h185.4v20.6H418.9z\" fill=\"#79ACF9\" /><path d=\"M212.9 399.9h20.6v309h-20.6z\" fill=\"#446EB1\" /><path d=\"M233.5 564.6h556.1v20.6H233.5z\" fill=\"#FFFFFF\" /><path d=\"M789.6 399.9h20.6v309h-20.6z\" fill=\"#446EB1\" /><path d=\"M233.5 399.9h576.7v20.6H233.5z\" fill=\"#446EB1\" /><path d=\"M233.5 420.5h556.1v82.4H233.5z\" fill=\"#F8FCFF\" /><path d=\"M233.5 502.8h556.1v82.4H233.5z\" fill=\"#E1F0FF\" /><path d=\"M686.6 441h41.2v41.2h-41.2z\" fill=\"#79ACF9\" /><path d=\"M315.9 255.7h20.6v144.2h-20.6zM707.2 255.7h20.6v144.2h-20.6z\" fill=\"#446EB1\" /><path d=\"M336.5 276.3h370.7v123.6H336.5z\" fill=\"#FFFFFF\" /><path d=\"M336.5 255.7h391.3v20.6H336.5zM274.7 358.7h20.6v41.2h-20.6z\" fill=\"#446EB1\" /><path d=\"M274.7 358.7h41.2v20.6h-41.2zM727.8 358.7H769v20.6h-41.2z\" fill=\"#446EB1\" /><path d=\"M748.4 358.7H769v41.2h-20.6z\" fill=\"#446EB1\" /><path d=\"M233.5 585.2h556.1v20.6H233.5z\" fill=\"#79ACF9\" /><path d=\"M233.5 605.8h556.1v20.6H233.5z\" fill=\"#6D9EE8\" /><path d=\"M233.5 626.4h61.8v61.8h-61.8zM727.8 626.4h61.8v61.8h-61.8zM295.3 626.4h432.5V647H295.3z\" fill=\"#446EB1\" /><path d=\"M212.9 688.2h103v20.6h-103zM707.2 688.2h103v20.6h-103z\" fill=\"#6D9EE8\" /><path d=\"M295.3 647h20.6v144.2h-20.6zM707.2 647h20.6v144.2h-20.6z\" fill=\"#446EB1\" /><path d=\"M315.9 770.6h391.3v20.6H315.9z\" fill=\"#446EB1\" /><path d=\"M398.3 708.8h226.6v20.6H398.3z\" fill=\"#79ACF9\" /></svg>\n`\n\nconst duckDevCheckMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M16.6663 5L7.49967 14.1667L3.33301 10\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevCheckCircle = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_132944)\">\n <path d=\"M14.6663 7.38527V7.99861C14.6655 9.43622 14.2 10.8351 13.3392 11.9865C12.4785 13.1379 11.2685 13.9803 9.88991 14.3879C8.5113 14.7955 7.03785 14.7465 5.68932 14.2483C4.3408 13.7501 3.18944 12.8293 2.40698 11.6233C1.62452 10.4173 1.25287 8.99065 1.34746 7.55615C1.44205 6.12165 1.99781 4.75616 2.93186 3.66332C3.86591 2.57049 5.1282 1.80886 6.53047 1.49204C7.93274 1.17521 9.39985 1.32017 10.713 1.90527M14.6663 2.66527L7.99968 9.33861L5.99968 7.33861\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_132944\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\n\nconst duckDevCupMedium = `\n<svg width=\"24\" height=\"24\" viewBox=\"0 0 1024 1024\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M828.5 180.1h-9.9v-54.7h23.5v-44H182v44h23v54.7h-9.5C123.2 180.1 64 239.2 64 311.5v0.1c0 72.3 59.2 131.5 131.5 131.5h9.6c0 1.3 0.1 2.5 0.1 3.7 0.5 17.7 2.7 35.4 6.2 52.5 17.8 85.7 71.8 160 148.3 204 4.8 2.8 9.8 5.4 14.7 7.9 15.3 7.7 31.2 14.1 47.4 19.2 3.4 1 6.8 2 10.2 2.9v165.2H250.4v44h511.9v-44H591.9V733.4c3.7-1 7.3-2.1 10.9-3.2 16.2-5.1 32.2-11.6 47.4-19.4 5-2.5 10-5.3 14.8-8.1 75.6-43.9 129.2-117.8 147-202.7 3.6-17.2 5.8-34.9 6.3-52.4 0.1-1.5 0.1-3 0.1-4.5h10c72.3 0 131.5-59.2 131.5-131.5v-0.1c0.1-72.3-59.1-131.4-131.4-131.4zM205 399.2h-9.5c-23.2 0-45.1-9.1-61.7-25.7s-25.7-38.5-25.7-61.7v-0.1c0-23.2 9.1-45.2 25.7-61.7 16.6-16.6 38.5-25.7 61.7-25.7h9.5v174.9z m370.9 499.4h-128V737.3c20.9 4.5 42.3 6.8 63.9 6.8 21.7 0 43.1-2.3 64.1-6.8v161.3z m198.7-461.4c0 2.9 0 5.9-0.2 8.9-0.5 15-2.3 30.1-5.4 44.9-15.3 72.7-61.2 136-126.1 173.7-4.1 2.4-8.4 4.7-12.7 6.9-13 6.6-26.7 12.2-40.6 16.6-25.2 7.9-51.4 11.9-77.9 11.9-26.2 0-52.2-3.9-77.1-11.6-13.9-4.3-27.5-9.8-40.6-16.4-4.2-2.1-8.5-4.4-12.6-6.8-65.4-37.8-111.7-101.5-126.9-174.8-3.1-14.7-4.9-29.8-5.3-45-0.1-2.7-0.1-5.5-0.1-8.2v-312h525.6v311.9zM916 311.7c0 23.2-9.1 45.2-25.7 61.7-16.6 16.6-38.5 25.7-61.7 25.7h-9.9v-175h9.9c23.2 0 45.1 9.1 61.7 25.7s25.7 38.5 25.7 61.7v0.2z\" fill=\"#39393A\" /><path d=\"M317.428 274.917l70.145-70.144 14.142 14.142-70.145 70.144zM316.055 351.98L456.13 211.904l14.142 14.142-140.076 140.076zM555.4 659.6l-4.8-19.4c0.3-0.1 26.5-6.8 55.4-23.5 37.8-21.9 62-49.7 72-82.7l19.1 5.8c-11.4 37.6-39.6 70.3-81.6 94.5-31.2 18-58.9 25-60.1 25.3z\" fill=\"#E73B37\" /></svg>\n`\nconst duckDevCheckCircleMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21_2500)\">\n <path d=\"M18.3337 9.23159V9.99826C18.3326 11.7953 17.7507 13.5438 16.6748 14.9831C15.5988 16.4224 14.0864 17.4753 12.3631 17.9848C10.6399 18.4944 8.79804 18.4332 7.11238 17.8104C5.42673 17.1877 3.98754 16.0367 3.00946 14.5291C2.03138 13.0216 1.56682 11.2383 1.68506 9.44519C1.80329 7.65206 2.498 5.9452 3.66556 4.57915C4.83312 3.21311 6.41098 2.26108 8.16382 1.86505C9.91665 1.46902 11.7505 1.65021 13.392 2.38159M18.3337 3.33159L10.0003 11.6733L7.50033 9.17326\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2500\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevCheckCircleV2 = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.6663 7.9987C14.6663 11.6806 11.6816 14.6654 7.99967 14.6654C4.31778 14.6654 1.33301 11.6806 1.33301 7.9987C1.33301 4.3168 4.31778 1.33203 7.99967 1.33203C11.6816 1.33203 14.6663 4.3168 14.6663 7.9987Z\" fill=\"#AEB2BC\"/>\n <path d=\"M11 6L6.875 10L5 8.18182\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevMoreVertical = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.00065 8.66797C8.36884 8.66797 8.66732 8.36949 8.66732 8.0013C8.66732 7.63311 8.36884 7.33464 8.00065 7.33464C7.63246 7.33464 7.33398 7.63311 7.33398 8.0013C7.33398 8.36949 7.63246 8.66797 8.00065 8.66797Z\" fill=\"#6B7280\"/>\n <path d=\"M8.00065 4.0013C8.36884 4.0013 8.66732 3.70283 8.66732 3.33464C8.66732 2.96645 8.36884 2.66797 8.00065 2.66797C7.63246 2.66797 7.33398 2.96645 7.33398 3.33464C7.33398 3.70283 7.63246 4.0013 8.00065 4.0013Z\" fill=\"#6B7280\"/>\n <path d=\"M8.00065 13.3346C8.36884 13.3346 8.66732 13.0362 8.66732 12.668C8.66732 12.2998 8.36884 12.0013 8.00065 12.0013C7.63246 12.0013 7.33398 12.2998 7.33398 12.668C7.33398 13.0362 7.63246 13.3346 8.00065 13.3346Z\" fill=\"#6B7280\"/>\n <path d=\"M8.00065 8.66797C8.36884 8.66797 8.66732 8.36949 8.66732 8.0013C8.66732 7.63311 8.36884 7.33464 8.00065 7.33464C7.63246 7.33464 7.33398 7.63311 7.33398 8.0013C7.33398 8.36949 7.63246 8.66797 8.00065 8.66797Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8.00065 4.0013C8.36884 4.0013 8.66732 3.70283 8.66732 3.33464C8.66732 2.96645 8.36884 2.66797 8.00065 2.66797C7.63246 2.66797 7.33398 2.96645 7.33398 3.33464C7.33398 3.70283 7.63246 4.0013 8.00065 4.0013Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8.00065 13.3346C8.36884 13.3346 8.66732 13.0362 8.66732 12.668C8.66732 12.2998 8.36884 12.0013 8.00065 12.0013C7.63246 12.0013 7.33398 12.2998 7.33398 12.668C7.33398 13.0362 7.63246 13.3346 8.00065 13.3346Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevMoreVerticalMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M10.0003 10.8333C10.4606 10.8333 10.8337 10.4602 10.8337 10C10.8337 9.53976 10.4606 9.16666 10.0003 9.16666C9.54009 9.16666 9.16699 9.53976 9.16699 10C9.16699 10.4602 9.54009 10.8333 10.0003 10.8333Z\" fill=\"#6B7280\"/>\n <path d=\"M10.0003 4.99999C10.4606 4.99999 10.8337 4.6269 10.8337 4.16666C10.8337 3.70642 10.4606 3.33333 10.0003 3.33333C9.54009 3.33333 9.16699 3.70642 9.16699 4.16666C9.16699 4.6269 9.54009 4.99999 10.0003 4.99999Z\" fill=\"#6B7280\"/>\n <path d=\"M10.0003 16.6667C10.4606 16.6667 10.8337 16.2936 10.8337 15.8333C10.8337 15.3731 10.4606 15 10.0003 15C9.54009 15 9.16699 15.3731 9.16699 15.8333C9.16699 16.2936 9.54009 16.6667 10.0003 16.6667Z\" fill=\"#6B7280\"/>\n <path d=\"M10.0003 10.8333C10.4606 10.8333 10.8337 10.4602 10.8337 10C10.8337 9.53976 10.4606 9.16666 10.0003 9.16666C9.54009 9.16666 9.16699 9.53976 9.16699 10C9.16699 10.4602 9.54009 10.8333 10.0003 10.8333Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M10.0003 4.99999C10.4606 4.99999 10.8337 4.6269 10.8337 4.16666C10.8337 3.70642 10.4606 3.33333 10.0003 3.33333C9.54009 3.33333 9.16699 3.70642 9.16699 4.16666C9.16699 4.6269 9.54009 4.99999 10.0003 4.99999Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M10.0003 16.6667C10.4606 16.6667 10.8337 16.2936 10.8337 15.8333C10.8337 15.3731 10.4606 15 10.0003 15C9.54009 15 9.16699 15.3731 9.16699 15.8333C9.16699 16.2936 9.54009 16.6667 10.0003 16.6667Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevTrash = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 3.9987H3.33333M3.33333 3.9987H14M3.33333 3.9987V13.332C3.33333 13.6857 3.47381 14.0248 3.72386 14.2748C3.97391 14.5249 4.31304 14.6654 4.66667 14.6654H11.3333C11.687 14.6654 12.0261 14.5249 12.2761 14.2748C12.5262 14.0248 12.6667 13.6857 12.6667 13.332V3.9987H3.33333ZM5.33333 3.9987V2.66536C5.33333 2.31174 5.47381 1.9726 5.72386 1.72256C5.97391 1.47251 6.31304 1.33203 6.66667 1.33203H9.33333C9.68696 1.33203 10.0261 1.47251 10.2761 1.72256C10.5262 1.9726 10.6667 2.31174 10.6667 2.66536V3.9987\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevTrashMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2.5 5.0013H4.16667M4.16667 5.0013H17.5M4.16667 5.0013V16.668C4.16667 17.11 4.34226 17.5339 4.65482 17.8465C4.96738 18.159 5.39131 18.3346 5.83333 18.3346H14.1667C14.6087 18.3346 15.0326 18.159 15.3452 17.8465C15.6577 17.5339 15.8333 17.11 15.8333 16.668V5.0013H4.16667ZM6.66667 5.0013V3.33464C6.66667 2.89261 6.84226 2.46868 7.15482 2.15612C7.46738 1.84356 7.89131 1.66797 8.33333 1.66797H11.6667C12.1087 1.66797 12.5326 1.84356 12.8452 2.15612C13.1577 2.46868 13.3333 2.89261 13.3333 3.33464V5.0013\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevEdit = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8 13.3322H14M11 2.33218C11.2652 2.06697 11.6249 1.91797 12 1.91797C12.1857 1.91797 12.3696 1.95455 12.5412 2.02562C12.7128 2.09669 12.8687 2.20086 13 2.33218C13.1313 2.4635 13.2355 2.61941 13.3066 2.79099C13.3776 2.96257 13.4142 3.14647 13.4142 3.33218C13.4142 3.5179 13.3776 3.7018 13.3066 3.87338C13.2355 4.04496 13.1313 4.20086 13 4.33218L4.66667 12.6655L2 13.3322L2.66667 10.6655L11 2.33218Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevEditMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M10 16.6662H17.5M13.75 2.9162C14.0815 2.58468 14.5312 2.39844 15 2.39844C15.2321 2.39844 15.462 2.44416 15.6765 2.533C15.891 2.62184 16.0858 2.75205 16.25 2.9162C16.4142 3.08036 16.5444 3.27523 16.6332 3.48971C16.722 3.70418 16.7678 3.93406 16.7678 4.1662C16.7678 4.39835 16.722 4.62822 16.6332 4.8427C16.5444 5.05718 16.4142 5.25205 16.25 5.4162L5.83333 15.8329L2.5 16.6662L3.33333 13.3329L13.75 2.9162Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevArrowSortMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.3327 15.832L13.3327 4.16536M13.3327 4.16536C13.3327 4.16536 12.2774 5.63731 9.99935 7.91536M13.3327 4.16536L16.666 7.91536\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M6.66731 4.16797L6.66731 15.8346M6.66731 15.8346C6.66731 15.8346 7.72259 14.3627 10.0007 12.0846M6.66731 15.8346L3.33398 12.0846\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevX = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M12 4L4 12M4 4L12 12\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevXMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M15 5L5 15M5 5L15 15\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevXCircle = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_133069)\">\n <path d=\"M10.0007 5.9987L6.00065 9.9987M6.00065 5.9987L10.0007 9.9987M14.6673 7.9987C14.6673 11.6806 11.6825 14.6654 8.00065 14.6654C4.31875 14.6654 1.33398 11.6806 1.33398 7.9987C1.33398 4.3168 4.31875 1.33203 8.00065 1.33203C11.6825 1.33203 14.6673 4.3168 14.6673 7.9987Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_133069\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevXCircleMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21_2780)\">\n <path d=\"M12.4993 7.5013L7.49935 12.5013M7.49935 7.5013L12.4993 12.5013M18.3327 10.0013C18.3327 14.6037 14.6017 18.3346 9.99935 18.3346C5.39698 18.3346 1.66602 14.6037 1.66602 10.0013C1.66602 5.39893 5.39698 1.66797 9.99935 1.66797C14.6017 1.66797 18.3327 5.39893 18.3327 10.0013Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2780\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevLogOut = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M5.06592 13H2.39925C2.04563 13 1.70649 12.8595 1.45644 12.6095C1.20639 12.3594 1.06592 12.0203 1.06592 11.6667V2.33333C1.06592 1.97971 1.20639 1.64057 1.45644 1.39052C1.70649 1.14048 2.04563 1 2.39925 1H5.06592M9.73258 10.3333L13.0659 7M13.0659 7L9.73258 3.66667M13.0659 7H5.06592\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevLogOutMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M7.5 17.5H4.16667C3.72464 17.5 3.30072 17.3244 2.98816 17.0118C2.67559 16.6993 2.5 16.2754 2.5 15.8333V4.16667C2.5 3.72464 2.67559 3.30072 2.98816 2.98816C3.30072 2.67559 3.72464 2.5 4.16667 2.5H7.5M13.3333 14.1667L17.5 10M17.5 10L13.3333 5.83333M17.5 10H7.5\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevClear = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <rect width=\"16\" height=\"16\" rx=\"8\" fill=\"#B4B9C1\"/>\n <path d=\"M11.5 4.5L4.5 11.5M4.5 4.5L11.5 11.5\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevClearMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M15 5L5 15M5 5L15 15\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevEye = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_132881)\">\n <path d=\"M0.666016 8.0013C0.666016 8.0013 3.33268 2.66797 7.99935 2.66797C12.666 2.66797 15.3327 8.0013 15.3327 8.0013C15.3327 8.0013 12.666 13.3346 7.99935 13.3346C3.33268 13.3346 0.666016 8.0013 0.666016 8.0013Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M7.99935 10.0013C9.10392 10.0013 9.99935 9.10587 9.99935 8.0013C9.99935 6.89673 9.10392 6.0013 7.99935 6.0013C6.89478 6.0013 5.99935 6.89673 5.99935 8.0013C5.99935 9.10587 6.89478 10.0013 7.99935 10.0013Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_132881\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevEyeMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M0.833984 9.9987C0.833984 9.9987 4.16732 3.33203 10.0007 3.33203C15.834 3.33203 19.1673 9.9987 19.1673 9.9987C19.1673 9.9987 15.834 16.6654 10.0007 16.6654C4.16732 16.6654 0.833984 9.9987 0.833984 9.9987Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M10.0007 12.4987C11.3814 12.4987 12.5007 11.3794 12.5007 9.9987C12.5007 8.61799 11.3814 7.4987 10.0007 7.4987C8.61994 7.4987 7.50065 8.61799 7.50065 9.9987C7.50065 11.3794 8.61994 12.4987 10.0007 12.4987Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevEyeOff = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_133116)\">\n <path d=\"M6.59935 2.82797C7.05824 2.72055 7.52806 2.66686 7.99935 2.66797C12.666 2.66797 15.3327 8.0013 15.3327 8.0013C14.928 8.75837 14.4454 9.47113 13.8927 10.128M9.41268 9.41463C9.22958 9.61113 9.00878 9.76874 8.76345 9.87805C8.51812 9.98736 8.25328 10.0461 7.98474 10.0509C7.7162 10.0556 7.44946 10.0062 7.20042 9.90563C6.95139 9.80504 6.72516 9.65532 6.53525 9.4654C6.34533 9.27549 6.19561 9.04926 6.09502 8.80023C5.99443 8.55119 5.94503 8.28445 5.94977 8.01591C5.95451 7.74737 6.01329 7.48253 6.1226 7.2372C6.23191 6.99187 6.38952 6.77107 6.58602 6.58797M0.666016 0.667969L15.3327 15.3346M11.9593 11.9613C10.8197 12.83 9.43209 13.3112 7.99935 13.3346C3.33268 13.3346 0.666016 8.0013 0.666016 8.0013C1.49528 6.4559 2.64544 5.10571 4.03935 4.0413L11.9593 11.9613Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_133116\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevEyeOffMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21_2856)\">\n <path d=\"M8.25065 3.53203C8.82426 3.39776 9.41154 3.33065 10.0007 3.33203C15.834 3.33203 19.1673 9.9987 19.1673 9.9987C18.6615 10.945 18.0582 11.836 17.3673 12.657M11.7673 11.7654C11.5384 12.011 11.2624 12.208 10.9558 12.3446C10.6491 12.4813 10.3181 12.5547 9.98239 12.5607C9.64672 12.5666 9.31329 12.5048 9.00199 12.3791C8.6907 12.2534 8.40792 12.0662 8.17052 11.8288C7.93313 11.5914 7.74598 11.3086 7.62024 10.9974C7.49451 10.6861 7.43276 10.3526 7.43868 10.017C7.4446 9.68128 7.51808 9.35024 7.65472 9.04357C7.79135 8.73691 7.98836 8.46091 8.23398 8.23203M0.833984 0.832031L19.1673 19.1654M14.9507 14.9487C13.5261 16.0345 11.7916 16.6361 10.0007 16.6654C4.16732 16.6654 0.833984 9.9987 0.833984 9.9987C1.87056 8.06694 3.30826 6.3792 5.05065 5.0487L14.9507 14.9487Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2856\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevEyeBold = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M6.65 8.0002C6.65 7.25461 7.25442 6.6502 8 6.6502C8.74558 6.6502 9.35 7.25461 9.35 8.0002C9.35 8.74578 8.74558 9.3502 8 9.3502C7.25442 9.3502 6.65 8.74578 6.65 8.0002Z\" fill=\"#595E6A\"/>\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 8.0002C2 8.98382 2.25498 9.31508 2.76494 9.9776C3.78318 11.3005 5.49087 12.8002 8 12.8002C10.5091 12.8002 12.2168 11.3005 13.2351 9.9776C13.745 9.31508 14 8.98382 14 8.0002C14 7.01657 13.745 6.68531 13.2351 6.02279C12.2168 4.69993 10.5091 3.2002 8 3.2002C5.49087 3.2002 3.78318 4.69993 2.76494 6.02279C2.25498 6.68531 2 7.01657 2 8.0002ZM8 5.7502C6.75736 5.7502 5.75 6.75755 5.75 8.0002C5.75 9.24284 6.75736 10.2502 8 10.2502C9.24264 10.2502 10.25 9.24284 10.25 8.0002C10.25 6.75755 9.24264 5.7502 8 5.7502Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevEyeBoldMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.3125 10C8.3125 9.06802 9.06802 8.3125 10 8.3125C10.932 8.3125 11.6875 9.06802 11.6875 10C11.6875 10.932 10.932 11.6875 10 11.6875C9.06802 11.6875 8.3125 10.932 8.3125 10Z\" fill=\"#595E6A\"/>\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.5 10C2.5 11.2295 2.81872 11.6436 3.45617 12.4718C4.72897 14.1253 6.86359 16 10 16C13.1364 16 15.271 14.1253 16.5438 12.4718C17.1813 11.6436 17.5 11.2295 17.5 10C17.5 8.77047 17.1813 8.35639 16.5438 7.52825C15.271 5.87467 13.1364 4 10 4C6.86359 4 4.72897 5.87467 3.45617 7.52825C2.81872 8.3564 2.5 8.77047 2.5 10ZM10 7.1875C8.4467 7.1875 7.1875 8.4467 7.1875 10C7.1875 11.5533 8.4467 12.8125 10 12.8125C11.5533 12.8125 12.8125 11.5533 12.8125 10C12.8125 8.4467 11.5533 7.1875 10 7.1875Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevChevronUp = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M12 10L8 6L4 10\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronUpMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M15 12.5L10 7.5L5 12.5\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronRight = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M6 12L10 8L6 4\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronRightMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M7.5 15L12.5 10L7.5 5\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronDown = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M4 6L8 10L12 6\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronDownMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g id=\"chevron-down\">\n <path id=\"Icon\" d=\"M5 7.5L10 12.5L15 7.5\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n</svg>\n`;\n\nconst duckDevChevronLeft = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M10 12L6 8L10 4\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronLeftMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M12.5 15L7.5 10L12.5 5\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronsRight = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.66667 11.3346L12 8.0013L8.66667 4.66797M4 11.3346L7.33333 8.0013L4 4.66797\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronsRightMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M10.8333 14.1654L15 9.9987L10.8333 5.83203M5 14.1654L9.16667 9.9987L5 5.83203\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronsLeft = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M7.33333 11.3346L4 8.0013L7.33333 4.66797M12 11.3346L8.66667 8.0013L12 4.66797\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronsLeftMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M9.16667 14.1654L5 9.9987L9.16667 5.83203M15 14.1654L10.8333 9.9987L15 5.83203\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronsSwitch = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M12 6L8 3L4 6\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M4 9L8 12L12 9\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevDatabase = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M14 3.33203C14 4.4366 11.3137 5.33203 8 5.33203C4.68629 5.33203 2 4.4366 2 3.33203M14 3.33203C14 2.22746 11.3137 1.33203 8 1.33203C4.68629 1.33203 2 2.22746 2 3.33203M14 3.33203V12.6654C14 13.772 11.3333 14.6654 8 14.6654C4.66667 14.6654 2 13.772 2 12.6654V3.33203M14 7.9987C14 9.10536 11.3333 9.9987 8 9.9987C4.66667 9.9987 2 9.10536 2 7.9987\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevDatabaseMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M17.5 4.16797C17.5 5.54868 14.1421 6.66797 10 6.66797C5.85786 6.66797 2.5 5.54868 2.5 4.16797M17.5 4.16797C17.5 2.78726 14.1421 1.66797 10 1.66797C5.85786 1.66797 2.5 2.78726 2.5 4.16797M17.5 4.16797V15.8346C17.5 17.218 14.1667 18.3346 10 18.3346C5.83333 18.3346 2.5 17.218 2.5 15.8346V4.16797M17.5 10.0013C17.5 11.3846 14.1667 12.5013 10 12.5013C5.83333 12.5013 2.5 11.3846 2.5 10.0013\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevHome = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M6 14.6654V7.9987H10V14.6654M2 5.9987L8 1.33203L14 5.9987V13.332C14 13.6857 13.8595 14.0248 13.6095 14.2748C13.3594 14.5249 13.0203 14.6654 12.6667 14.6654H3.33333C2.97971 14.6654 2.64057 14.5249 2.39052 14.2748C2.14048 14.0248 2 13.6857 2 13.332V5.9987Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevHomeMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M7.5 18.3346V10.0013H12.5V18.3346M2.5 7.5013L10 1.66797L17.5 7.5013V16.668C17.5 17.11 17.3244 17.5339 17.0118 17.8465C16.6993 18.159 16.2754 18.3346 15.8333 18.3346H4.16667C3.72464 18.3346 3.30072 18.159 2.98816 17.8465C2.67559 17.5339 2.5 17.11 2.5 16.668V7.5013Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevUser = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.3327 14V12.6667C13.3327 11.9594 13.0517 11.2811 12.5516 10.781C12.0515 10.281 11.3733 10 10.666 10H5.33268C4.62544 10 3.94716 10.281 3.44706 10.781C2.94697 11.2811 2.66602 11.9594 2.66602 12.6667V14M10.666 4.66667C10.666 6.13943 9.47211 7.33333 7.99935 7.33333C6.52659 7.33333 5.33268 6.13943 5.33268 4.66667C5.33268 3.19391 6.52659 2 7.99935 2C9.47211 2 10.666 3.19391 10.666 4.66667Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevUserMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M16.6673 17.5V15.8333C16.6673 14.9493 16.3161 14.1014 15.691 13.4763C15.0659 12.8512 14.218 12.5 13.334 12.5H6.66732C5.78326 12.5 4.93542 12.8512 4.31029 13.4763C3.68517 14.1014 3.33398 14.9493 3.33398 15.8333V17.5M13.334 5.83333C13.334 7.67428 11.8416 9.16667 10.0007 9.16667C8.1597 9.16667 6.66732 7.67428 6.66732 5.83333C6.66732 3.99238 8.1597 2.5 10.0007 2.5C11.8416 2.5 13.334 3.99238 13.334 5.83333Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevUsers = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_133015)\">\n <path d=\"M11.3327 14V12.6667C11.3327 11.9594 11.0517 11.2811 10.5516 10.781C10.0515 10.281 9.37326 10 8.66602 10H3.33268C2.62544 10 1.94716 10.281 1.44706 10.781C0.946967 11.2811 0.666016 11.9594 0.666016 12.6667V14M15.3327 14V12.6667C15.3322 12.0758 15.1356 11.5018 14.7736 11.0349C14.4116 10.5679 13.9048 10.2344 13.3327 10.0867M10.666 2.08667C11.2396 2.23353 11.748 2.56713 12.1111 3.03487C12.4742 3.50261 12.6712 4.07789 12.6712 4.67C12.6712 5.26211 12.4742 5.83739 12.1111 6.30513C11.748 6.77287 11.2396 7.10647 10.666 7.25333M8.66602 4.66667C8.66602 6.13943 7.47211 7.33333 5.99935 7.33333C4.52659 7.33333 3.33268 6.13943 3.33268 4.66667C3.33268 3.19391 4.52659 2 5.99935 2C7.47211 2 8.66602 3.19391 8.66602 4.66667Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_133015\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevUsersBg = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_133015)\">\n <path d=\"M11.3337 14V12.6667C11.3337 11.9594 11.0527 11.2811 10.5526 10.781C10.0525 10.281 9.37424 10 8.66699 10H3.33366C2.62641 10 1.94814 10.281 1.44804 10.781C0.947944 11.2811 0.666992 11.9594 0.666992 12.6667V14M15.3337 14V12.6667C15.3332 12.0758 15.1366 11.5018 14.7746 11.0349C14.4126 10.5679 13.9057 10.2344 13.3337 10.0867M10.667 2.08667C11.2406 2.23353 11.749 2.56713 12.1121 3.03487C12.4752 3.50261 12.6722 4.07789 12.6722 4.67C12.6722 5.26211 12.4752 5.83739 12.1121 6.30513C11.749 6.77287 11.2406 7.10647 10.667 7.25333M8.66699 4.66667C8.66699 6.13943 7.47308 7.33333 6.00033 7.33333C4.52757 7.33333 3.33366 6.13943 3.33366 4.66667C3.33366 3.19391 4.52757 2 6.00033 2C7.47308 2 8.66699 3.19391 8.66699 4.66667Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_133015\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevUsersMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M14.1693 17.5V15.8333C14.1693 14.9493 13.8181 14.1014 13.193 13.4763C12.5678 12.8512 11.72 12.5 10.8359 12.5H4.16927C3.28522 12.5 2.43737 12.8512 1.81225 13.4763C1.18713 14.1014 0.835938 14.9493 0.835938 15.8333V17.5M19.1693 17.5V15.8333C19.1687 15.0948 18.9229 14.3773 18.4704 13.7936C18.0179 13.2099 17.3844 12.793 16.6693 12.6083M13.3359 2.60833C14.053 2.79192 14.6885 3.20892 15.1423 3.79359C15.5961 4.37827 15.8425 5.09736 15.8425 5.8375C15.8425 6.57764 15.5961 7.29673 15.1423 7.88141C14.6885 8.46608 14.053 8.88308 13.3359 9.06667M10.8359 5.83333C10.8359 7.67428 9.34355 9.16667 7.5026 9.16667C5.66166 9.16667 4.16927 7.67428 4.16927 5.83333C4.16927 3.99238 5.66166 2.5 7.5026 2.5C9.34355 2.5 10.8359 3.99238 10.8359 5.83333Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevUserPlus = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <g clip-path=\"url(#clip0_21839_132937)\">\n <path d=\"M10.667 14V12.6667C10.667 11.9594 10.386 11.2811 9.88594 10.781C9.38585 10.281 8.70757 10 8.00033 10H3.33366C2.62641 10 1.94814 10.281 1.44804 10.781C0.947944 11.2811 0.666992 11.9594 0.666992 12.6667V14M13.3337 5.33333V9.33333M15.3337 7.33333H11.3337M8.33366 4.66667C8.33366 6.13943 7.13975 7.33333 5.66699 7.33333C4.19423 7.33333 3.00033 6.13943 3.00033 4.66667C3.00033 3.19391 4.19423 2 5.66699 2C7.13975 2 8.33366 3.19391 8.33366 4.66667Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_132937\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevUserPlusMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M13.333 17.5V15.8333C13.333 14.9493 12.9818 14.1014 12.3567 13.4763C11.7316 12.8512 10.8837 12.5 9.99967 12.5H4.16634C3.28229 12.5 2.43444 12.8512 1.80932 13.4763C1.1842 14.1014 0.833008 14.9493 0.833008 15.8333V17.5M16.6663 6.66667V11.6667M19.1663 9.16667H14.1663M10.4163 5.83333C10.4163 7.67428 8.92396 9.16667 7.08301 9.16667C5.24206 9.16667 3.74967 7.67428 3.74967 5.83333C3.74967 3.99238 5.24206 2.5 7.08301 2.5C8.92396 2.5 10.4163 3.99238 10.4163 5.83333Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevCopy = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_132901)\">\n <path d=\"M3.33398 9.9987H2.66732C2.3137 9.9987 1.97456 9.85822 1.72451 9.60817C1.47446 9.35812 1.33398 9.01899 1.33398 8.66536V2.66536C1.33398 2.31174 1.47446 1.9726 1.72451 1.72256C1.97456 1.47251 2.3137 1.33203 2.66732 1.33203H8.66732C9.02094 1.33203 9.36008 1.47251 9.61013 1.72256C9.86017 1.9726 10.0007 2.31174 10.0007 2.66536V3.33203M7.33398 5.9987H13.334C14.0704 5.9987 14.6673 6.59565 14.6673 7.33203V13.332C14.6673 14.0684 14.0704 14.6654 13.334 14.6654H7.33398C6.5976 14.6654 6.00065 14.0684 6.00065 13.332V7.33203C6.00065 6.59565 6.5976 5.9987 7.33398 5.9987Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_132901\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevCopyMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21_2390)\">\n <path d=\"M4.16602 12.5013H3.33268C2.89065 12.5013 2.46673 12.3257 2.15417 12.0131C1.84161 11.7006 1.66602 11.2767 1.66602 10.8346V3.33464C1.66602 2.89261 1.84161 2.46868 2.15417 2.15612C2.46673 1.84356 2.89065 1.66797 3.33268 1.66797H10.8327C11.2747 1.66797 11.6986 1.84356 12.0112 2.15612C12.3238 2.46868 12.4993 2.89261 12.4993 3.33464V4.16797M9.16602 7.5013H16.666C17.5865 7.5013 18.3327 8.24749 18.3327 9.16797V16.668C18.3327 17.5884 17.5865 18.3346 16.666 18.3346H9.16602C8.24554 18.3346 7.49935 17.5884 7.49935 16.668V9.16797C7.49935 8.24749 8.24554 7.5013 9.16602 7.5013Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2390\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevSidebar = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M6 2V14M3.33333 2H12.6667C13.403 2 14 2.59695 14 3.33333V12.6667C14 13.403 13.403 14 12.6667 14H3.33333C2.59695 14 2 13.403 2 12.6667V3.33333C2 2.59695 2.59695 2 3.33333 2Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevMapPin = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13 6.66699C13 11.3337 7 15.3337 7 15.3337C7 15.3337 1 11.3337 1 6.66699C1 5.07569 1.63214 3.54957 2.75736 2.42435C3.88258 1.29913 5.4087 0.666992 7 0.666992C8.5913 0.666992 10.1174 1.29913 11.2426 2.42435C12.3679 3.54957 13 5.07569 13 6.66699Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M7 8.66699C8.10457 8.66699 9 7.77156 9 6.66699C9 5.56242 8.10457 4.66699 7 4.66699C5.89543 4.66699 5 5.56242 5 6.66699C5 7.77156 5.89543 8.66699 7 8.66699Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevSidebarMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M7.5 2.5V17.5M4.16667 2.5H15.8333C16.7538 2.5 17.5 3.24619 17.5 4.16667V15.8333C17.5 16.7538 16.7538 17.5 15.8333 17.5H4.16667C3.24619 17.5 2.5 16.7538 2.5 15.8333V4.16667C2.5 3.24619 3.24619 2.5 4.16667 2.5Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChart = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_26713_82376)\">\n <path d=\"M1.33398 7.9987C1.33398 4.856 1.33398 3.28465 2.3103 2.30834C3.28661 1.33203 4.85795 1.33203 8.00065 1.33203C11.1433 1.33203 12.7147 1.33203 13.691 2.30834C14.6673 3.28465 14.6673 4.856 14.6673 7.9987C14.6673 11.1414 14.6673 12.7127 13.691 13.6891C12.7147 14.6654 11.1433 14.6654 8.00065 14.6654C4.85795 14.6654 3.28661 14.6654 2.3103 13.6891C1.33398 12.7127 1.33398 11.1414 1.33398 7.9987Z\" stroke=\"#6B7280\" stroke-width=\"1.5\"/>\n <path d=\"M4.66602 12L4.66602 10\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M8 12V8\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M11.334 12V6\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_26713_82376\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevFolder = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M14.6673 12.6667C14.6673 13.0203 14.5268 13.3594 14.2768 13.6095C14.0267 13.8595 13.6876 14 13.334 14H2.66732C2.3137 14 1.97456 13.8595 1.72451 13.6095C1.47446 13.3594 1.33398 13.0203 1.33398 12.6667V3.33333C1.33398 2.97971 1.47446 2.64057 1.72451 2.39052C1.97456 2.14048 2.3137 2 2.66732 2H6.00065L7.33398 4H13.334C13.6876 4 14.0267 4.14048 14.2768 4.39052C14.5268 4.64057 14.6673 4.97971 14.6673 5.33333V12.6667Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevFolderMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M18.3327 15.8333C18.3327 16.2754 18.1571 16.6993 17.8445 17.0118C17.532 17.3244 17.108 17.5 16.666 17.5H3.33268C2.89065 17.5 2.46673 17.3244 2.15417 17.0118C1.84161 16.6993 1.66602 16.2754 1.66602 15.8333V4.16667C1.66602 3.72464 1.84161 3.30072 2.15417 2.98816C2.46673 2.67559 2.89065 2.5 3.33268 2.5H7.49935L9.16602 5H16.666C17.108 5 17.532 5.17559 17.8445 5.48816C18.1571 5.80072 18.3327 6.22464 18.3327 6.66667V15.8333Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevFolderOpen = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M12.6673 14.5C12.9435 14.5 13.1673 14.2761 13.1673 14C13.1673 13.7239 12.9435 13.5 12.6673 13.5V14.5ZM1.72451 13.6095L2.07806 13.2559L1.72451 13.6095ZM1.72451 2.39052L2.07806 2.74408L1.72451 2.39052ZM6.00065 2L6.41668 1.72265C6.32394 1.58355 6.16783 1.5 6.00065 1.5V2ZM7.33398 4L6.91796 4.27735C7.01069 4.41645 7.16681 4.5 7.33398 4.5V4ZM13.1673 6C13.1673 6.27614 13.3912 6.5 13.6673 6.5C13.9435 6.5 14.1673 6.27614 14.1673 6H13.1673ZM4.07016 6.43446L4.55248 6.56623L4.5525 6.56619L4.07016 6.43446ZM4.2678 6.12036L4.58755 6.50476L4.2678 6.12036ZM4.59248 6L4.59238 6.5H4.59248V6ZM12.6698 13.5C12.3936 13.5001 12.1698 13.724 12.1699 14.0002C12.17 14.2763 12.394 14.5001 12.6701 14.5L12.6698 13.5ZM13.714 13.1311L13.2317 12.9993L13.2317 12.9994L13.714 13.1311ZM15.4449 6.79631L15.9272 6.92809L15.9273 6.92803L15.4449 6.79631ZM14.9226 6V6.5H14.9227L14.9226 6ZM1.58675 13.6273C1.51398 13.8937 1.67092 14.1687 1.9373 14.2414C2.20368 14.3142 2.47862 14.1573 2.5514 13.8909L1.58675 13.6273ZM12.6673 13.5H2.66732V14.5H12.6673V13.5ZM2.66732 13.5C2.4463 13.5 2.23434 13.4122 2.07806 13.2559L1.37096 13.963C1.71477 14.3068 2.18109 14.5 2.66732 14.5V13.5ZM2.07806 13.2559C1.92178 13.0996 1.83398 12.8877 1.83398 12.6667H0.833984C0.833984 13.1529 1.02714 13.6192 1.37096 13.963L2.07806 13.2559ZM1.83398 12.6667V3.33333H0.833984V12.6667H1.83398ZM1.83398 3.33333C1.83398 3.11232 1.92178 2.90036 2.07806 2.74408L1.37096 2.03697C1.02714 2.38079 0.833984 2.8471 0.833984 3.33333H1.83398ZM2.07806 2.74408C2.23434 2.5878 2.4463 2.5 2.66732 2.5V1.5C2.18109 1.5 1.71477 1.69315 1.37096 2.03697L2.07806 2.74408ZM2.66732 2.5H6.00065V1.5H2.66732V2.5ZM5.58463 2.27735L6.91796 4.27735L7.75001 3.72265L6.41668 1.72265L5.58463 2.27735ZM7.33398 4.5H12.334V3.5H7.33398V4.5ZM12.334 4.5C12.555 4.5 12.767 4.5878 12.9232 4.74408L13.6303 4.03697C13.2865 3.69315 12.8202 3.5 12.334 3.5V4.5ZM12.9232 4.74408C13.0795 4.90036 13.1673 5.11232 13.1673 5.33333H14.1673C14.1673 4.8471 13.9742 4.38079 13.6303 4.03697L12.9232 4.74408ZM13.1673 5.33333V6H14.1673V5.33333H13.1673ZM4.5525 6.56619C4.56174 6.53232 4.57772 6.51293 4.58755 6.50476L3.94806 5.73595C3.76986 5.88418 3.64729 6.08497 3.58782 6.30274L4.5525 6.56619ZM4.58755 6.50476C4.5922 6.50089 4.59504 6.49979 4.59536 6.49967C4.59562 6.49958 4.59446 6.5 4.59238 6.5L4.59259 5.5C4.35314 5.49995 4.1274 5.58679 3.94806 5.73595L4.58755 6.50476ZM12.6701 14.5C13.0263 14.4999 13.3656 14.3708 13.6388 14.1434L12.9991 13.3748C12.8965 13.4602 12.7809 13.5 12.6698 13.5L12.6701 14.5ZM13.6388 14.1434C13.9109 13.917 14.1026 13.6063 14.1964 13.2628L13.2317 12.9994C13.1881 13.159 13.1029 13.2884 12.9991 13.3748L13.6388 14.1434ZM14.1964 13.2629L15.9272 6.92809L14.9626 6.66452L13.2317 12.9993L14.1964 13.2629ZM15.9273 6.92803C15.9709 6.76828 15.9804 6.60049 15.9557 6.43705L14.9669 6.58678C14.9709 6.61321 14.9692 6.64024 14.9626 6.66459L15.9273 6.92803ZM15.9557 6.43705C15.9309 6.27361 15.872 6.11534 15.7802 5.97548L14.9441 6.52395C14.9539 6.539 14.9629 6.56035 14.9669 6.58678L15.9557 6.43705ZM15.7802 5.97548C15.6884 5.83546 15.5648 5.7159 15.4157 5.6312L14.9218 6.50068C14.9254 6.50271 14.9343 6.50905 14.9441 6.52395L15.7802 5.97548ZM15.4157 5.6312C15.2662 5.54624 15.097 5.49996 14.9225 5.5L14.9227 6.5C14.9192 6.5 14.9186 6.4989 14.9218 6.50068L15.4157 5.6312ZM2.5514 13.8909L4.55248 6.56623L3.58784 6.30269L1.58675 13.6273L2.5514 13.8909ZM4.59248 6.5H14.9226V5.5H4.59248V6.5Z\" fill=\"#6B7280\"/>\n</svg>\n`;\n\nconst duckDevFolderOpenMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_6189_95788)\">\n <path d=\"M15.8327 18.25C16.2469 18.25 16.5827 17.9142 16.5827 17.5C16.5827 17.0858 16.2469 16.75 15.8327 16.75V18.25ZM2.15417 17.0118L2.6845 16.4815L2.15417 17.0118ZM2.15417 2.98816L2.6845 3.51849L2.6845 3.51849L2.15417 2.98816ZM7.49935 2.5L8.12339 2.08397C7.98429 1.87533 7.75011 1.75 7.49935 1.75V2.5ZM9.16602 5L8.54198 5.41603C8.68108 5.62467 8.91525 5.75 9.16602 5.75V5ZM16.3327 7.5C16.3327 7.91421 16.6685 8.25 17.0827 8.25C17.4969 8.25 17.8327 7.91421 17.8327 7.5H16.3327ZM5.08624 8.04308L5.80972 8.24073L5.80974 8.24066L5.08624 8.04308ZM5.33329 7.65045L5.8129 8.22705L5.33329 7.65045ZM5.73914 7.5L5.73898 8.25H5.73914V7.5ZM15.8357 16.75C15.4215 16.7501 15.0858 17.086 15.086 17.5003C15.0861 17.9145 15.422 18.2501 15.8362 18.25L15.8357 16.75ZM17.1411 16.4138L16.4176 16.2162L16.4176 16.2163L17.1411 16.4138ZM19.3047 8.49538L20.0282 8.69306L20.0282 8.69297L19.3047 8.49538ZM18.6518 7.5V8.25H18.652L18.6518 7.5ZM1.86139 17.0012C1.75223 17.4008 1.98765 17.8132 2.38722 17.9224C2.78679 18.0315 3.1992 17.7961 3.30836 17.3965L1.86139 17.0012ZM15.8327 16.75H3.33268V18.25H15.8327V16.75ZM3.33268 16.75C3.08957 16.75 2.85641 16.6534 2.6845 16.4815L1.62384 17.5422C2.07705 17.9954 2.69174 18.25 3.33268 18.25V16.75ZM2.6845 16.4815C2.51259 16.3096 2.41602 16.0764 2.41602 15.8333H0.916016C0.916016 16.4743 1.17063 17.089 1.62384 17.5422L2.6845 16.4815ZM2.41602 15.8333V4.16667H0.916016V15.8333H2.41602ZM2.41602 4.16667C2.41602 3.92355 2.51259 3.69039 2.6845 3.51849L1.62384 2.45783C1.17063 2.91104 0.916016 3.52573 0.916016 4.16667H2.41602ZM2.6845 3.51849C2.85641 3.34658 3.08957 3.25 3.33268 3.25V1.75C2.69174 1.75 2.07705 2.00461 1.62384 2.45783L2.6845 3.51849ZM3.33268 3.25H7.49935V1.75H3.33268V3.25ZM6.87531 2.91603L8.54198 5.41603L9.79005 4.58397L8.12339 2.08397L6.87531 2.91603ZM9.16602 5.75H15.416V4.25H9.16602V5.75ZM15.416 5.75C15.6591 5.75 15.8923 5.84658 16.0642 6.01849L17.1249 4.95783C16.6716 4.50461 16.057 4.25 15.416 4.25V5.75ZM16.0642 6.01849C16.2361 6.19039 16.3327 6.42355 16.3327 6.66667H17.8327C17.8327 6.02573 17.5781 5.41104 17.1249 4.95783L16.0642 6.01849ZM16.3327 6.66667V7.5H17.8327V6.66667H16.3327ZM5.80974 8.24066C5.81217 8.23177 5.81508 8.22626 5.81659 8.22387C5.8181 8.22148 5.81752 8.22321 5.8129 8.22705L4.85368 7.07384C4.60988 7.27663 4.44335 7.55029 4.36273 7.84549L5.80974 8.24066ZM5.8129 8.22705C5.80244 8.23576 5.77677 8.25001 5.73898 8.25L5.73931 6.75C5.40934 6.74993 5.09918 6.86964 4.85368 7.07384L5.8129 8.22705ZM15.8362 18.25C16.3121 18.2498 16.7642 18.0773 17.127 17.7754L16.1675 16.6224C16.0605 16.7114 15.944 16.75 15.8357 16.75L15.8362 18.25ZM17.127 17.7754C17.4881 17.4749 17.7411 17.0637 17.8646 16.6114L16.4176 16.2163C16.3694 16.3928 16.2762 16.5319 16.1675 16.6224L17.127 17.7754ZM17.8646 16.6115L20.0282 8.69306L18.5812 8.2977L16.4176 16.2162L17.8646 16.6115ZM20.0282 8.69297C20.0874 8.47635 20.1002 8.24902 20.0667 8.0276L18.5836 8.25219C18.586 8.2681 18.5849 8.28429 18.5812 8.2978L20.0282 8.69297ZM20.0667 8.0276C20.0332 7.80617 19.9533 7.59122 19.8284 7.40079L18.5741 8.2235C18.5762 8.22671 18.5812 8.23628 18.5836 8.25219L20.0667 8.0276ZM19.8284 7.40079C19.7033 7.21012 19.5345 7.04652 19.33 6.93031L18.589 8.23453C18.5753 8.22674 18.5721 8.22051 18.5741 8.2235L19.8284 7.40079ZM19.33 6.93031C19.1247 6.81371 18.892 6.74995 18.6516 6.75L18.652 8.25C18.6253 8.25001 18.6034 8.2427 18.589 8.23453L19.33 6.93031ZM3.30836 17.3965L5.80972 8.24073L4.36275 7.84542L1.86139 17.0012L3.30836 17.3965ZM5.73914 8.25H18.6518V6.75H5.73914V8.25Z\" fill=\"#6B7280\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_6189_95788\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevPlus = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.00065 3.33203V12.6654M3.33398 7.9987H12.6673\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevPlusMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M9.99935 4.16797V15.8346M4.16602 10.0013H15.8327\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevPlusCircle = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <rect width=\"16\" height=\"16\" rx=\"8\" fill=\"#595E6A\"/>\n <path d=\"M8.00065 3.33203V12.6654M3.33398 7.9987H12.6673\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevFiltersLines = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M4 8H12M2 4H14M6 12H10\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevFiltersLinesMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M5 10H15M2.5 5H17.5M7.5 15H12.5\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevSearch = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M14 14L11.1 11.1M12.6667 7.33333C12.6667 10.2789 10.2789 12.6667 7.33333 12.6667C4.38781 12.6667 2 10.2789 2 7.33333C2 4.38781 4.38781 2 7.33333 2C10.2789 2 12.6667 4.38781 12.6667 7.33333Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevSearchMedium = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M14 14L11.1 11.1M12.6667 7.33333C12.6667 10.2789 10.2789 12.6667 7.33333 12.6667C4.38781 12.6667 2 10.2789 2 7.33333C2 4.38781 4.38781 2 7.33333 2C10.2789 2 12.6667 4.38781 12.6667 7.33333Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevGrid = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M6.66667 2H2V6.66667H6.66667V2Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M14 2H9.33333V6.66667H14V2Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M14 9.33333H9.33333V14H14V9.33333Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M6.66667 9.33333H2V14H6.66667V9.33333Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevGridMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.33333 2.5H2.5V8.33333H8.33333V2.5Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M17.5 2.5H11.6667V8.33333H17.5V2.5Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M17.5 11.6667H11.6667V17.5H17.5V11.6667Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8.33333 11.6667H2.5V17.5H8.33333V11.6667Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevList = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M6.66667 5H17.5M6.66667 10H17.5M6.66667 15H17.5M2.5 5H2.50833M2.5 10H2.50833M2.5 15H2.50833\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevListMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M6.66667 5H17.5M6.66667 10H17.5M6.66667 15H17.5M2.5 5H2.50833M2.5 10H2.50833M2.5 15H2.50833\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevSortAZMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.6673 4.375C15.0125 4.375 15.2923 4.65482 15.2923 5V12.2917L16.6673 10.4583C16.8744 10.1822 17.2662 10.1262 17.5423 10.3333C17.8185 10.5404 17.8744 10.9322 17.6673 11.2083L15.1673 14.5417C15.0059 14.7569 14.7249 14.8447 14.4697 14.7596C14.2145 14.6745 14.0423 14.4357 14.0423 14.1667V5C14.0423 4.65482 14.3221 4.375 14.6673 4.375ZM6.54232 5C6.54232 4.65482 6.82214 4.375 7.16732 4.375H11.334C11.6792 4.375 11.959 4.65482 11.959 5C11.959 5.34518 11.6792 5.625 11.334 5.625H7.16732C6.82214 5.625 6.54232 5.34518 6.54232 5ZM4.87565 9.16667C4.87565 8.82149 5.15547 8.54167 5.50065 8.54167H11.334C11.6792 8.54167 11.959 8.82149 11.959 9.16667C11.959 9.51184 11.6792 9.79167 11.334 9.79167H5.50065C5.15547 9.79167 4.87565 9.51184 4.87565 9.16667ZM3.20898 13.3333C3.20898 12.9882 3.48881 12.7083 3.83398 12.7083H11.334C11.6792 12.7083 11.959 12.9882 11.959 13.3333C11.959 13.6785 11.6792 13.9583 11.334 13.9583H3.83398C3.48881 13.9583 3.20898 13.6785 3.20898 13.3333Z\" fill=\"#6B7280\"/>\n</svg>\n`;\n\nconst duckDevFlagBold = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M3.83398 0.664062C4.11013 0.664062 4.33398 0.88792 4.33398 1.16406V2.3974L5.4811 2.16797C6.58145 1.9479 7.72205 2.05262 8.76394 2.46938L9.03946 2.57959C9.98937 2.95955 11.0349 3.03051 12.0274 2.78237C12.4481 2.67721 12.7859 3.13313 12.5628 3.50494L11.7104 4.92554C11.4828 5.30498 11.3689 5.49469 11.342 5.70106C11.3307 5.78714 11.3307 5.87432 11.342 5.9604C11.3689 6.16676 11.4828 6.35648 11.7104 6.73592L12.7509 8.46998C12.9581 8.81533 12.7728 9.2627 12.382 9.36038L12.3153 9.37707C11.1356 9.67199 9.89297 9.58766 8.76394 9.13604C7.72206 8.71929 6.58145 8.61457 5.4811 8.83464L4.33398 9.06406V14.4974C4.33398 14.7735 4.11013 14.9974 3.83398 14.9974C3.55784 14.9974 3.33398 14.7735 3.33398 14.4974V1.16406C3.33398 0.88792 3.55784 0.664062 3.83398 0.664062Z\" fill=\"#6B7280\"/>\n</svg>\n`;\n\nconst duckDevFileText = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M9.33268 1.33203H3.99935C3.64573 1.33203 3.30659 1.47251 3.05654 1.72256C2.80649 1.9726 2.66602 2.31174 2.66602 2.66536V13.332C2.66602 13.6857 2.80649 14.0248 3.05654 14.2748C3.30659 14.5249 3.64573 14.6654 3.99935 14.6654H11.9993C12.353 14.6654 12.6921 14.5249 12.9422 14.2748C13.1922 14.0248 13.3327 13.6857 13.3327 13.332V5.33203M9.33268 1.33203L13.3327 5.33203M9.33268 1.33203V5.33203H13.3327M10.666 8.66536H5.33268M10.666 11.332H5.33268M6.66602 5.9987H5.33268\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevFileTextMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M11.6673 1.66797H5.00065C4.55862 1.66797 4.1347 1.84356 3.82214 2.15612C3.50958 2.46868 3.33398 2.89261 3.33398 3.33464V16.668C3.33398 17.11 3.50958 17.5339 3.82214 17.8465C4.1347 18.159 4.55862 18.3346 5.00065 18.3346H15.0007C15.4427 18.3346 15.8666 18.159 16.1792 17.8465C16.4917 17.5339 16.6673 17.11 16.6673 16.668V6.66797M11.6673 1.66797L16.6673 6.66797M11.6673 1.66797V6.66797H16.6673M13.334 10.8346H6.66732M13.334 14.168H6.66732M8.33398 7.5013H6.66732\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevLink = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_26965_119184)\">\n <path d=\"M6.6668 8.66795C6.9531 9.0507 7.31837 9.3674 7.73783 9.59657C8.1573 9.82574 8.62114 9.96202 9.0979 9.99617C9.57466 10.0303 10.0532 9.96152 10.501 9.79447C10.9489 9.62741 11.3555 9.36599 11.6935 9.02795L13.6935 7.02795C14.3007 6.39927 14.6366 5.55726 14.629 4.68328C14.6215 3.80929 14.2709 2.97324 13.6529 2.35522C13.0348 1.73719 12.1988 1.38663 11.3248 1.37903C10.4508 1.37144 9.60881 1.70742 8.98013 2.31461L7.83347 3.45461M9.33347 7.33461C9.04716 6.95186 8.68189 6.63516 8.26243 6.40599C7.84297 6.17681 7.37913 6.04053 6.90237 6.00639C6.4256 5.97225 5.94708 6.04103 5.49924 6.20809C5.0514 6.37515 4.64472 6.63657 4.3068 6.97461L2.3068 8.97461C1.69961 9.60329 1.36363 10.4453 1.37122 11.3193C1.37881 12.1933 1.72938 13.0293 2.3474 13.6473C2.96543 14.2654 3.80147 14.6159 4.67546 14.6235C5.54945 14.6311 6.39146 14.2951 7.02013 13.6879L8.16013 12.5479\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_26965_119184\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevExternalLinkMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.33366 4.16536H6.83366C5.90033 4.16536 5.43366 4.16536 5.07699 4.34703C4.76337 4.50677 4.5084 4.76174 4.34866 5.07536C4.16699 5.43203 4.16699 5.8987 4.16699 6.83203V13.1654C4.16699 14.0987 4.16699 14.5654 4.34866 14.922C4.50845 15.2356 4.7634 15.4906 5.07699 15.6504C5.43283 15.832 5.89949 15.832 6.83116 15.832H13.1695C14.1012 15.832 14.567 15.832 14.9228 15.6504C15.237 15.4904 15.492 15.2354 15.652 14.922C15.8337 14.5654 15.8337 14.0995 15.8337 13.1679V11.6654M16.667 7.4987V3.33203M16.667 3.33203H12.5003M16.667 3.33203L10.8337 9.16536\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevLinkBroken = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M1.33301 5.33203L5.33301 6.66536\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M4 2.66797L5.33333 4.66797\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M7.33301 4.37371L9.79973 1.95706C10.7728 1.00372 12.5083 1.15829 13.676 2.3023C14.8437 3.44631 15.0015 5.14654 14.0284 6.09988L12.0902 7.9987\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M10.0003 10.3911L7.3105 13.334C6.38202 14.3498 4.72612 14.1851 3.61195 12.9661C2.49778 11.7472 2.34724 9.93548 3.27572 8.91966L4.11629 8\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n</svg>\n`;\n\nconst duckDevLinkBrokenMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M1.66699 6.66797L6.66699 8.33464\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M5 3.33203L6.66667 5.83203\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M9.16699 5.47007L12.2504 2.44926C13.4667 1.25758 15.6361 1.45079 17.0957 2.8808C18.5553 4.31082 18.7525 6.4361 17.5362 7.62778L15.1135 10.0013\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M12.4997 12.9888L9.13739 16.6675C7.97679 17.9373 5.90692 17.7314 4.51421 16.2077C3.12149 14.6839 2.93332 12.4194 4.09392 11.1496L5.14464 10\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n</svg>\n`;\n\nconst duckDevClockMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21_2736)\">\n <path d=\"M9.99935 5.0013V10.0013L13.3327 11.668M18.3327 10.0013C18.3327 14.6037 14.6017 18.3346 9.99935 18.3346C5.39698 18.3346 1.66602 14.6037 1.66602 10.0013C1.66602 5.39893 5.39698 1.66797 9.99935 1.66797C14.6017 1.66797 18.3327 5.39893 18.3327 10.0013Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2736\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevInfo = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_2117_27532)\">\n <path d=\"M8.00065 10.6654V7.9987M8.00065 5.33203H8.00732M14.6673 7.9987C14.6673 11.6806 11.6825 14.6654 8.00065 14.6654C4.31875 14.6654 1.33398 11.6806 1.33398 7.9987C1.33398 4.3168 4.31875 1.33203 8.00065 1.33203C11.6825 1.33203 14.6673 4.3168 14.6673 7.9987Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_2117_27532\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevInfoMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21_2634)\">\n <path d=\"M10.0003 13.3346V10.0013M10.0003 6.66797H10.0087M18.3337 10.0013C18.3337 14.6037 14.6027 18.3346 10.0003 18.3346C5.39795 18.3346 1.66699 14.6037 1.66699 10.0013C1.66699 5.39893 5.39795 1.66797 10.0003 1.66797C14.6027 1.66797 18.3337 5.39893 18.3337 10.0013Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2634\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevInfoCircle = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.6668 7.99967C14.6668 11.6816 11.6821 14.6663 8.00016 14.6663C4.31826 14.6663 1.3335 11.6816 1.3335 7.99967C1.3335 4.31778 4.31826 1.33301 8.00016 1.33301C11.6821 1.33301 14.6668 4.31778 14.6668 7.99967ZM8.00016 11.833C8.2763 11.833 8.50016 11.6091 8.50016 11.333V7.33301C8.50016 7.05687 8.2763 6.83301 8.00016 6.83301C7.72402 6.83301 7.50016 7.05687 7.50016 7.33301V11.333C7.50016 11.6091 7.72402 11.833 8.00016 11.833ZM8.00016 4.66634C8.36835 4.66634 8.66683 4.96482 8.66683 5.33301C8.66683 5.7012 8.36835 5.99967 8.00016 5.99967C7.63197 5.99967 7.3335 5.7012 7.3335 5.33301C7.3335 4.96482 7.63197 4.66634 8.00016 4.66634Z\" fill=\"#1570EF\"/>\n</svg>\n`;\n\nconst duckDevInfoCircleBg = `\n<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <rect width=\"24\" height=\"24\" rx=\"8\" fill=\"#F0F7FF\"/>\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.6668 11.9997C18.6668 15.6816 15.6821 18.6663 12.0002 18.6663C8.31826 18.6663 5.3335 15.6816 5.3335 11.9997C5.3335 8.31778 8.31826 5.33301 12.0002 5.33301C15.6821 5.33301 18.6668 8.31778 18.6668 11.9997ZM12.0002 15.833C12.2763 15.833 12.5002 15.6091 12.5002 15.333V11.333C12.5002 11.0569 12.2763 10.833 12.0002 10.833C11.724 10.833 11.5002 11.0569 11.5002 11.333V15.333C11.5002 15.6091 11.724 15.833 12.0002 15.833ZM12.0002 8.66634C12.3684 8.66634 12.6668 8.96482 12.6668 9.33301C12.6668 9.7012 12.3684 9.99967 12.0002 9.99967C11.632 9.99967 11.3335 9.7012 11.3335 9.33301C11.3335 8.96482 11.632 8.66634 12.0002 8.66634Z\" fill=\"#1570EF\"/>\n</svg>\n`;\n\nconst duckDevAlertTriangle = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.0005 5.33412V8.00079M8.0005 10.6675H8.00717M6.8605 1.90745L1.21384 11.3341C1.09741 11.5357 1.03581 11.7643 1.03516 11.9971C1.03451 12.2299 1.09483 12.4589 1.21012 12.6611C1.32541 12.8634 1.49165 13.032 1.69231 13.15C1.89296 13.2681 2.12103 13.3316 2.35384 13.3341H13.6472C13.88 13.3316 14.108 13.2681 14.3087 13.15C14.5094 13.032 14.6756 12.8634 14.7909 12.6611C14.9062 12.4589 14.9665 12.2299 14.9658 11.9971C14.9652 11.7643 14.9036 11.5357 14.7872 11.3341L9.1405 1.90745C9.02165 1.71153 8.85432 1.54953 8.65463 1.43711C8.45495 1.32469 8.22966 1.26562 8.0005 1.26562C7.77135 1.26563 7.54606 1.32469 7.34637 1.43711C7.14669 1.54953 6.97935 1.71153 6.8605 1.90745Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevAlertTriangleMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M9.99965 6.66765V10.001M9.99965 13.3343H10.008M8.57465 2.38432L1.51632 14.1677C1.37079 14.4197 1.29379 14.7054 1.29298 14.9964C1.29216 15.2874 1.36756 15.5736 1.51167 15.8264C1.65579 16.0793 1.86359 16.2899 2.11441 16.4375C2.36523 16.5851 2.65032 16.6645 2.94132 16.6677H17.058C17.349 16.6645 17.6341 16.5851 17.8849 16.4375C18.1357 16.2899 18.3435 16.0793 18.4876 15.8264C18.6317 15.5736 18.7071 15.2874 18.7063 14.9964C18.7055 14.7054 18.6285 14.4197 18.483 14.1677L11.4247 2.38432C11.2761 2.13941 11.0669 1.93692 10.8173 1.79639C10.5677 1.65586 10.2861 1.58203 9.99965 1.58203C9.71321 1.58203 9.43159 1.65586 9.18199 1.79639C8.93238 1.93692 8.72321 2.13941 8.57465 2.38432Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevAlertCircle = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_29573_7576)\">\n <path d=\"M7.9987 14.6654C11.6806 14.6654 14.6654 11.6806 14.6654 7.9987C14.6654 4.3168 11.6806 1.33203 7.9987 1.33203C4.3168 1.33203 1.33203 4.3168 1.33203 7.9987C1.33203 11.6806 4.3168 14.6654 7.9987 14.6654Z\" stroke=\"#FC5555\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8 5.33203V7.9987\" stroke=\"#FC5555\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8 10.668H8.00667\" stroke=\"#FC5555\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_29573_7576\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDev2Layers = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M1.33398 9.66667L8.00065 13L14.6673 9.66667M8.00065 3L1.33398 6.33333L8.00065 9.66667L14.6673 6.33333L8.00065 3Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDev2LayersMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M1.66602 12.0833L9.99935 16.25L18.3327 12.0833M9.99935 3.75L1.66602 7.91667L9.99935 12.0833L18.3327 7.91667L9.99935 3.75Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDev3Layers = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_133120)\">\n <path d=\"M1.33301 11.332L7.99967 14.6654L14.6663 11.332M1.33301 7.9987L7.99967 11.332L14.6663 7.9987M7.99967 1.33203L1.33301 4.66536L7.99967 7.9987L14.6663 4.66536L7.99967 1.33203Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_133120\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDev3LayersMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <g clip-path=\"url(#clip0_21_2866)\">\n <path d=\"M1.66699 14.168L10.0003 18.3346L18.3337 14.168M1.66699 10.0013L10.0003 14.168L18.3337 10.0013M10.0003 1.66797L1.66699 5.83464L10.0003 10.0013L18.3337 5.83464L10.0003 1.66797Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2866\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevLearningMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M18.3523 7.29583V11.1387M4.81565 9.09375V14.2779C4.81565 14.2779 6.81982 16.25 9.59315 16.25C12.3669 16.25 14.3711 14.2779 14.3711 14.2779V9.09375M0.833984 7.25L9.59315 3.75L18.3523 7.25L9.59315 10.75L0.833984 7.25Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevBellMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M11.4417 17.5013C11.2952 17.7539 11.0849 17.9635 10.8319 18.1092C10.5788 18.255 10.292 18.3317 10 18.3317C9.70802 18.3317 9.42116 18.255 9.16814 18.1092C8.91513 17.9635 8.70484 17.7539 8.55833 17.5013M15 6.66797C15 5.34189 14.4732 4.07012 13.5355 3.13243C12.5979 2.19475 11.3261 1.66797 10 1.66797C8.67392 1.66797 7.40215 2.19475 6.46447 3.13243C5.52678 4.07012 5 5.34189 5 6.66797C5 12.5013 2.5 14.168 2.5 14.168H17.5C17.5 14.168 15 12.5013 15 6.66797Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevMessageCircle = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M14 7.66669C14.0023 8.5466 13.7967 9.41461 13.4 10.2C12.9296 11.1412 12.2065 11.9328 11.3116 12.4862C10.4168 13.0396 9.3855 13.3329 8.33333 13.3334C7.45342 13.3356 6.58541 13.1301 5.8 12.7334L2 14L3.26667 10.2C2.86995 9.41461 2.66437 8.5466 2.66667 7.66669C2.66707 6.61452 2.96041 5.58325 3.51381 4.68839C4.06722 3.79352 4.85884 3.0704 5.8 2.60002C6.58541 2.20331 7.45342 1.99772 8.33333 2.00002H8.66667C10.0562 2.07668 11.3687 2.66319 12.3528 3.64726C13.3368 4.63132 13.9233 5.94379 14 7.33335V7.66669Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevMessageCircleMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M17.5 9.58336C17.5029 10.6832 17.2459 11.7683 16.75 12.75C16.162 13.9265 15.2581 14.916 14.1395 15.6078C13.021 16.2995 11.7319 16.6662 10.4167 16.6667C9.31678 16.6696 8.23176 16.4126 7.25 15.9167L2.5 17.5L4.08333 12.75C3.58744 11.7683 3.33047 10.6832 3.33333 9.58336C3.33384 8.26815 3.70051 6.97907 4.39227 5.86048C5.08402 4.7419 6.07355 3.838 7.25 3.25002C8.23176 2.75413 9.31678 2.49716 10.4167 2.50002H10.8333C12.5703 2.59585 14.2109 3.32899 15.441 4.55907C16.671 5.78915 17.4042 7.42973 17.5 9.16669V9.58336Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevSlashDivider = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\">\n <line x1=\"4.25816\" y1=\"12.5543\" x2=\"9.54088\" y2=\"1.22544\" stroke=\"#6B7280\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevCaretDownFillXxs = `\n<svg width=\"12\" height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M5.54587 8.01299L2.65053 5.08183C2.30884 4.73695 2.58654 4.19531 3.10512 4.19531H8.89578C9.01184 4.19522 9.12547 4.22477 9.22306 4.2804C9.32064 4.33604 9.39806 4.41541 9.44602 4.50901C9.49399 4.60261 9.51048 4.70647 9.49352 4.80816C9.47655 4.90985 9.42685 5.00505 9.35037 5.08236L6.45503 8.01246C6.39837 8.06989 6.32849 8.11592 6.25009 8.14746C6.17168 8.179 6.08656 8.19531 6.00045 8.19531C5.91434 8.19531 5.82922 8.179 5.75082 8.14746C5.67241 8.11592 5.60253 8.06989 5.54587 8.01246V8.01299Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevCaretDownFill = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 17\" fill=\"none\">\n <path d=\"M7.24652 11.6035L2.45052 6.10753C1.88452 5.46089 2.34452 4.44531 3.20352 4.44531H12.7955C12.9878 4.44515 13.176 4.50054 13.3376 4.60486C13.4993 4.70918 13.6275 4.858 13.707 5.0335C13.7864 5.209 13.8137 5.40374 13.7856 5.5944C13.7575 5.78507 13.6752 5.96357 13.5485 6.10853L8.75252 11.6025C8.65866 11.7101 8.54291 11.7965 8.41303 11.8556C8.28316 11.9147 8.14216 11.9453 7.99952 11.9453C7.85688 11.9453 7.71589 11.9147 7.58601 11.8556C7.45614 11.7965 7.34038 11.7101 7.24652 11.6025V11.6035Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevDragHandleDots = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.86663 4.9332C6.02421 4.9332 6.18026 4.90216 6.32585 4.84186C6.47144 4.78155 6.60372 4.69316 6.71515 4.58173C6.82658 4.4703 6.91498 4.33801 6.97528 4.19242C7.03559 4.04683 7.06663 3.89079 7.06663 3.7332C7.06663 3.57562 7.03559 3.41957 6.97528 3.27398C6.91498 3.12839 6.82658 2.99611 6.71515 2.88468C6.60372 2.77324 6.47144 2.68485 6.32585 2.62455C6.18026 2.56424 6.02421 2.5332 5.86663 2.5332C5.54837 2.5332 5.24314 2.65963 5.0181 2.88468C4.79305 3.10972 4.66663 3.41494 4.66663 3.7332C4.66663 4.05146 4.79305 4.35669 5.0181 4.58173C5.24314 4.80677 5.54837 4.9332 5.86663 4.9332ZM10.1333 4.9332C10.2909 4.9332 10.4469 4.90216 10.5925 4.84186C10.7381 4.78155 10.8704 4.69316 10.9818 4.58173C11.0933 4.4703 11.1816 4.33801 11.2419 4.19242C11.3023 4.04683 11.3333 3.89079 11.3333 3.7332C11.3333 3.57562 11.3023 3.41957 11.2419 3.27398C11.1816 3.12839 11.0933 2.99611 10.9818 2.88468C10.8704 2.77324 10.7381 2.68485 10.5925 2.62455C10.4469 2.56424 10.2909 2.5332 10.1333 2.5332C9.81503 2.5332 9.50981 2.65963 9.28476 2.88468C9.05972 3.10972 8.93329 3.41494 8.93329 3.7332C8.93329 4.05146 9.05972 4.35669 9.28476 4.58173C9.50981 4.80677 9.81503 4.9332 10.1333 4.9332ZM11.3333 7.99987C11.3333 8.31813 11.2069 8.62335 10.9818 8.8484C10.7568 9.07344 10.4516 9.19987 10.1333 9.19987C9.81503 9.19987 9.50981 9.07344 9.28476 8.8484C9.05972 8.62335 8.93329 8.31813 8.93329 7.99987C8.93329 7.68161 9.05972 7.37639 9.28476 7.15134C9.50981 6.9263 9.81503 6.79987 10.1333 6.79987C10.4516 6.79987 10.7568 6.9263 10.9818 7.15134C11.2069 7.37639 11.3333 7.68161 11.3333 7.99987ZM5.86663 9.19987C6.18489 9.19987 6.49011 9.07344 6.71515 8.8484C6.9402 8.62335 7.06663 8.31813 7.06663 7.99987C7.06663 7.68161 6.9402 7.37639 6.71515 7.15134C6.49011 6.9263 6.18489 6.79987 5.86663 6.79987C5.54837 6.79987 5.24314 6.9263 5.0181 7.15134C4.79305 7.37639 4.66663 7.68161 4.66663 7.99987C4.66663 8.31813 4.79305 8.62335 5.0181 8.8484C5.24314 9.07344 5.54837 9.19987 5.86663 9.19987ZM11.3333 12.2665C11.3333 12.5848 11.2069 12.89 10.9818 13.1151C10.7568 13.3401 10.4516 13.4665 10.1333 13.4665C9.81503 13.4665 9.50981 13.3401 9.28476 13.1151C9.05972 12.89 8.93329 12.5848 8.93329 12.2665C8.93329 11.9483 9.05972 11.6431 9.28476 11.418C9.50981 11.193 9.81503 11.0665 10.1333 11.0665C10.4516 11.0665 10.7568 11.193 10.9818 11.418C11.2069 11.6431 11.3333 11.9483 11.3333 12.2665ZM5.86663 13.4665C6.18489 13.4665 6.49011 13.3401 6.71515 13.1151C6.9402 12.89 7.06663 12.5848 7.06663 12.2665C7.06663 11.9483 6.9402 11.6431 6.71515 11.418C6.49011 11.193 6.18489 11.0665 5.86663 11.0665C5.54837 11.0665 5.24314 11.193 5.0181 11.418C4.79305 11.6431 4.66663 11.9483 4.66663 12.2665C4.66663 12.5848 4.79305 12.89 5.0181 13.1151C5.24314 13.3401 5.54837 13.4665 5.86663 13.4665Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevPlayCircle = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <g clip-path=\"url(#clip0_21839_132888)\">\n <path d=\"M7.99967 14.6654C11.6816 14.6654 14.6663 11.6806 14.6663 7.9987C14.6663 4.3168 11.6816 1.33203 7.99967 1.33203C4.31778 1.33203 1.33301 4.3168 1.33301 7.9987C1.33301 11.6806 4.31778 14.6654 7.99967 14.6654Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M6.66634 5.33203L10.6663 7.9987L6.66634 10.6654V5.33203Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_132888\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevPlayCircleMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <g clip-path=\"url(#clip0_21_2356)\">\n <path d=\"M10.0003 18.3346C14.6027 18.3346 18.3337 14.6037 18.3337 10.0013C18.3337 5.39893 14.6027 1.66797 10.0003 1.66797C5.39795 1.66797 1.66699 5.39893 1.66699 10.0013C1.66699 14.6037 5.39795 18.3346 10.0003 18.3346Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8.33366 6.66797L13.3337 10.0013L8.33366 13.3346V6.66797Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2356\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevUpload = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M14 10V12.6667C14 13.0203 13.8595 13.3594 13.6095 13.6095C13.3594 13.8595 13.0203 14 12.6667 14H3.33333C2.97971 14 2.64057 13.8595 2.39052 13.6095C2.14048 13.3594 2 13.0203 2 12.6667V10M11.3333 5.33333L8 2M8 2L4.66667 5.33333M8 2V10\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevUploadMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M17.5 12.5V15.8333C17.5 16.2754 17.3244 16.6993 17.0118 17.0118C16.6993 17.3244 16.2754 17.5 15.8333 17.5H4.16667C3.72464 17.5 3.30072 17.3244 2.98816 17.0118C2.67559 16.6993 2.5 16.2754 2.5 15.8333V12.5M14.1667 6.66667L10 2.5M10 2.5L5.83333 6.66667M10 2.5V12.5\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevMaximize = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M10 2H14M14 2V6M14 2L9.33333 6.66667M6 14H2M2 14V10M2 14L6.66667 9.33333\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevMaximizeMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M12.5 2.5H17.5M17.5 2.5V7.5M17.5 2.5L11.6667 8.33333M7.5 17.5H2.5M2.5 17.5V12.5M2.5 17.5L8.33333 11.6667\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevArrowUpRight = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M4.66699 11.3346L11.3337 4.66797M11.3337 4.66797H4.66699M11.3337 4.66797V11.3346\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevArrowUpRightMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M5.83301 14.1654L14.1663 5.83203M14.1663 5.83203H5.83301M14.1663 5.83203V14.1654\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevPaperclip = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_133059)\">\n <path d=\"M14.2929 7.36727L8.16621 13.4939C7.41565 14.2445 6.39766 14.6662 5.33621 14.6662C4.27475 14.6662 3.25677 14.2445 2.50621 13.4939C1.75565 12.7434 1.33398 11.7254 1.33398 10.6639C1.33398 9.60248 1.75565 8.58449 2.50621 7.83393L8.63288 1.70726C9.13325 1.20689 9.8119 0.925781 10.5195 0.925781C11.2272 0.925781 11.9058 1.20689 12.4062 1.70726C12.9066 2.20764 13.1877 2.88629 13.1877 3.59393C13.1877 4.30157 12.9066 4.98022 12.4062 5.4806L6.27288 11.6073C6.02269 11.8575 5.68336 11.998 5.32954 11.998C4.97572 11.998 4.6364 11.8575 4.38621 11.6073C4.13602 11.3571 3.99547 11.0178 3.99547 10.6639C3.99547 10.3101 4.13602 9.97079 4.38621 9.7206L10.0462 4.06726\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_133059\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevPaperclipMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M17.8666 9.2081L10.2082 16.8664C9.27005 17.8046 7.99757 18.3317 6.67075 18.3317C5.34393 18.3317 4.07145 17.8046 3.13325 16.8664C2.19505 15.9282 1.66797 14.6558 1.66797 13.3289C1.66797 12.0021 2.19505 10.7296 3.13325 9.79144L10.7916 2.1331C11.4171 1.50763 12.2654 1.15625 13.1499 1.15625C14.0345 1.15625 14.8828 1.50763 15.5082 2.1331C16.1337 2.75857 16.4851 3.60689 16.4851 4.49144C16.4851 5.37598 16.1337 6.2243 15.5082 6.84977L7.84158 14.5081C7.52885 14.8208 7.10469 14.9965 6.66242 14.9965C6.22014 14.9965 5.79598 14.8208 5.48325 14.5081C5.17051 14.1954 4.99482 13.7712 4.99482 13.3289C4.99482 12.8867 5.17051 12.4625 5.48325 12.1498L12.5582 5.0831\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevToolsMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M16.3578 15.3946L16.3578 11.4709C16.3578 11.4138 16.3466 11.3572 16.3247 11.3044C16.3028 11.2517 16.2708 11.2037 16.2304 11.1633C16.19 11.1229 16.142 11.0908 16.0892 11.069C16.0365 11.0471 15.9799 11.0359 15.9227 11.0359H13.2571L13.259 11.0352C13.2004 11.0329 13.1419 11.0424 13.0871 11.0632C13.0323 11.084 12.9822 11.1156 12.9399 11.1563C12.8977 11.1969 12.864 11.2457 12.8411 11.2996C12.8181 11.3536 12.8063 11.4117 12.8064 11.4703L12.8064 15.3953M14.5837 11.0315V5.83144M16.3579 15.1003L16.3579 17.0628C16.358 17.1214 16.3462 17.1795 16.3232 17.2334C16.3003 17.2874 16.2666 17.3362 16.2244 17.3768C16.1821 17.4174 16.132 17.4491 16.0772 17.4699C16.0224 17.4907 15.9639 17.5002 15.9053 17.4978L15.9072 17.4972H13.2416C13.1844 17.4972 13.1278 17.486 13.0751 17.4641C13.0223 17.4422 12.9743 17.4102 12.9339 17.3698C12.8935 17.3294 12.8615 17.2814 12.8396 17.2286C12.8177 17.1758 12.8065 17.1193 12.8065 17.0621L12.8065 15.1003M5.59605 9.88524L5.59605 15.9265C5.59596 16.0853 5.62718 16.2425 5.68791 16.3893C5.74864 16.536 5.8377 16.6693 5.94999 16.7816C6.06228 16.8939 6.19561 16.983 6.34234 17.0437C6.48908 17.1044 6.64634 17.1356 6.80515 17.1356C7.12558 17.1355 7.43287 17.0082 7.65945 16.7816C7.88603 16.555 8.01334 16.2477 8.01339 15.9273L8.01254 9.88524C9.29298 9.32598 10.4295 8.04852 10.4295 6.56172C10.4299 5.07534 9.22163 3.54068 8.01254 3.23905L8.01296 5.83711L6.80429 7.28675L5.59605 5.83669L5.59605 3.23905C4.38738 3.54111 3.17871 5.07534 3.17871 6.56214C3.17914 8.04852 4.3156 9.32598 5.59605 9.88524ZM14.9913 5.5635L14.125 5.5635L13.2586 4.69714L13.6918 2.53125L15.4245 2.53125L15.8577 4.69714L14.9913 5.5635Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevPartsMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M17.208 7.8125L16.333 6.9375L17.2705 6L13.9997 2.72917L13.0622 3.66667L12.1663 2.77083L12.7913 2.125C13.1108 1.80556 13.5066 1.64931 13.9788 1.65625C14.4511 1.66319 14.8469 1.82639 15.1663 2.14583L17.8538 4.83333C18.1733 5.15278 18.333 5.54514 18.333 6.01042C18.333 6.47569 18.1733 6.86806 17.8538 7.1875L17.208 7.8125ZM7.20801 17.8333C6.88856 18.1528 6.4962 18.3125 6.03092 18.3125C5.56565 18.3125 5.17329 18.1528 4.85384 17.8333L1.87467 14.8542C1.63856 14.6128 1.52051 14.3164 1.52051 13.9648C1.52051 13.6133 1.63856 13.3194 1.87467 13.0833L2.79134 12.1667L3.68717 13.0417L2.74967 13.9792L6.02051 17.25L6.95801 16.3125L7.83301 17.2083L7.20801 17.8333ZM15.4788 11.4167L17.2497 9.64583L10.3538 2.75L8.58301 4.52083L15.4788 11.4167ZM9.64551 17.25L11.4372 15.4583L4.54134 8.5625L2.74967 10.3542L9.64551 17.25ZM9.83301 12.0833L12.1038 9.8125L10.1872 7.89583L7.91634 10.1667L9.83301 12.0833ZM10.5205 18.125C10.2853 18.3611 9.99388 18.4792 9.64619 18.4792C9.29851 18.4792 9.00662 18.3611 8.77051 18.125L1.87467 11.2292C1.63856 10.994 1.52051 10.7025 1.52051 10.3549C1.52051 10.0072 1.63856 9.71528 1.87467 9.47917L3.64551 7.6875C3.88687 7.45139 4.18332 7.33333 4.53486 7.33333C4.8864 7.33333 5.18023 7.45139 5.41634 7.6875L7.02051 9.29167L9.31217 7L7.70801 5.39583C7.4719 5.16064 7.35384 4.8692 7.35384 4.52152C7.35384 4.17384 7.4719 3.88194 7.70801 3.64583L9.47884 1.85417C9.7202 1.61806 10.0167 1.5 10.3682 1.5C10.7197 1.5 11.0136 1.61806 11.2497 1.85417L18.1455 8.75C18.3816 8.99136 18.4997 9.28781 18.4997 9.63935C18.4997 9.9909 18.3816 10.2847 18.1455 10.5208L16.3538 12.2917C16.1186 12.5278 15.8272 12.6458 15.4795 12.6458C15.1318 12.6458 14.84 12.5278 14.6038 12.2917L12.9997 10.6875L10.708 12.9792L12.3122 14.5833C12.5483 14.8247 12.6663 15.1211 12.6663 15.4727C12.6663 15.8242 12.5483 16.1181 12.3122 16.3542L10.5205 18.125Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\n\nconst duckDevPrimitive = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M3.84376 6.66797L3.31889 6.87791C1.99497 7.40748 1.33301 7.67227 1.33301 8.0013C1.33301 8.33033 1.99497 8.59512 3.31889 9.12469L5.19121 9.87361C6.51513 10.4032 7.17709 10.668 7.99967 10.668C8.82226 10.668 9.48422 10.4032 10.8081 9.87361L12.6805 9.12469C14.0044 8.59512 14.6663 8.33033 14.6663 8.0013C14.6663 7.67227 14.0044 7.40748 12.6805 6.87791L12.1556 6.66797M3.84376 9.33464L3.31889 9.54458C1.99497 10.0742 1.33301 10.3389 1.33301 10.668C1.33301 10.997 1.99497 11.2618 3.31889 11.7914L5.19121 12.5403C6.51513 13.0699 7.17709 13.3346 7.99967 13.3346C8.82226 13.3346 9.48422 13.0699 10.8081 12.5403L12.6805 11.7914C14.0044 11.2618 14.6663 10.997 14.6663 10.668C14.6663 10.3389 14.0044 10.0742 12.6805 9.54458L12.1556 9.33464M10.8081 7.20695L12.6805 6.45802C14.0044 5.92845 14.6663 5.66367 14.6663 5.33464C14.6663 5.0056 14.0044 4.74082 12.6805 4.21125L10.8081 3.46232C9.48422 2.93275 8.82226 2.66797 7.99967 2.66797C7.17709 2.66797 6.51513 2.93275 5.19121 3.46232L3.31889 4.21125C1.99497 4.74082 1.33301 5.0056 1.33301 5.33464C1.33301 5.66367 1.99497 5.92845 3.31889 6.45802L5.19121 7.20695C6.51513 7.73652 7.17709 8.0013 7.99967 8.0013C8.82226 8.0013 9.48422 7.73652 10.8081 7.20695Z\" stroke=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevPrimitiveMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M4.80543 8.33203L4.14935 8.59446C2.49445 9.25643 1.66699 9.58741 1.66699 9.9987C1.66699 10.41 2.49445 10.741 4.14935 11.4029L6.48974 12.3391C8.14465 13.001 8.9721 13.332 10.0003 13.332C11.0286 13.332 11.856 13.001 13.5109 12.3391L15.8513 11.4029C17.5062 10.741 18.3337 10.41 18.3337 9.9987C18.3337 9.58741 17.5062 9.25643 15.8513 8.59446L15.1952 8.33203M4.80543 11.6654L4.14935 11.9278C2.49445 12.5898 1.66699 12.9207 1.66699 13.332C1.66699 13.7433 2.49445 14.0743 4.14935 14.7363L6.48974 15.6724C8.14465 16.3344 8.9721 16.6654 10.0003 16.6654C11.0286 16.6654 11.856 16.3344 13.5109 15.6724L15.8513 14.7363C17.5062 14.0743 18.3337 13.7433 18.3337 13.332C18.3337 12.9207 17.5062 12.5898 15.8513 11.9278L15.1952 11.6654M13.5109 9.00575L15.8513 8.0696C17.5062 7.40764 18.3337 7.07666 18.3337 6.66536C18.3337 6.25407 17.5062 5.92309 15.8513 5.26113L13.5109 4.32497C11.856 3.66301 11.0286 3.33203 10.0003 3.33203C8.9721 3.33203 8.14465 3.66301 6.48974 4.32497L4.14935 5.26113C2.49445 5.92309 1.66699 6.25407 1.66699 6.66536C1.66699 7.07666 2.49445 7.40764 4.14935 8.0696L6.48974 9.00575C8.14465 9.66772 8.9721 9.9987 10.0003 9.9987C11.0286 9.9987 11.856 9.66772 13.5109 9.00575Z\" stroke=\"#595E6A\" stroke-width=\"1.5\"/>\n</svg>\n`;\n\nconst duckDevTank = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M9.34494 2.97285L9.51297 3.44377L9.34494 2.97285ZM4.01161 4.8758L3.84358 4.40488V4.40488L4.01161 4.8758ZM9.64612 6.97978C9.45086 7.17504 9.45086 7.49162 9.64612 7.68689C9.84138 7.88215 10.158 7.88215 10.3532 7.68689L9.64612 6.97978ZM11.0199 7.02022C11.2152 6.82496 11.2152 6.50838 11.0199 6.31311C10.8246 6.11785 10.508 6.11785 10.3128 6.31311L11.0199 7.02022ZM5.64612 7.68689C5.84138 7.88215 6.15797 7.88215 6.35323 7.68689C6.54849 7.49162 6.54849 7.17504 6.35323 6.97978L5.64612 7.68689ZM5.68656 6.31311C5.4913 6.11785 5.17472 6.11785 4.97945 6.31311C4.78419 6.50838 4.78419 6.82496 4.97945 7.02022L5.68656 6.31311ZM10.3532 10.9798C10.158 10.7845 9.84138 10.7845 9.64612 10.9798C9.45086 11.175 9.45086 11.4916 9.64612 11.6869L10.3532 10.9798ZM10.3128 12.3536C10.508 12.5488 10.8246 12.5488 11.0199 12.3536C11.2152 12.1583 11.2152 11.8417 11.0199 11.6464L10.3128 12.3536ZM6.35323 11.6869C6.54849 11.4916 6.54849 11.175 6.35323 10.9798C6.15797 10.7845 5.84138 10.7845 5.64612 10.9798L6.35323 11.6869ZM4.97945 11.6464C4.78419 11.8417 4.78419 12.1583 4.97945 12.3536C5.17472 12.5488 5.4913 12.5488 5.68656 12.3536L4.97945 11.6464ZM6.52445 2.70458L6.39262 3.18689L6.39262 3.18689L6.52445 2.70458ZM6.81224 3.61846C6.8824 3.88554 7.15579 4.04518 7.42287 3.97502C7.68995 3.90486 7.84959 3.63147 7.77943 3.36439L6.81224 3.61846ZM2.83301 4.70673C2.83301 4.98287 3.05687 5.20673 3.33301 5.20673C3.60915 5.20673 3.83301 4.98287 3.83301 4.70673H2.83301ZM3.55844 3.10202L3.15887 2.80144L3.55844 3.10202ZM3.75981 2.89661L3.45164 2.50288L3.45164 2.50288L3.75981 2.89661ZM4.17963 5.34672L9.51297 3.44377L9.17691 2.50193L3.84358 4.40488L4.17963 5.34672ZM14.1663 6.82167V10.5889H15.1663V6.82167H14.1663ZM10.6663 14.1667H5.33301V15.1667H10.6663V14.1667ZM1.83301 10.5889V8.72462H0.833008V10.5889H1.83301ZM5.33301 14.1667C4.3758 14.1667 3.70915 14.1656 3.20636 14.0967C2.71895 14.0298 2.46065 13.9079 2.27573 13.7194L1.56185 14.4196C1.96272 14.8283 2.46872 15.0049 3.07057 15.0874C3.65703 15.1678 4.4046 15.1667 5.33301 15.1667V14.1667ZM0.833008 10.5889C0.833008 11.5362 0.831985 12.296 0.910523 12.8915C0.99083 13.5004 1.1623 14.0123 1.56185 14.4196L2.27573 13.7194C2.0895 13.5295 1.96808 13.2622 1.90194 12.7607C1.83403 12.2458 1.83301 11.5639 1.83301 10.5889H0.833008ZM14.1663 10.5889C14.1663 11.5639 14.1653 12.2458 14.0974 12.7607C14.0313 13.2622 13.9098 13.5295 13.7236 13.7194L14.4375 14.4196C14.837 14.0123 15.0085 13.5004 15.0888 12.8915C15.1674 12.296 15.1663 11.5362 15.1663 10.5889H14.1663ZM10.6663 15.1667C11.5947 15.1667 12.3423 15.1678 12.9288 15.0874C13.5306 15.0049 14.0366 14.8283 14.4375 14.4196L13.7236 13.7194C13.5387 13.9079 13.2804 14.0298 12.793 14.0967C12.2902 14.1656 11.6236 14.1667 10.6663 14.1667V15.1667ZM9.51297 3.44377C10.7405 3.00577 11.6078 2.69774 12.2738 2.56663C12.9278 2.4379 13.2733 2.50409 13.5306 2.69018L14.1166 1.8799C13.5312 1.45648 12.8494 1.43413 12.0807 1.58546C11.324 1.73442 10.3733 2.07505 9.17691 2.50193L9.51297 3.44377ZM15.1663 6.82167C15.1663 5.52857 15.1676 4.50363 15.0559 3.7288C14.9428 2.94428 14.6995 2.30144 14.1166 1.8799L13.5306 2.69018C13.7905 2.87816 13.9685 3.1946 14.0661 3.87149C14.1651 4.55808 14.1663 5.4967 14.1663 6.82167H15.1663ZM3.84358 4.40488C3.20745 4.63185 2.69046 4.81551 2.28924 5.01272C1.87606 5.21582 1.54145 5.45346 1.29145 5.81269L2.11224 6.38392C2.23107 6.21317 2.40437 6.07041 2.73037 5.91017C3.06834 5.74404 3.52181 5.58144 4.17963 5.34672L3.84358 4.40488ZM1.83301 8.72462C1.83301 8.01467 1.83372 7.52297 1.87606 7.14124C1.91707 6.7716 1.99287 6.55543 2.11224 6.38392L1.29145 5.81269C1.04198 6.17114 0.933367 6.56935 0.88216 7.03099C0.832295 7.48053 0.833008 8.03701 0.833008 8.72462H1.83301ZM7.99967 10.8333C7.51413 10.8333 7.20028 10.8323 6.96903 10.8012C6.75216 10.772 6.68418 10.7249 6.64612 10.6869L5.93901 11.394C6.19384 11.6488 6.50802 11.7482 6.83578 11.7923C7.14915 11.8344 7.5424 11.8333 7.99967 11.8333V10.8333ZM5.49967 9.33333C5.49967 9.7906 5.49861 10.1839 5.54074 10.4972C5.58481 10.825 5.68418 11.1392 5.93901 11.394L6.64612 10.6869C6.60806 10.6488 6.56098 10.5809 6.53183 10.364C6.50074 10.1327 6.49967 9.81887 6.49967 9.33333H5.49967ZM9.49967 9.33333C9.49967 9.81887 9.49861 10.1327 9.46752 10.364C9.43836 10.5809 9.39129 10.6488 9.35323 10.6869L10.0603 11.394C10.3152 11.1392 10.4145 10.825 10.4586 10.4972C10.5007 10.1839 10.4997 9.7906 10.4997 9.33333H9.49967ZM7.99967 11.8333C8.45694 11.8333 8.85019 11.8344 9.16357 11.7923C9.49133 11.7482 9.8055 11.6488 10.0603 11.394L9.35323 10.6869C9.31517 10.7249 9.24719 10.772 9.03032 10.8012C8.79907 10.8323 8.48521 10.8333 7.99967 10.8333V11.8333ZM7.99967 7.83333C8.48521 7.83333 8.79907 7.8344 9.03032 7.86549C9.24719 7.89464 9.31517 7.94172 9.35323 7.97978L10.0603 7.27267C9.8055 7.01784 9.49133 6.91847 9.16357 6.8744C8.85019 6.83227 8.45694 6.83333 7.99967 6.83333V7.83333ZM10.4997 9.33333C10.4997 8.87606 10.5007 8.48281 10.4586 8.16944C10.4145 7.84168 10.3152 7.5275 10.0603 7.27267L9.35323 7.97978C9.39129 8.01784 9.43836 8.08582 9.46752 8.30269C9.49861 8.53394 9.49967 8.84779 9.49967 9.33333H10.4997ZM7.99967 6.83333C7.5424 6.83333 7.14915 6.83227 6.83578 6.8744C6.50802 6.91847 6.19384 7.01784 5.93901 7.27267L6.64612 7.97978C6.68418 7.94172 6.75216 7.89464 6.96903 7.86549C7.20028 7.8344 7.51413 7.83333 7.99967 7.83333V6.83333ZM6.49967 9.33333C6.49967 8.84779 6.50074 8.53394 6.53183 8.30269C6.56098 8.08582 6.60806 8.01784 6.64612 7.97978L5.93901 7.27267C5.68418 7.5275 5.58481 7.84168 5.54074 8.16944C5.49861 8.48281 5.49967 8.87606 5.49967 9.33333H6.49967ZM10.3532 7.68689L11.0199 7.02022L10.3128 6.31311L9.64612 6.97978L10.3532 7.68689ZM6.35323 6.97978L5.68656 6.31311L4.97945 7.02022L5.64612 7.68689L6.35323 6.97978ZM9.64612 11.6869L10.3128 12.3536L11.0199 11.6464L10.3532 10.9798L9.64612 11.6869ZM5.64612 10.9798L4.97945 11.6464L5.68656 12.3536L6.35323 11.6869L5.64612 10.9798ZM5.33301 3.16667H5.87846V2.16667H5.33301V3.16667ZM5.87846 3.16667C6.24941 3.16667 6.33493 3.17112 6.39262 3.18689L6.65627 2.22227C6.43651 2.16221 6.18386 2.16667 5.87846 2.16667V3.16667ZM6.39262 3.18689C6.59312 3.24169 6.75578 3.4035 6.81224 3.61846L7.77943 3.36439C7.63415 2.81133 7.2087 2.37326 6.65627 2.22227L6.39262 3.18689ZM3.83301 4.70673C3.83301 4.26031 3.83372 3.96654 3.85816 3.74542C3.88155 3.53375 3.92144 3.4512 3.95801 3.4026L3.15887 2.80144C2.97001 3.05251 2.89718 3.33731 2.86421 3.63557C2.83229 3.92438 2.83301 4.28312 2.83301 4.70673H3.83301ZM5.33301 2.16667C4.9184 2.16667 4.56476 2.16589 4.27961 2.19868C3.98373 2.23271 3.70035 2.30821 3.45164 2.50288L4.06799 3.29035C4.11307 3.25507 4.18982 3.2156 4.39385 3.19214C4.60862 3.16744 4.89468 3.16667 5.33301 3.16667V2.16667ZM3.95801 3.4026C3.98992 3.36018 4.02694 3.32248 4.06799 3.29035L3.45164 2.50288C3.34142 2.58915 3.24304 2.68956 3.15887 2.80144L3.95801 3.4026Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevTankMedium = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M9.34494 2.97285L9.51297 3.44377L9.34494 2.97285ZM4.01161 4.8758L3.84358 4.40488V4.40488L4.01161 4.8758ZM9.64612 6.97978C9.45086 7.17504 9.45086 7.49162 9.64612 7.68689C9.84138 7.88215 10.158 7.88215 10.3532 7.68689L9.64612 6.97978ZM11.0199 7.02022C11.2152 6.82496 11.2152 6.50838 11.0199 6.31311C10.8246 6.11785 10.508 6.11785 10.3128 6.31311L11.0199 7.02022ZM5.64612 7.68689C5.84138 7.88215 6.15797 7.88215 6.35323 7.68689C6.54849 7.49162 6.54849 7.17504 6.35323 6.97978L5.64612 7.68689ZM5.68656 6.31311C5.4913 6.11785 5.17472 6.11785 4.97945 6.31311C4.78419 6.50838 4.78419 6.82496 4.97945 7.02022L5.68656 6.31311ZM10.3532 10.9798C10.158 10.7845 9.84138 10.7845 9.64612 10.9798C9.45086 11.175 9.45086 11.4916 9.64612 11.6869L10.3532 10.9798ZM10.3128 12.3536C10.508 12.5488 10.8246 12.5488 11.0199 12.3536C11.2152 12.1583 11.2152 11.8417 11.0199 11.6464L10.3128 12.3536ZM6.35323 11.6869C6.54849 11.4916 6.54849 11.175 6.35323 10.9798C6.15797 10.7845 5.84138 10.7845 5.64612 10.9798L6.35323 11.6869ZM4.97945 11.6464C4.78419 11.8417 4.78419 12.1583 4.97945 12.3536C5.17472 12.5488 5.4913 12.5488 5.68656 12.3536L4.97945 11.6464ZM6.52445 2.70458L6.39262 3.18689L6.39262 3.18689L6.52445 2.70458ZM6.81224 3.61846C6.8824 3.88554 7.15579 4.04518 7.42287 3.97502C7.68995 3.90486 7.84959 3.63147 7.77943 3.36439L6.81224 3.61846ZM2.83301 4.70673C2.83301 4.98287 3.05687 5.20673 3.33301 5.20673C3.60915 5.20673 3.83301 4.98287 3.83301 4.70673H2.83301ZM3.55844 3.10202L3.15887 2.80144L3.55844 3.10202ZM3.75981 2.89661L3.45164 2.50288L3.45164 2.50288L3.75981 2.89661ZM4.17963 5.34672L9.51297 3.44377L9.17691 2.50193L3.84358 4.40488L4.17963 5.34672ZM14.1663 6.82167V10.5889H15.1663V6.82167H14.1663ZM10.6663 14.1667H5.33301V15.1667H10.6663V14.1667ZM1.83301 10.5889V8.72462H0.833008V10.5889H1.83301ZM5.33301 14.1667C4.3758 14.1667 3.70915 14.1656 3.20636 14.0967C2.71895 14.0298 2.46065 13.9079 2.27573 13.7194L1.56185 14.4196C1.96272 14.8283 2.46872 15.0049 3.07057 15.0874C3.65703 15.1678 4.4046 15.1667 5.33301 15.1667V14.1667ZM0.833008 10.5889C0.833008 11.5362 0.831985 12.296 0.910523 12.8915C0.99083 13.5004 1.1623 14.0123 1.56185 14.4196L2.27573 13.7194C2.0895 13.5295 1.96808 13.2622 1.90194 12.7607C1.83403 12.2458 1.83301 11.5639 1.83301 10.5889H0.833008ZM14.1663 10.5889C14.1663 11.5639 14.1653 12.2458 14.0974 12.7607C14.0313 13.2622 13.9098 13.5295 13.7236 13.7194L14.4375 14.4196C14.837 14.0123 15.0085 13.5004 15.0888 12.8915C15.1674 12.296 15.1663 11.5362 15.1663 10.5889H14.1663ZM10.6663 15.1667C11.5947 15.1667 12.3423 15.1678 12.9288 15.0874C13.5306 15.0049 14.0366 14.8283 14.4375 14.4196L13.7236 13.7194C13.5387 13.9079 13.2804 14.0298 12.793 14.0967C12.2902 14.1656 11.6236 14.1667 10.6663 14.1667V15.1667ZM9.51297 3.44377C10.7405 3.00577 11.6078 2.69774 12.2738 2.56663C12.9278 2.4379 13.2733 2.50409 13.5306 2.69018L14.1166 1.8799C13.5312 1.45648 12.8494 1.43413 12.0807 1.58546C11.324 1.73442 10.3733 2.07505 9.17691 2.50193L9.51297 3.44377ZM15.1663 6.82167C15.1663 5.52857 15.1676 4.50363 15.0559 3.7288C14.9428 2.94428 14.6995 2.30144 14.1166 1.8799L13.5306 2.69018C13.7905 2.87816 13.9685 3.1946 14.0661 3.87149C14.1651 4.55808 14.1663 5.4967 14.1663 6.82167H15.1663ZM3.84358 4.40488C3.20745 4.63185 2.69046 4.81551 2.28924 5.01272C1.87606 5.21582 1.54145 5.45346 1.29145 5.81269L2.11224 6.38392C2.23107 6.21317 2.40437 6.07041 2.73037 5.91017C3.06834 5.74404 3.52181 5.58144 4.17963 5.34672L3.84358 4.40488ZM1.83301 8.72462C1.83301 8.01467 1.83372 7.52297 1.87606 7.14124C1.91707 6.7716 1.99287 6.55543 2.11224 6.38392L1.29145 5.81269C1.04198 6.17114 0.933367 6.56935 0.88216 7.03099C0.832295 7.48053 0.833008 8.03701 0.833008 8.72462H1.83301ZM7.99967 10.8333C7.51413 10.8333 7.20028 10.8323 6.96903 10.8012C6.75216 10.772 6.68418 10.7249 6.64612 10.6869L5.93901 11.394C6.19384 11.6488 6.50802 11.7482 6.83578 11.7923C7.14915 11.8344 7.5424 11.8333 7.99967 11.8333V10.8333ZM5.49967 9.33333C5.49967 9.7906 5.49861 10.1839 5.54074 10.4972C5.58481 10.825 5.68418 11.1392 5.93901 11.394L6.64612 10.6869C6.60806 10.6488 6.56098 10.5809 6.53183 10.364C6.50074 10.1327 6.49967 9.81887 6.49967 9.33333H5.49967ZM9.49967 9.33333C9.49967 9.81887 9.49861 10.1327 9.46752 10.364C9.43836 10.5809 9.39129 10.6488 9.35323 10.6869L10.0603 11.394C10.3152 11.1392 10.4145 10.825 10.4586 10.4972C10.5007 10.1839 10.4997 9.7906 10.4997 9.33333H9.49967ZM7.99967 11.8333C8.45694 11.8333 8.85019 11.8344 9.16357 11.7923C9.49133 11.7482 9.8055 11.6488 10.0603 11.394L9.35323 10.6869C9.31517 10.7249 9.24719 10.772 9.03032 10.8012C8.79907 10.8323 8.48521 10.8333 7.99967 10.8333V11.8333ZM7.99967 7.83333C8.48521 7.83333 8.79907 7.8344 9.03032 7.86549C9.24719 7.89464 9.31517 7.94172 9.35323 7.97978L10.0603 7.27267C9.8055 7.01784 9.49133 6.91847 9.16357 6.8744C8.85019 6.83227 8.45694 6.83333 7.99967 6.83333V7.83333ZM10.4997 9.33333C10.4997 8.87606 10.5007 8.48281 10.4586 8.16944C10.4145 7.84168 10.3152 7.5275 10.0603 7.27267L9.35323 7.97978C9.39129 8.01784 9.43836 8.08582 9.46752 8.30269C9.49861 8.53394 9.49967 8.84779 9.49967 9.33333H10.4997ZM7.99967 6.83333C7.5424 6.83333 7.14915 6.83227 6.83578 6.8744C6.50802 6.91847 6.19384 7.01784 5.93901 7.27267L6.64612 7.97978C6.68418 7.94172 6.75216 7.89464 6.96903 7.86549C7.20028 7.8344 7.51413 7.83333 7.99967 7.83333V6.83333ZM6.49967 9.33333C6.49967 8.84779 6.50074 8.53394 6.53183 8.30269C6.56098 8.08582 6.60806 8.01784 6.64612 7.97978L5.93901 7.27267C5.68418 7.5275 5.58481 7.84168 5.54074 8.16944C5.49861 8.48281 5.49967 8.87606 5.49967 9.33333H6.49967ZM10.3532 7.68689L11.0199 7.02022L10.3128 6.31311L9.64612 6.97978L10.3532 7.68689ZM6.35323 6.97978L5.68656 6.31311L4.97945 7.02022L5.64612 7.68689L6.35323 6.97978ZM9.64612 11.6869L10.3128 12.3536L11.0199 11.6464L10.3532 10.9798L9.64612 11.6869ZM5.64612 10.9798L4.97945 11.6464L5.68656 12.3536L6.35323 11.6869L5.64612 10.9798ZM5.33301 3.16667H5.87846V2.16667H5.33301V3.16667ZM5.87846 3.16667C6.24941 3.16667 6.33493 3.17112 6.39262 3.18689L6.65627 2.22227C6.43651 2.16221 6.18386 2.16667 5.87846 2.16667V3.16667ZM6.39262 3.18689C6.59312 3.24169 6.75578 3.4035 6.81224 3.61846L7.77943 3.36439C7.63415 2.81133 7.2087 2.37326 6.65627 2.22227L6.39262 3.18689ZM3.83301 4.70673C3.83301 4.26031 3.83372 3.96654 3.85816 3.74542C3.88155 3.53375 3.92144 3.4512 3.95801 3.4026L3.15887 2.80144C2.97001 3.05251 2.89718 3.33731 2.86421 3.63557C2.83229 3.92438 2.83301 4.28312 2.83301 4.70673H3.83301ZM5.33301 2.16667C4.9184 2.16667 4.56476 2.16589 4.27961 2.19868C3.98373 2.23271 3.70035 2.30821 3.45164 2.50288L4.06799 3.29035C4.11307 3.25507 4.18982 3.2156 4.39385 3.19214C4.60862 3.16744 4.89468 3.16667 5.33301 3.16667V2.16667ZM3.95801 3.4026C3.98992 3.36018 4.02694 3.32248 4.06799 3.29035L3.45164 2.50288C3.34142 2.58915 3.24304 2.68956 3.15887 2.80144L3.95801 3.4026Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevVariant = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M4.9 4.90078C6.36135 3.43943 7.09203 2.70875 8 2.70875C8.90797 2.70875 9.63865 3.43943 11.1 4.90078C12.5614 6.36214 13.292 7.09281 13.292 8.00078C13.292 8.90875 12.5614 9.63943 11.1 11.1008C9.63865 12.5621 8.90797 13.2928 8 13.2928C7.09203 13.2928 6.36135 12.5621 4.9 11.1008C3.43865 9.63943 2.70797 8.90875 2.70797 8.00078C2.70797 7.09281 3.43865 6.36214 4.9 4.90078Z\" stroke=\"#595E6A\" stroke-width=\"1.5\"/>\n</svg>\n`;\n\nconst duckDevVariantMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M6.125 6.125C7.95169 4.29831 8.86504 3.38496 10 3.38496C11.135 3.38496 12.0483 4.29831 13.875 6.125C15.7017 7.95169 16.615 8.86504 16.615 10C16.615 11.135 15.7017 12.0483 13.875 13.875C12.0483 15.7017 11.135 16.615 10 16.615C8.86504 16.615 7.95169 15.7017 6.125 13.875C4.29831 12.0483 3.38496 11.135 3.38496 10C3.38496 8.86504 4.29831 7.95169 6.125 6.125Z\" stroke=\"#595E6A\" stroke-width=\"1.5\"/>\n</svg>\n`;\n\nconst duckDevChecklist = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M13.3359 3.33268H15.0026C15.4446 3.33268 15.8686 3.50828 16.1811 3.82084C16.4937 4.1334 16.6693 4.55732 16.6693 4.99935V16.666C16.6693 17.108 16.4937 17.532 16.1811 17.8445C15.8686 18.1571 15.4446 18.3327 15.0026 18.3327H5.0026C4.56058 18.3327 4.13665 18.1571 3.82409 17.8445C3.51153 17.532 3.33594 17.108 3.33594 16.666V4.99935C3.33594 4.55732 3.51153 4.1334 3.82409 3.82084C4.13665 3.50828 4.56058 3.33268 5.0026 3.33268H6.66927M7.5026 1.66602H12.5026C12.9628 1.66602 13.3359 2.03911 13.3359 2.49935V4.16602C13.3359 4.62625 12.9628 4.99935 12.5026 4.99935H7.5026C7.04237 4.99935 6.66927 4.62625 6.66927 4.16602V2.49935C6.66927 2.03911 7.04237 1.66602 7.5026 1.66602Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M7.5 11.168L8.92857 12.5013L12.5 9.16797\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevRefreshCcwMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M0.833008 3.33527V8.33527M0.833008 8.33527H5.83301M0.833008 8.33527L4.69967 4.70193C5.5953 3.80586 6.70332 3.15127 7.92035 2.79925C9.13738 2.44722 10.4238 2.40923 11.6594 2.68882C12.8951 2.96841 14.0398 3.55646 14.9868 4.39812C15.9337 5.23977 16.652 6.30759 17.0747 7.50193M19.1663 16.6686V11.6686M19.1663 11.6686H14.1663M19.1663 11.6686L15.2997 15.3019C14.4041 16.198 13.296 16.8526 12.079 17.2046C10.862 17.5567 9.5756 17.5946 8.33991 17.3151C7.10423 17.0355 5.95951 16.4474 5.01256 15.6058C4.06562 14.7641 3.34731 13.6963 2.92467 12.5019\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevRefreshCcw = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <g clip-path=\"url(#clip0_21839_133127)\">\n <path d=\"M0.666992 2.66509V6.66509M0.666992 6.66509H4.66699M0.666992 6.66509L3.76033 3.75842C4.47682 3.04157 5.36324 2.51789 6.33687 2.23627C7.31049 1.95465 8.33959 1.92426 9.32813 2.14793C10.3167 2.3716 11.2325 2.84205 11.99 3.51537C12.7476 4.18869 13.3222 5.04295 13.6603 5.99842M15.3337 13.3318V9.33176M15.3337 9.33176H11.3337M15.3337 9.33176L12.2403 12.2384C11.5238 12.9553 10.6374 13.479 9.66379 13.7606C8.69016 14.0422 7.66106 14.0726 6.67252 13.8489C5.68397 13.6252 4.76819 13.1548 4.01064 12.4815C3.25308 11.8082 2.67844 10.9539 2.34033 9.99842\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_133127\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevBarChartMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M10 16.6654V8.33203M15 16.6654V3.33203M5 16.6654V13.332\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevBarChart = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M8 13.3346V6.66797M12 13.3346V2.66797M4 13.3346V10.668\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevCurvedArrow = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" >\n <path d=\"M9.00033 5.66797L12.3337 9.0013M12.3337 9.0013L9.00033 12.3346M12.3337 9.0013L4.33366 9.0013C3.62641 9.0013 2.94814 8.72035 2.44804 8.22025C1.94794 7.72016 1.66699 7.04188 1.66699 6.33464L1.66699 1.66797\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevBulletMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"21\" height=\"21\" viewBox=\"0 0 21 21\" fill=\"none\">\n <circle cx=\"10.0488\" cy=\"10.5\" r=\"5\" fill=\"#DCDEE3\"/>\n</svg>\n`;\n\nconst duckDevBulletFillMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"21\" height=\"21\" viewBox=\"0 0 21 21\" fill=\"none\">\n <circle opacity=\"0.2\" cx=\"10.0488\" cy=\"10.5\" r=\"8\" fill=\"#0099FF\"/>\n <circle cx=\"10.0488\" cy=\"10.5\" r=\"4\" fill=\"#0099FF\"/>\n</svg>\n`;\nconst duckDevArrowRight = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M3.33301 7.9987H12.6663M12.6663 7.9987L7.99967 3.33203M12.6663 7.9987L7.99967 12.6654\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevArrowRightMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M4.16699 10.0013H15.8337M15.8337 10.0013L10.0003 4.16797M15.8337 10.0013L10.0003 15.8346\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevForkLift = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\">\n <path d=\"M13.3996 9.63322C13.731 9.63322 13.9996 9.36459 13.9996 9.03322C13.9996 8.70185 13.731 8.43322 13.3996 8.43322V9.63322ZM11.0237 0.890625C11.0237 0.559254 10.755 0.290625 10.4237 0.290625C10.0923 0.290625 9.82366 0.559254 9.82366 0.890625H11.0237ZM7.04311 1.7553C7.37448 1.7553 7.64311 1.48667 7.64311 1.1553C7.64311 0.823927 7.37448 0.555298 7.04311 0.555298V1.7553ZM4.76005 5.12275L5.18432 4.69849V4.69849L4.76005 5.12275ZM3.14066 8.88596C3.14066 9.42197 2.70614 9.85649 2.17013 9.85649V11.0565C3.36888 11.0565 4.34066 10.0847 4.34066 8.88596H3.14066ZM2.17013 9.85649C1.63413 9.85649 1.19961 9.42197 1.19961 8.88596H-0.000390649C-0.000390649 10.0847 0.971386 11.0565 2.17013 11.0565V9.85649ZM1.19961 8.88596C1.19961 8.34996 1.63413 7.91544 2.17013 7.91544V6.71544C0.971386 6.71544 -0.000390649 7.68721 -0.000390649 8.88596H1.19961ZM2.17013 7.91544C2.70614 7.91544 3.14066 8.34996 3.14066 8.88596H4.34066C4.34066 7.68721 3.36888 6.71544 2.17013 6.71544V7.91544ZM10.2985 8.63167C10.2985 9.16767 9.86399 9.60219 9.32799 9.60219V10.8022C10.5267 10.8022 11.4985 9.83042 11.4985 8.63167H10.2985ZM9.32799 9.60219C8.79198 9.60219 8.35746 9.16767 8.35746 8.63167H7.15746C7.15746 9.83042 8.12924 10.8022 9.32799 10.8022V9.60219ZM8.35746 8.63167C8.35746 8.09566 8.79198 7.66114 9.32799 7.66114V6.46114C8.12924 6.46114 7.15746 7.43292 7.15746 8.63167H8.35746ZM9.32799 7.66114C9.86399 7.66114 10.2985 8.09566 10.2985 8.63167H11.4985C11.4985 7.43292 10.5267 6.46114 9.32799 6.46114V7.66114ZM9.43988 6.85844L6.77368 0.759282L5.67415 1.23993L8.34034 7.33909L9.43988 6.85844ZM3.77699 9.63322H7.75811V8.43322H3.77699V9.63322ZM10.6481 9.63322H13.3996V8.43322H10.6481V9.63322ZM9.82366 0.890625V7.42831H11.0237V0.890625H9.82366ZM3.15033 1.7553H7.04311V0.555298H3.15033V1.7553ZM2.42178 4.87834V2.48385H1.22178V4.87834H2.42178ZM3.15033 0.555298C2.08522 0.555298 1.22178 1.41874 1.22178 2.48385H2.42178C2.42178 2.08148 2.74796 1.7553 3.15033 1.7553V0.555298ZM1.26389 5.52819H4.29034V4.32819H1.26389V5.52819ZM1.19961 8.90695V5.59247H-0.000390649V8.90695H1.19961ZM4.33579 5.54702L7.44346 8.65469L8.29199 7.80616L5.18432 4.69849L4.33579 5.54702ZM4.29034 5.52819C4.30739 5.52819 4.32374 5.53496 4.33579 5.54702L5.18432 4.69849C4.94722 4.46139 4.62565 4.32819 4.29034 4.32819V5.52819ZM1.26389 4.32819C0.565646 4.32819 -0.000390649 4.89423 -0.000390649 5.59247H1.19961C1.19961 5.55697 1.22839 5.52819 1.26389 5.52819V4.32819Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevForkLiftMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"15\" viewBox=\"0 0 18 15\" fill=\"none\">\n <path d=\"M17 12.4478C17.4142 12.4478 17.75 12.112 17.75 11.6978C17.75 11.2836 17.4142 10.9478 17 10.9478V12.4478ZM14.0301 1.51953C14.0301 1.10532 13.6943 0.769531 13.2801 0.769531C12.8658 0.769531 12.5301 1.10532 12.5301 1.51953H14.0301ZM9.05438 2.60037C9.46859 2.60037 9.80438 2.26459 9.80438 1.85037C9.80438 1.43616 9.46859 1.10037 9.05438 1.10037V2.60037ZM6.20056 6.80969L6.73089 6.27936L6.73089 6.27936L6.20056 6.80969ZM4.17631 11.5137C4.17631 12.1837 3.63316 12.7269 2.96316 12.7269V14.2269C4.46159 14.2269 5.67631 13.0121 5.67631 11.5137H4.17631ZM2.96316 12.7269C2.29315 12.7269 1.75 12.1837 1.75 11.5137H0.25C0.25 13.0121 1.46472 14.2269 2.96316 14.2269V12.7269ZM1.75 11.5137C1.75 10.8437 2.29315 10.3005 2.96316 10.3005V8.80055C1.46472 8.80055 0.25 10.0153 0.25 11.5137H1.75ZM2.96316 10.3005C3.63316 10.3005 4.17631 10.8437 4.17631 11.5137H5.67631C5.67631 10.0153 4.46159 8.80055 2.96316 8.80055V10.3005ZM13.1236 11.1958C13.1236 11.8658 12.5805 12.409 11.9105 12.409V13.909C13.4089 13.909 14.6236 12.6943 14.6236 11.1958H13.1236ZM11.9105 12.409C11.2405 12.409 10.6973 11.8658 10.6973 11.1958H9.19732C9.19732 12.6943 10.412 13.909 11.9105 13.909V12.409ZM10.6973 11.1958C10.6973 10.5258 11.2405 9.98268 11.9105 9.98268V8.48268C10.412 8.48268 9.19732 9.6974 9.19732 11.1958H10.6973ZM11.9105 9.98268C12.5805 9.98268 13.1236 10.5258 13.1236 11.1958H14.6236C14.6236 9.6974 13.4089 8.48268 11.9105 8.48268V9.98268ZM12.0503 8.9793L8.71759 1.35535L7.34317 1.95617L10.6759 9.58012L12.0503 8.9793ZM4.97172 12.4478H9.94813V10.9478H4.97172V12.4478ZM13.5606 12.4478H17V10.9478H13.5606V12.4478ZM12.5301 1.51953V9.69164H14.0301V1.51953H12.5301ZM4.1884 2.60037H9.05438V1.10037H4.1884V2.60037ZM3.27771 6.50418V3.51107H1.77771V6.50418H3.27771ZM4.1884 1.10037C2.85701 1.10037 1.77771 2.17968 1.77771 3.51107H3.27771C3.27771 3.00811 3.68544 2.60037 4.1884 2.60037V1.10037ZM1.83035 7.31649H5.61341V5.81649H1.83035V7.31649ZM1.75 11.5399V7.39683H0.25V11.5399H1.75ZM5.67023 7.34002L9.55482 11.2246L10.6155 10.164L6.73089 6.27936L5.67023 7.34002ZM5.61341 7.31649C5.63472 7.31649 5.65516 7.32495 5.67023 7.34002L6.73089 6.27936C6.43451 5.98299 6.03255 5.81649 5.61341 5.81649V7.31649ZM1.83035 5.81649C0.957546 5.81649 0.25 6.52403 0.25 7.39683H1.75C1.75 7.35246 1.78597 7.31649 1.83035 7.31649V5.81649Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevPartPrimitive = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M13.4 5.3L11.9 6.05L8 8M8 8L2.6 5.3M8 8V13.7M10.1468 2.8292L11.3468 3.4592C12.6374 4.1366 13.283 4.475 13.6418 5.084C14 5.6924 14 6.4502 14 7.964V8.0342C14 9.5492 14 10.307 13.6418 10.9154C13.283 11.5244 12.6374 11.8634 11.3468 12.5408L10.1468 13.1702C9.0932 13.7234 8.5664 14 8 14C7.4336 14 6.9068 13.724 5.8532 13.1708L4.6532 12.5408C3.3626 11.8634 2.717 11.525 2.3582 10.916C2 10.3076 2 9.5498 2 8.036V7.9658C2 6.4508 2 5.693 2.3582 5.0846C2.717 4.4756 3.3626 4.1366 4.6532 3.4598L5.8532 2.8298C6.9068 2.2766 7.4336 2 8 2C8.5664 2 9.0932 2.276 10.1468 2.8292Z\" stroke=\"#595E6A\" stroke-linecap=\"round\"/>\n <path d=\"M8 2L2.5 5L8 7.5L13.5 5L8 2Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevPartPrimitiveMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M13.4 5.3L11.9 6.05L8 8M8 8L2.6 5.3M8 8V13.7M10.1468 2.8292L11.3468 3.4592C12.6374 4.1366 13.283 4.475 13.6418 5.084C14 5.6924 14 6.4502 14 7.964V8.0342C14 9.5492 14 10.307 13.6418 10.9154C13.283 11.5244 12.6374 11.8634 11.3468 12.5408L10.1468 13.1702C9.0932 13.7234 8.5664 14 8 14C7.4336 14 6.9068 13.724 5.8532 13.1708L4.6532 12.5408C3.3626 11.8634 2.717 11.525 2.3582 10.916C2 10.3076 2 9.5498 2 8.036V7.9658C2 6.4508 2 5.693 2.3582 5.0846C2.717 4.4756 3.3626 4.1366 4.6532 3.4598L5.8532 2.8298C6.9068 2.2766 7.4336 2 8 2C8.5664 2 9.0932 2.276 10.1468 2.8292Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M8 2L2.5 5L8 7.5L13.5 5L8 2Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevCutLinear = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M13.4 5.3L8 8M8 8L2.6 5.3M8 8V13.7M5.3 3.5C5.70897 3.71525 6.44 4.1 6.44 4.1M9.86 5.9C9.86 5.9 8.49206 5.25898 8 5M11 8V9M11 10.5V11.5M10.1468 2.8292L11.3468 3.4592C12.6374 4.1366 13.283 4.475 13.6418 5.084C14 5.6924 14 6.4502 14 7.964V8.0342C14 9.5492 14 10.307 13.6418 10.9154C13.283 11.5244 12.6374 11.8634 11.3468 12.5408L10.1468 13.1702C9.0932 13.7234 8.5664 14 8 14C7.4336 14 6.9068 13.724 5.8532 13.1708L4.6532 12.5408C3.3626 11.8634 2.717 11.525 2.3582 10.916C2 10.3076 2 9.5498 2 8.036V7.9658C2 6.4508 2 5.693 2.3582 5.0846C2.717 4.4756 3.3626 4.1366 4.6532 3.4598L5.8532 2.8298C6.9068 2.2766 7.4336 2 8 2C8.5664 2 9.0932 2.276 10.1468 2.8292Z\" stroke=\"#595E6A\" stroke-linecap=\"round\"/>\n</svg>\n`;\n\nconst duckDevCutLinearMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M16.75 6.625L10 10M10 10L3.25 6.625M10 10V17.125M6.625 4.375C7.13621 4.64406 8.05 5.125 8.05 5.125M12.325 7.375C12.325 7.375 10.6151 6.57372 10 6.25M13.75 10V11.25M13.75 13.125V14.375M12.6835 3.5365L14.1835 4.324C15.7967 5.17075 16.6037 5.59375 17.0522 6.355C17.5 7.1155 17.5 8.06275 17.5 9.955V10.0428C17.5 11.9365 17.5 12.8837 17.0522 13.6442C16.6037 14.4055 15.7967 14.8293 14.1835 15.676L12.6835 16.4628C11.3665 17.1543 10.708 17.5 10 17.5C9.292 17.5 8.6335 17.155 7.3165 16.4635L5.8165 15.676C4.20325 14.8293 3.39625 14.4063 2.94775 13.645C2.5 12.8845 2.5 11.9373 2.5 10.045V9.95725C2.5 8.0635 2.5 7.11625 2.94775 6.35575C3.39625 5.5945 4.20325 5.17075 5.8165 4.32475L7.3165 3.53725C8.6335 2.84575 9.292 2.5 10 2.5C10.708 2.5 11.3665 2.845 12.6835 3.5365Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n</svg>\n`;\n\nconst duckDevChecklistsMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <g clip-path=\"url(#clip0_27172_11150)\">\n <path d=\"M5.54343 12.6507C5.25776 12.3508 4.78303 12.3392 4.48308 12.6249C4.18314 12.9105 4.17156 13.3853 4.45722 13.6852L5.54343 12.6507ZM5.95271 14.168L5.4096 14.6852C5.55116 14.8338 5.74745 14.918 5.95271 14.918C6.15796 14.918 6.35425 14.8338 6.49581 14.6852L5.95271 14.168ZM8.87676 12.1852C9.16243 11.8853 9.15085 11.4105 8.8509 11.1249C8.55095 10.8392 8.07622 10.8508 7.79056 11.1507L8.87676 12.1852ZM5.54343 6.81739C5.25776 6.51745 4.78303 6.50587 4.48308 6.79153C4.18314 7.0772 4.17156 7.55193 4.45722 7.85188L5.54343 6.81739ZM5.95271 8.33464L5.4096 8.85188C5.55116 9.00051 5.74745 9.08464 5.95271 9.08464C6.15796 9.08464 6.35425 9.00051 6.49581 8.85188L5.95271 8.33464ZM8.87676 6.35188C9.16243 6.05193 9.15085 5.5772 8.8509 5.29153C8.55095 5.00587 8.07622 5.01745 7.79056 5.31739L8.87676 6.35188ZM10.8337 6.7513C10.4194 6.7513 10.0837 7.08709 10.0837 7.5013C10.0837 7.91552 10.4194 8.2513 10.8337 8.2513V6.7513ZM15.0003 8.2513C15.4145 8.2513 15.7503 7.91552 15.7503 7.5013C15.7503 7.08709 15.4145 6.7513 15.0003 6.7513V8.2513ZM10.8337 12.5846C10.4194 12.5846 10.0837 12.9204 10.0837 13.3346C10.0837 13.7488 10.4194 14.0846 10.8337 14.0846V12.5846ZM15.0003 14.0846C15.4145 14.0846 15.7503 13.7488 15.7503 13.3346C15.7503 12.9204 15.4145 12.5846 15.0003 12.5846V14.0846ZM10.0003 17.5846C8.01494 17.5846 6.60135 17.583 5.5283 17.4388C4.47682 17.2974 3.86533 17.0315 3.41771 16.5839L2.35705 17.6446C3.12982 18.4173 4.11062 18.7617 5.32842 18.9254C6.52466 19.0862 8.05734 19.0846 10.0003 19.0846V17.5846ZM0.916992 10.0013C0.916992 11.9443 0.915399 13.477 1.07623 14.6732C1.23996 15.891 1.58428 16.8718 2.35705 17.6446L3.41771 16.5839C2.97009 16.1363 2.70422 15.5248 2.56285 14.4733C2.41859 13.4003 2.41699 11.9867 2.41699 10.0013H0.916992ZM17.5837 10.0013C17.5837 11.9867 17.5821 13.4003 17.4378 14.4733C17.2964 15.5248 17.0306 16.1363 16.5829 16.5839L17.6436 17.6446C18.4164 16.8718 18.7607 15.891 18.9244 14.6732C19.0853 13.477 19.0837 11.9443 19.0837 10.0013H17.5837ZM10.0003 19.0846C11.9433 19.0846 13.476 19.0862 14.6722 18.9254C15.89 18.7617 16.8708 18.4173 17.6436 17.6446L16.5829 16.5839C16.1353 17.0315 15.5238 17.2974 14.4724 17.4388C13.3993 17.583 11.9857 17.5846 10.0003 17.5846V19.0846ZM10.0003 2.41797C11.9857 2.41797 13.3993 2.41956 14.4724 2.56383C15.5238 2.7052 16.1353 2.97107 16.5829 3.41869L17.6436 2.35803C16.8708 1.58526 15.89 1.24094 14.6722 1.07721C13.476 0.916376 11.9433 0.917969 10.0003 0.917969V2.41797ZM19.0837 10.0013C19.0837 8.05832 19.0853 6.52563 18.9244 5.3294C18.7607 4.11159 18.4164 3.1308 17.6436 2.35803L16.5829 3.41869C17.0306 3.8663 17.2964 4.4778 17.4378 5.52927C17.5821 6.60232 17.5837 8.01591 17.5837 10.0013H19.0837ZM10.0003 0.917969C8.05734 0.917969 6.52466 0.916376 5.32842 1.07721C4.11062 1.24094 3.12982 1.58526 2.35705 2.35803L3.41771 3.41869C3.86533 2.97107 4.47682 2.7052 5.5283 2.56383C6.60135 2.41956 8.01494 2.41797 10.0003 2.41797V0.917969ZM2.41699 10.0013C2.41699 8.01591 2.41859 6.60232 2.56285 5.52927C2.70422 4.4778 2.97009 3.8663 3.41771 3.41869L2.35705 2.35803C1.58428 3.1308 1.23996 4.11159 1.07623 5.3294C0.915399 6.52563 0.916992 8.05832 0.916992 10.0013H2.41699ZM4.45722 13.6852L5.4096 14.6852L6.49581 13.6507L5.54343 12.6507L4.45722 13.6852ZM6.49581 14.6852L8.87676 12.1852L7.79056 11.1507L5.4096 13.6507L6.49581 14.6852ZM4.45722 7.85188L5.4096 8.85188L6.49581 7.81739L5.54343 6.81739L4.45722 7.85188ZM6.49581 8.85188L8.87676 6.35188L7.79056 5.31739L5.4096 7.81739L6.49581 8.85188ZM10.8337 8.2513H15.0003V6.7513H10.8337V8.2513ZM10.8337 14.0846H15.0003V12.5846H10.8337V14.0846Z\" fill=\"#595E6A\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_27172_11150\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n `;\n\nconst duckDevImage = `\n <svg width=\"21\" height=\"21\" viewBox=\"0 0 21 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M4.66471 18H16.3314C17.2519 18 17.998 17.2538 17.998 16.3333V4.66667C17.998 3.74619 17.2519 3 16.3314 3H4.66471C3.74424 3 2.99805 3.74619 2.99805 4.66667V16.3333C2.99805 17.2538 3.74424 18 4.66471 18ZM4.66471 18L13.8314 8.83333L17.998 13M8.83138 7.58333C8.83138 8.27369 8.27174 8.83333 7.58138 8.83333C6.89102 8.83333 6.33138 8.27369 6.33138 7.58333C6.33138 6.89298 6.89102 6.33333 7.58138 6.33333C8.27174 6.33333 8.83138 6.89298 8.83138 7.58333Z\"\n stroke=\"#595E6A\"\n stroke-width=\"1.5\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n </svg>\n `;\n\nconst duckDevMoon = `\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.9999 8.52667C13.8951 9.66147 13.4692 10.7429 12.7721 11.6445C12.075 12.5461 11.1356 13.2305 10.0637 13.6177C8.99188 14.0049 7.83192 14.0787 6.7196 13.8307C5.60728 13.5827 4.5886 13.023 3.78275 12.2172C2.97691 11.4113 2.41723 10.3927 2.16921 9.28033C1.92118 8.16801 1.99508 7.00806 2.38224 5.9362C2.7694 4.86434 3.45382 3.92491 4.35541 3.22784C5.257 2.53076 6.33847 2.10487 7.47327 2C6.80888 2.89884 6.48917 4.0063 6.57229 5.12094C6.65541 6.23559 7.13584 7.28337 7.9262 8.07373C8.71656 8.86409 9.76435 9.34452 10.879 9.42765C11.9936 9.51077 13.1011 9.19106 13.9999 8.52667Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevMoonMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M17.5004 10.6583C17.3693 12.0768 16.837 13.4287 15.9656 14.5557C15.0943 15.6826 13.92 16.5382 12.5802 17.0221C11.2403 17.5061 9.79039 17.5984 8.39999 17.2884C7.00959 16.9784 5.73623 16.2788 4.72893 15.2715C3.72162 14.2642 3.02202 12.9908 2.712 11.6004C2.40197 10.21 2.49434 8.76007 2.97829 7.42025C3.46224 6.08042 4.31777 4.90614 5.44475 4.03479C6.57174 3.16345 7.92357 2.63109 9.34207 2.5C8.51158 3.62356 8.11195 5.00787 8.21585 6.40118C8.31975 7.79448 8.92029 9.10422 9.90824 10.0922C10.8962 11.0801 12.2059 11.6807 13.5992 11.7846C14.9925 11.8885 16.3769 11.4888 17.5004 10.6583Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevSunMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M10.0003 1.66797V2.5013M10.0003 17.5013V18.3346M18.3337 10.0013H17.5003M2.50033 10.0013H1.66699M15.8927 4.10897L15.5653 4.43633M4.43514 15.5665L4.10778 15.8939M15.8927 15.8936L15.5653 15.5663M4.43514 4.43612L4.10778 4.10875M15.0003 10.0013C15.0003 12.7627 12.7617 15.0013 10.0003 15.0013C7.2389 15.0013 5.00033 12.7627 5.00033 10.0013C5.00033 7.23988 7.2389 5.0013 10.0003 5.0013C12.7617 5.0013 15.0003 7.23988 15.0003 10.0013Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n </svg>\n `;\n\nconst duckDevTool = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M9.7999 4.19722C9.67775 4.32184 9.60933 4.48938 9.60933 4.66389C9.60933 4.83839 9.67775 5.00593 9.7999 5.13055L10.8666 6.19722C10.9912 6.31937 11.1587 6.38779 11.3332 6.38779C11.5077 6.38779 11.6753 6.31937 11.7999 6.19722L14.3132 3.68389C14.6485 4.42468 14.75 5.25004 14.6042 6.04998C14.4585 6.84992 14.0724 7.58645 13.4974 8.16141C12.9225 8.73636 12.1859 9.12244 11.386 9.26819C10.5861 9.41394 9.7607 9.31244 9.0199 8.97722L4.41324 13.5839C4.14802 13.8491 3.78831 13.9981 3.41324 13.9981C3.03816 13.9981 2.67845 13.8491 2.41324 13.5839C2.14802 13.3187 1.99902 12.959 1.99902 12.5839C1.99902 12.2088 2.14802 11.8491 2.41324 11.5839L7.0199 6.97722C6.68468 6.23643 6.58318 5.41106 6.72893 4.61112C6.87468 3.81118 7.26076 3.07466 7.83572 2.4997C8.41067 1.92474 9.1472 1.53867 9.94714 1.39291C10.7471 1.24716 11.5724 1.34866 12.3132 1.68389L9.80657 4.19055L9.7999 4.19722Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevToolMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M12.2501 5.25043C12.0974 5.40621 12.0119 5.61564 12.0119 5.83376C12.0119 6.05189 12.0974 6.26132 12.2501 6.4171L13.5835 7.75043C13.7392 7.90312 13.9487 7.98865 14.1668 7.98865C14.3849 7.98865 14.5943 7.90312 14.7501 7.75043L17.8918 4.60876C18.3108 5.53476 18.4377 6.56646 18.2555 7.56639C18.0733 8.56631 17.5907 9.48697 16.872 10.2057C16.1533 10.9244 15.2327 11.407 14.2327 11.5891C13.2328 11.7713 12.2011 11.6445 11.2751 11.2254L5.51679 16.9838C5.18527 17.3153 4.73563 17.5015 4.26679 17.5015C3.79795 17.5015 3.34831 17.3153 3.01679 16.9838C2.68527 16.6522 2.49902 16.2026 2.49902 15.7338C2.49902 15.2649 2.68527 14.8153 3.01679 14.4838L8.77512 8.72543C8.35609 7.79944 8.22922 6.76774 8.41141 5.76781C8.5936 4.76788 9.0762 3.84723 9.79489 3.12853C10.5136 2.40984 11.4342 1.92724 12.4342 1.74505C13.4341 1.56286 14.4658 1.68973 15.3918 2.10876L12.2585 5.2421L12.2501 5.25043Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevCamera = `\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_2452_10842)\">\n <path d=\"M15.3332 12.6667C15.3332 13.0203 15.1927 13.3594 14.9426 13.6095C14.6926 13.8595 14.3535 14 13.9998 14H1.99984C1.64622 14 1.30708 13.8595 1.05703 13.6095C0.80698 13.3594 0.666504 13.0203 0.666504 12.6667V5.33333C0.666504 4.97971 0.80698 4.64057 1.05703 4.39052C1.30708 4.14048 1.64622 4 1.99984 4H4.6665L5.99984 2H9.99984L11.3332 4H13.9998C14.3535 4 14.6926 4.14048 14.9426 4.39052C15.1927 4.64057 15.3332 4.97971 15.3332 5.33333V12.6667Z\" stroke=\"#7D7D7D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M7.99984 11.3333C9.4726 11.3333 10.6665 10.1394 10.6665 8.66667C10.6665 7.19391 9.4726 6 7.99984 6C6.52708 6 5.33317 7.19391 5.33317 8.66667C5.33317 10.1394 6.52708 11.3333 7.99984 11.3333Z\" stroke=\"#7D7D7D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n </svg>\n `;\n\nconst duckDevPanModeMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M16.667 12.5013V6.22937C16.667 5.92693 16.5463 5.63688 16.3314 5.42302C16.1165 5.20917 15.8251 5.08902 15.5212 5.08902C15.2173 5.08902 14.9258 5.20917 14.7109 5.42302C14.496 5.63688 14.3753 5.92693 14.3753 6.22937V10.2206V3.94867C14.3753 3.64623 14.2546 3.35618 14.0397 3.14232C13.8248 2.92846 13.5334 2.80832 13.2295 2.80832C12.9256 2.80832 12.6342 2.92846 12.4193 3.14232C12.2044 3.35618 12.0837 3.64623 12.0837 3.94867V9.65042V2.80832C12.0837 2.50588 11.9629 2.21583 11.7481 2.00197C11.5332 1.78811 11.2417 1.66797 10.9378 1.66797C10.6339 1.66797 10.3425 1.78811 10.1276 2.00197C9.91271 2.21583 9.79199 2.50588 9.79199 2.80832V9.65042M9.79199 9.68606V4.51885C9.79199 4.21641 9.67127 3.92635 9.45639 3.7125C9.2415 3.49864 8.95005 3.3785 8.64616 3.3785C8.34226 3.3785 8.05082 3.49864 7.83593 3.7125C7.62105 3.92635 7.50033 4.21641 7.50033 4.51885V12.0846\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M16.667 12.0491C16.667 16.2414 14.3945 18.334 11.2699 18.334C8.14523 18.334 6.5541 16.729 5.83366 15.0006L3.75032 10.0007C3.51385 9.3561 3.62108 8.75833 4.1718 8.44373C4.72287 8.12877 5.44686 8.29089 5.74513 8.86081C5.74513 8.86081 6.81488 10.8253 7.50033 12.084\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevBin = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M11.8886 2.66797L10.7997 12.6044C10.7785 12.806 10.6873 12.9922 10.5437 13.127C10.4001 13.2619 10.2142 13.3359 10.0219 13.3346H5.96967C5.7774 13.3359 5.5915 13.2619 5.44787 13.127C5.30423 12.9922 5.21304 12.806 5.1919 12.6044L4.11079 2.66797M3.33301 2.66797H12.6663M7.99967 2.66797V13.3346M4.46856 5.95002H11.5308M4.87301 9.64232H11.1263\" stroke=\"#595E6A\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevBinMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M14.8614 3.33203L13.5003 15.7525C13.4739 16.0045 13.3599 16.2373 13.1804 16.4059C13.0008 16.5744 12.7685 16.6669 12.5281 16.6653H7.46283C7.22248 16.6669 6.99011 16.5744 6.81057 16.4059C6.63103 16.2373 6.51704 16.0045 6.4906 15.7525L5.13921 3.33203M4.16699 3.33203H15.8337M10.0003 3.33203V16.6653M5.58644 7.43459H14.4142M6.09199 12.05H13.9087\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevAccessories = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\">\n <g clip-path=\"url(#clip0_30729_11302)\">\n <path d=\"M2.78604 4.67122C2.9024 4.47811 3.06591 4.31754 3.26139 4.20467L7.92806 1.53801C8.13075 1.42098 8.36068 1.35938 8.59473 1.35938C8.82878 1.35938 9.0587 1.42098 9.26139 1.53801L11.3132 2.75474M2.78604 4.67122C2.78186 4.67814 2.77775 4.68511 2.7737 4.69212C2.65669 4.89455 2.59497 5.12419 2.59473 5.35801V10.6913C2.59497 10.9252 2.65669 11.1548 2.7737 11.3572C2.89071 11.5597 3.0589 11.7278 3.26139 11.8447L7.92806 14.5113C8.13075 14.6284 8.36068 14.69 8.59473 14.69M2.78604 4.67122L2.77473 4.66467M2.78604 4.67122L8.59473 8.03134M8.59473 14.69C8.82878 14.69 9.0587 14.6284 9.26139 14.5113L13.9281 11.8447C14.1306 11.7278 14.2987 11.5597 14.4158 11.3572C14.5328 11.1548 14.5945 10.9252 14.5947 10.6913V9.5702M8.59473 14.69V14.7447M8.59473 14.69V8.03134M8.59473 8.03134V8.02467M8.59473 8.03134L10.181 7.14595M13.4614 4.07467V5.74134M13.4614 5.74134V7.40801M13.4614 5.74134H11.7947M13.4614 5.74134H15.1281\" stroke=\"#595E6A\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_30729_11302\">\n <rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0.552734 0.0234375)\"/>\n </clipPath>\n </defs>\n </svg>\n `;\n\nconst duckDevAccessoriesMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"21\" viewBox=\"0 0 20 21\" fill=\"none\">\n <path d=\"M2.79187 5.97965C2.93733 5.73826 3.14172 5.53754 3.38607 5.39647L9.2194 2.06313C9.47277 1.91685 9.76017 1.83984 10.0527 1.83984C10.3453 1.83984 10.6327 1.91685 10.8861 2.06313L13.4508 3.58405M2.79187 5.97965C2.78666 5.9883 2.78152 5.99701 2.77645 6.00577C2.63019 6.25881 2.55303 6.54586 2.55273 6.83813V13.5048C2.55303 13.7971 2.63019 14.0841 2.77645 14.3372C2.92272 14.5902 3.13295 14.8003 3.38607 14.9465L9.2194 18.2798C9.47277 18.4261 9.76017 18.5031 10.0527 18.5031M2.79187 5.97965L2.77773 5.97147M2.79187 5.97965L10.0527 10.1798M10.0527 18.5031C10.3453 18.5031 10.6327 18.4261 10.8861 18.2798L16.7194 14.9465C16.9725 14.8003 17.1828 14.5902 17.329 14.3372C17.4753 14.0841 17.5524 13.7971 17.5527 13.5048V12.1034M10.0527 18.5031V18.5715M10.0527 18.5031V10.1798M10.0527 10.1798V10.1715M10.0527 10.1798L12.0356 9.07306M16.1361 5.23397V7.3173M16.1361 7.3173V9.40063M16.1361 7.3173H14.0527M16.1361 7.3173H18.2194\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevLogisticVehicle = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M15.8448 8.95608C15.8448 8.67994 15.6209 8.45608 15.3448 8.45608C15.0686 8.45608 14.8448 8.67994 14.8448 8.95608H15.8448ZM2.40039 8.95444L2.40052 8.45444C2.26789 8.45441 2.14068 8.50707 2.04688 8.60084C1.95309 8.69461 1.90039 8.82181 1.90039 8.95444H2.40039ZM8.88708 9.45608C9.16322 9.45615 9.38714 9.23235 9.38721 8.95621C9.38728 8.68006 9.16348 8.45615 8.88733 8.45608L8.88708 9.45608ZM13.39 4.30252L13.8508 4.10851C13.8468 4.09894 13.8425 4.0895 13.8379 4.0802L13.39 4.30252ZM11.7092 5.64719V6.14719V5.64719ZM11.2965 6.05992H11.7965H11.2965ZM11.2965 7.71322H10.7965H11.2965ZM11.7093 8.12595V7.62595V8.12595ZM3.80742 6.22319V5.72319C3.53128 5.72319 3.30742 5.94705 3.30742 6.22319H3.80742ZM6.93964 6.22319H7.43964C7.43964 5.94705 7.21578 5.72319 6.93964 5.72319V6.22319ZM14.8448 8.95608V10.8258H15.8448V8.95608H14.8448ZM2.90039 10.8258V8.95444H1.90039V10.8258H2.90039ZM2.40026 9.45444L8.88708 9.45608L8.88733 8.45608L2.40052 8.45444L2.40026 9.45444ZM10.9711 11.1378H7.08165V12.1378H10.9711V11.1378ZM4.2384 11.1378H3.21239V12.1378H4.2384V11.1378ZM14.5328 11.1378H13.9082V12.1378H14.5328V11.1378ZM1.90039 10.8258C1.90039 11.5504 2.48779 12.1378 3.21239 12.1378V11.1378C3.04008 11.1378 2.90039 10.9981 2.90039 10.8258H1.90039ZM14.8448 10.8258C14.8448 10.9981 14.7051 11.1378 14.5328 11.1378V12.1378C15.2574 12.1378 15.8448 11.5504 15.8448 10.8258H14.8448ZM15.8093 8.76043L13.8508 4.10851L12.9292 4.49652L14.8876 9.14845L15.8093 8.76043ZM12.6627 3.35156H9.70458V4.35156H12.6627V3.35156ZM8.39258 4.66356V8.95444H9.39258V4.66356H8.39258ZM9.70458 3.35156C8.97998 3.35156 8.39258 3.93896 8.39258 4.66356H9.39258C9.39258 4.49125 9.53226 4.35156 9.70458 4.35156V3.35156ZM13.8379 4.0802C13.6163 3.63386 13.161 3.35156 12.6627 3.35156V4.35156C12.7812 4.35156 12.8895 4.41869 12.9422 4.52483L13.8379 4.0802ZM13.9013 5.14719L11.7092 5.14719V6.14719L13.9013 6.14719V5.14719ZM10.7965 6.05992V7.71322H11.7965V6.05992H10.7965ZM11.7093 8.62595H14.9997V7.62595H11.7093V8.62595ZM10.7965 7.71322C10.7965 8.21731 11.2052 8.62595 11.7093 8.62595V7.62595C11.7574 7.62595 11.7965 7.66502 11.7965 7.71322H10.7965ZM11.7092 5.14719C11.2052 5.14719 10.7965 5.55584 10.7965 6.05992H11.7965C11.7965 6.10812 11.7574 6.14719 11.7092 6.14719V5.14719ZM3.80742 6.72319H6.93964V5.72319H3.80742V6.72319ZM4.30742 8.42998V6.22319H3.30742V8.42998H4.30742ZM6.43964 6.22319V8.42998H7.43964V6.22319H6.43964ZM6.44002 11.3965C6.44002 11.7822 6.12737 12.0948 5.74169 12.0948V13.0948C6.67965 13.0948 7.44002 12.3345 7.44002 11.3965H6.44002ZM5.74169 12.0948C5.35601 12.0948 5.04336 11.7822 5.04336 11.3965H4.04336C4.04336 12.3345 4.80373 13.0948 5.74169 13.0948V12.0948ZM5.04336 11.3965C5.04336 11.0108 5.35601 10.6982 5.74169 10.6982V9.69819C4.80373 9.69819 4.04336 10.4586 4.04336 11.3965H5.04336ZM5.74169 10.6982C6.12737 10.6982 6.44002 11.0108 6.44002 11.3965H7.44002C7.44002 10.4586 6.67965 9.69819 5.74169 9.69819V10.6982ZM13.0679 11.3972C13.0679 11.7832 12.755 12.0961 12.3689 12.0961V13.0961C13.3073 13.0961 14.0679 12.3355 14.0679 11.3972H13.0679ZM12.3689 12.0961C11.9829 12.0961 11.67 11.7832 11.67 11.3972H10.67C10.67 12.3355 11.4306 13.0961 12.3689 13.0961V12.0961ZM11.67 11.3972C11.67 11.0111 11.9829 10.6982 12.3689 10.6982V9.69819C11.4306 9.69819 10.67 10.4588 10.67 11.3972H11.67ZM12.3689 10.6982C12.755 10.6982 13.0679 11.0111 13.0679 11.3972H14.0679C14.0679 10.4588 13.3073 9.69819 12.3689 9.69819V10.6982Z\" fill=\"#595E6A\"/>\n </svg>\n `;\n\nconst duckDevLogisticVehicleMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M19.6883 11.365C19.6883 10.9508 19.3525 10.615 18.9383 10.615C18.5241 10.615 18.1883 10.9508 18.1883 11.365H19.6883ZM2.75781 11.363L2.758 10.613C2.55906 10.6129 2.36824 10.6919 2.22755 10.8326C2.08686 10.9732 2.00781 11.164 2.00781 11.363H2.75781ZM10.8661 12.115C11.2804 12.1151 11.6162 11.7794 11.6163 11.3652C11.6164 10.951 11.2807 10.6151 10.8665 10.615L10.8661 12.115ZM16.4948 5.54807L17.1861 5.25706C17.18 5.2427 17.1736 5.22854 17.1666 5.21459L16.4948 5.54807ZM14.3939 7.22891V7.97891V7.22891ZM13.878 7.74482H14.628H13.878ZM13.878 9.81145H13.128H13.878ZM14.3939 10.3274V9.57735V10.3274ZM4.5166 7.94891V7.19891C4.10239 7.19891 3.7666 7.53469 3.7666 7.94891H4.5166ZM8.43187 7.94891H9.18187C9.18187 7.53469 8.84608 7.19891 8.43187 7.19891V7.94891ZM18.1883 11.365V13.7022H19.6883V11.365H18.1883ZM3.50781 13.7022V11.363H2.00781V13.7022H3.50781ZM2.75762 12.113L10.8661 12.115L10.8665 10.615L2.758 10.613L2.75762 12.113ZM13.4712 13.9672H8.60938V15.4672H13.4712V13.9672ZM5.05533 13.9672H3.77281V15.4672H5.05533V13.9672ZM17.9233 13.9672H17.1425V15.4672H17.9233V13.9672ZM2.00781 13.7022C2.00781 14.677 2.79803 15.4672 3.77281 15.4672V13.9672C3.62646 13.9672 3.50781 13.8486 3.50781 13.7022H2.00781ZM18.1883 13.7022C18.1883 13.8486 18.0696 13.9672 17.9233 13.9672V15.4672C18.8981 15.4672 19.6883 14.677 19.6883 13.7022H18.1883ZM19.6341 11.072L17.1861 5.25706L15.8036 5.83908L18.2517 11.654L19.6341 11.072ZM15.5857 4.23438H11.888V5.73438H15.5857V4.23438ZM10.123 5.99937V11.363H11.623V5.99937H10.123ZM11.888 4.23438C10.9133 4.23438 10.123 5.02459 10.123 5.99937H11.623C11.623 5.85302 11.7417 5.73438 11.888 5.73438V4.23438ZM17.1666 5.21459C16.8686 4.61414 16.2561 4.23438 15.5857 4.23438V5.73438C15.6864 5.73438 15.7783 5.79139 15.8231 5.88154L17.1666 5.21459ZM17.134 6.47891L14.3939 6.47891V7.97891L17.134 7.97891V6.47891ZM13.128 7.74482V9.81145H14.628V7.74482H13.128ZM14.3939 11.0774H18.5069V9.57735H14.3939V11.0774ZM13.128 9.81145C13.128 10.5106 13.6947 11.0774 14.3939 11.0774V9.57735C14.5232 9.57735 14.628 9.68216 14.628 9.81145H13.128ZM14.3939 6.47891C13.6947 6.47891 13.128 7.04568 13.128 7.74482H14.628C14.628 7.87411 14.5232 7.97891 14.3939 7.97891V6.47891ZM4.5166 8.69891H8.43187V7.19891H4.5166V8.69891ZM5.2666 10.7074V7.94891H3.7666V10.7074H5.2666ZM7.68187 7.94891V10.7074H9.18187V7.94891H7.68187ZM7.68235 14.4156C7.68235 14.8286 7.3475 15.1635 6.93444 15.1635V16.6635C8.17592 16.6635 9.18235 15.6571 9.18235 14.4156H7.68235ZM6.93444 15.1635C6.52138 15.1635 6.18652 14.8286 6.18652 14.4156H4.68652C4.68652 15.6571 5.69295 16.6635 6.93444 16.6635V15.1635ZM6.18652 14.4156C6.18652 14.0025 6.52137 13.6677 6.93444 13.6677V12.1677C5.69295 12.1677 4.68652 13.1741 4.68652 14.4156H6.18652ZM6.93444 13.6677C7.3475 13.6677 7.68235 14.0025 7.68235 14.4156H9.18235C9.18235 13.1741 8.17592 12.1677 6.93444 12.1677V13.6677ZM15.9672 14.4164C15.9672 14.8299 15.632 15.1651 15.2185 15.1651V16.6651C16.4604 16.6651 17.4672 15.6583 17.4672 14.4164H15.9672ZM15.2185 15.1651C14.805 15.1651 14.4698 14.8299 14.4698 14.4164H12.9698C12.9698 15.6583 13.9766 16.6651 15.2185 16.6651V15.1651ZM14.4698 14.4164C14.4698 14.0029 14.805 13.6677 15.2185 13.6677V12.1677C13.9766 12.1677 12.9698 13.1744 12.9698 14.4164H14.4698ZM15.2185 13.6677C15.632 13.6677 15.9672 14.0029 15.9672 14.4164H17.4672C17.4672 13.1744 16.4604 12.1677 15.2185 12.1677V13.6677Z\" fill=\"#595E6A\"/>\n </svg>\n `;\n\nconst duckDevComputerChipMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <g clip-path=\"url(#clip0_29973_258335)\">\n <path d=\"M8.05748 4.64955V1.07812M13.7718 4.64955V1.07812M5.20034 13.221H1.62891M5.20034 7.5067H1.62891M13.7718 16.0781V19.6496M8.05748 16.0781V19.6496M16.6289 7.5067H20.2003M16.6289 13.221H20.2003M13.0575 11.0781H10.2003M15.2003 4.64955H6.62891C6.25003 4.64955 5.88666 4.80006 5.61875 5.06797C5.35084 5.33588 5.20034 5.69924 5.20034 6.07813V14.6496C5.20034 15.0284 5.35084 15.3918 5.61875 15.6597C5.88666 15.9276 6.25003 16.0781 6.62891 16.0781H15.2003C15.5792 16.0781 15.9426 15.9276 16.2105 15.6597C16.4784 15.3918 16.6289 15.0284 16.6289 14.6496V6.07813C16.6289 5.69924 16.4784 5.33588 16.2105 5.06797C15.9426 4.80006 15.5792 4.64955 15.2003 4.64955Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_29973_258335\">\n <rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(0.915039 0.367188)\"/>\n </clipPath>\n </defs>\n </svg>\n `;\n\n\nconst duckDevCollapse = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M4 3L8 6L12 3\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M12 12L8 9L4 12\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevCollapseMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M3.33301 15.8346V4.16797\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M11.6667 5.83464L7.5 10.0013M7.5 10.0013L11.6667 14.168M7.5 10.0013L17.5 10.0013\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevBookOpenMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M9.99935 5.83333C9.99935 4.94928 9.64816 4.10143 9.02304 3.47631C8.39792 2.85119 7.55007 2.5 6.66602 2.5H1.66602V15H7.49935C8.16239 15 8.79828 15.2634 9.26712 15.7322C9.73596 16.2011 9.99935 16.837 9.99935 17.5M9.99935 5.83333V17.5M9.99935 5.83333C9.99935 4.94928 10.3505 4.10143 10.9757 3.47631C11.6008 2.85119 12.4486 2.5 13.3327 2.5H18.3327V15H12.4993C11.8363 15 11.2004 15.2634 10.7316 15.7322C10.2627 16.2011 9.99935 16.837 9.99935 17.5\" stroke=\"#7F8493\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevBriefcaseMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.3327 17.5V4.16667C13.3327 3.72464 13.1571 3.30072 12.8445 2.98816C12.532 2.67559 12.108 2.5 11.666 2.5H8.33268C7.89065 2.5 7.46673 2.67559 7.15417 2.98816C6.84161 3.30072 6.66602 3.72464 6.66602 4.16667V17.5M3.33268 5.83333H16.666C17.5865 5.83333 18.3327 6.57953 18.3327 7.5V15.8333C18.3327 16.7538 17.5865 17.5 16.666 17.5H3.33268C2.41221 17.5 1.66602 16.7538 1.66602 15.8333V7.5C1.66602 6.57953 2.41221 5.83333 3.33268 5.83333Z\" stroke=\"#7F8493\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevCreditCardMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M0.833984 8.33398H19.1673M2.50065 3.33398H17.5007C18.4211 3.33398 19.1673 4.08018 19.1673 5.00065V15.0007C19.1673 15.9211 18.4211 16.6673 17.5007 16.6673H2.50065C1.58018 16.6673 0.833984 15.9211 0.833984 15.0007V5.00065C0.833984 4.08018 1.58018 3.33398 2.50065 3.33398Z\" stroke=\"#7F8493\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevBookOpen = `\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M7.99967 4.66667C7.99967 3.95942 7.71872 3.28115 7.21863 2.78105C6.71853 2.28095 6.04025 2 5.33301 2H1.33301V12H5.99967C6.53011 12 7.03882 12.2107 7.41389 12.5858C7.78896 12.9609 7.99967 13.4696 7.99967 14M7.99967 4.66667V14M7.99967 4.66667C7.99967 3.95942 8.28063 3.28115 8.78072 2.78105C9.28082 2.28095 9.9591 2 10.6663 2H14.6663V12H9.99967C9.46924 12 8.96053 12.2107 8.58546 12.5858C8.21039 12.9609 7.99967 13.4696 7.99967 14\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevBriefcase = `\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M10.6663 14V3.33333C10.6663 2.97971 10.5259 2.64057 10.2758 2.39052C10.0258 2.14048 9.68663 2 9.33301 2H6.66634C6.31272 2 5.97358 2.14048 5.72353 2.39052C5.47348 2.64057 5.33301 2.97971 5.33301 3.33333V14M2.66634 4.66667H13.333C14.0694 4.66667 14.6663 5.26362 14.6663 6V12.6667C14.6663 13.403 14.0694 14 13.333 14H2.66634C1.92996 14 1.33301 13.403 1.33301 12.6667V6C1.33301 5.26362 1.92996 4.66667 2.66634 4.66667Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevCreditCard = `\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_132902)\">\n <path d=\"M0.666992 6.66797H15.3337M2.00033 2.66797H14.0003C14.7367 2.66797 15.3337 3.26492 15.3337 4.0013V12.0013C15.3337 12.7377 14.7367 13.3346 14.0003 13.3346H2.00033C1.26395 13.3346 0.666992 12.7377 0.666992 12.0013V4.0013C0.666992 3.26492 1.26395 2.66797 2.00033 2.66797Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_132902\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n </svg>\n `;\n\nconst duckDevSlash = `\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_132959)\">\n <path d=\"M3.28634 3.28536L12.713 12.712M14.6663 7.9987C14.6663 11.6806 11.6816 14.6654 7.99967 14.6654C4.31778 14.6654 1.33301 11.6806 1.33301 7.9987C1.33301 4.3168 4.31778 1.33203 7.99967 1.33203C11.6816 1.33203 14.6663 4.3168 14.6663 7.9987Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_132959\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n </svg>\n `;\n\nconst duckDevSlashMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21_2536)\">\n <path d=\"M4.10866 4.10964L15.892 15.893M18.3337 10.0013C18.3337 14.6037 14.6027 18.3346 10.0003 18.3346C5.39795 18.3346 1.66699 14.6037 1.66699 10.0013C1.66699 5.39893 5.39795 1.66797 10.0003 1.66797C14.6027 1.66797 18.3337 5.39893 18.3337 10.0013Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2536\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n </svg>\n `;\n\nconst duckDevOrderMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\">\n <path d=\"M11.8541 1.66602L12.3844 1.13569C12.2438 0.995033 12.053 0.916016 11.8541 0.916016V1.66602ZM5.18742 1.66602V0.916016V1.66602ZM3.52075 3.33268H2.77075H3.52075ZM3.52075 16.666H2.77075H3.52075ZM4.00891 17.8445L3.47858 18.3749L4.00891 17.8445ZM16.3659 17.8445L16.8963 18.3749L16.3659 17.8445ZM16.8541 6.66602H17.6041C17.6041 6.4671 17.5251 6.27634 17.3844 6.13569L16.8541 6.66602ZM10.9374 6.66602C10.9374 6.2518 10.6016 5.91602 10.1874 5.91602C9.7732 5.91602 9.43742 6.2518 9.43742 6.66602H10.9374ZM11.1041 8.76602C11.1041 9.18023 11.4399 9.51602 11.8541 9.51602C12.2683 9.51602 12.6041 9.18023 12.6041 8.76602H11.1041ZM9.27075 11.766C9.27075 11.3518 8.93497 11.016 8.52075 11.016C8.10654 11.016 7.77075 11.3518 7.77075 11.766H9.27075ZM9.43742 14.166C9.43742 14.5802 9.7732 14.916 10.1874 14.916C10.6016 14.916 10.9374 14.5802 10.9374 14.166H9.43742ZM11.8541 1.66602V0.916016H5.18742V1.66602V2.41602H11.8541V1.66602ZM5.18742 1.66602V0.916016C4.54648 0.916016 3.93179 1.17063 3.47858 1.62384L4.00891 2.15417L4.53924 2.6845C4.71115 2.51259 4.9443 2.41602 5.18742 2.41602V1.66602ZM4.00891 2.15417L3.47858 1.62384C3.02536 2.07705 2.77075 2.69174 2.77075 3.33268H3.52075H4.27075C4.27075 3.08957 4.36733 2.85641 4.53924 2.6845L4.00891 2.15417ZM3.52075 3.33268H2.77075V16.666H3.52075H4.27075V3.33268H3.52075ZM3.52075 16.666H2.77075C2.77075 17.307 3.02536 17.9216 3.47858 18.3749L4.00891 17.8445L4.53924 17.3142C4.36733 17.1423 4.27075 16.9091 4.27075 16.666H3.52075ZM4.00891 17.8445L3.47858 18.3749C3.93179 18.8281 4.54648 19.0827 5.18742 19.0827V18.3327V17.5827C4.9443 17.5827 4.71115 17.4861 4.53924 17.3142L4.00891 17.8445ZM5.18742 18.3327V19.0827H15.1874V18.3327V17.5827H5.18742V18.3327ZM15.1874 18.3327V19.0827C15.8284 19.0827 16.443 18.8281 16.8963 18.3749L16.3659 17.8445L15.8356 17.3142C15.6637 17.4861 15.4305 17.5827 15.1874 17.5827V18.3327ZM16.3659 17.8445L16.8963 18.3749C17.3495 17.9216 17.6041 17.307 17.6041 16.666H16.8541H16.1041C16.1041 16.9091 16.0075 17.1423 15.8356 17.3142L16.3659 17.8445ZM16.8541 16.666H17.6041V6.66602H16.8541H16.1041V16.666H16.8541ZM16.8541 6.66602L17.3844 6.13569L12.3844 1.13569L11.8541 1.66602L11.3238 2.19635L16.3238 7.19635L16.8541 6.66602ZM10.1874 6.66602H9.43742V7.26602H10.1874H10.9374V6.66602H10.1874ZM11.8541 8.76602H12.6041C12.6041 7.45158 11.4461 6.51602 10.1874 6.51602V7.26602V8.01602C10.7699 8.01602 11.1041 8.42445 11.1041 8.76602H11.8541ZM10.1874 7.26602V6.51602C8.92876 6.51602 7.77075 7.45158 7.77075 8.76602H8.52075H9.27075C9.27075 8.42445 9.60496 8.01602 10.1874 8.01602V7.26602ZM8.52075 8.76602H7.77075C7.77075 9.45336 8.10237 9.96435 8.54935 10.3154C8.96608 10.6427 9.49344 10.843 9.97485 10.9853L10.1874 10.266L10.4 9.54677C9.9708 9.41993 9.66483 9.28419 9.47587 9.13578C9.31717 9.01113 9.27075 8.90667 9.27075 8.76602H8.52075ZM10.1874 10.266L9.97485 10.9853C10.404 11.1121 10.71 11.2478 10.899 11.3963C11.0577 11.5209 11.1041 11.6254 11.1041 11.766H11.8541H12.6041C12.6041 11.0787 12.2725 10.5677 11.8255 10.2166C11.4088 9.8893 10.8814 9.68904 10.4 9.54677L10.1874 10.266ZM11.8541 11.766H11.1041C11.1041 12.1076 10.7699 12.516 10.1874 12.516V13.266V14.016C11.4461 14.016 12.6041 13.0805 12.6041 11.766H11.8541ZM10.1874 13.266V12.516C9.60496 12.516 9.27075 12.1076 9.27075 11.766H8.52075H7.77075C7.77075 13.0805 8.92876 14.016 10.1874 14.016V13.266ZM10.1874 14.166H10.9374V13.266H10.1874H9.43742V14.166H10.1874Z\" fill=\"#595E6A\"/>\n </svg>\n `;\n\nconst duckDevCalendarMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\">\n <path d=\"M13.7381 1.66797V5.0013M7.07145 1.66797V5.0013M2.90479 8.33464H17.9048M4.57145 3.33464H16.2381C17.1586 3.33464 17.9048 4.08083 17.9048 5.0013V16.668C17.9048 17.5884 17.1586 18.3346 16.2381 18.3346H4.57145C3.65098 18.3346 2.90479 17.5884 2.90479 16.668V5.0013C2.90479 4.08083 3.65098 3.33464 4.57145 3.33464Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevBuildingMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M3.125 17.5H16.875M3.75 2.5H16.25M4.375 2.5V17.5M15.625 2.5V17.5M7.5 5.625H8.75M7.5 8.125H8.75M7.5 10.625H8.75M11.25 5.625H12.5M11.25 8.125H12.5M11.25 10.625H12.5M7.5 17.5V14.6875C7.5 14.17 7.92 13.75 8.4375 13.75H11.5625C12.08 13.75 12.5 14.17 12.5 14.6875V17.5\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevStopCircleMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 20C15.5228 20 20 15.5228 20 10C20 4.47715 15.5228 0 10 0C4.47715 0 0 4.47715 0 10C0 15.5228 4.47715 20 10 20ZM6.58579 6.58579C6 7.17157 6 8.11438 6 10C6 11.8856 6 12.8284 6.58579 13.4142C7.17157 14 8.11438 14 10 14C11.8856 14 12.8284 14 13.4142 13.4142C14 12.8284 14 11.8856 14 10C14 8.11438 14 7.17157 13.4142 6.58579C12.8284 6 11.8856 6 10 6C8.11438 6 7.17157 6 6.58579 6.58579Z\" fill=\"#FC5555\"/>\n </svg>\n `;\n\nconst duckDevPauseCircleMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 20C15.5228 20 20 15.5228 20 10C20 4.47715 15.5228 0 10 0C4.47715 0 0 4.47715 0 10C0 15.5228 4.47715 20 10 20ZM6.07612 6.61732C6 6.80109 6 7.03406 6 7.5V12.5C6 12.9659 6 13.1989 6.07612 13.3827C6.17761 13.6277 6.37229 13.8224 6.61732 13.9239C6.80109 14 7.03406 14 7.5 14C7.96594 14 8.19891 14 8.38268 13.9239C8.62771 13.8224 8.82239 13.6277 8.92388 13.3827C9 13.1989 9 12.9659 9 12.5V7.5C9 7.03406 9 6.80109 8.92388 6.61732C8.82239 6.37229 8.62771 6.17761 8.38268 6.07612C8.19891 6 7.96594 6 7.5 6C7.03406 6 6.80109 6 6.61732 6.07612C6.37229 6.17761 6.17761 6.37229 6.07612 6.61732ZM11.0761 6.61732C11 6.80109 11 7.03406 11 7.5V12.5C11 12.9659 11 13.1989 11.0761 13.3827C11.1776 13.6277 11.3723 13.8224 11.6173 13.9239C11.8011 14 12.0341 14 12.5 14C12.9659 14 13.1989 14 13.3827 13.9239C13.6277 13.8224 13.8224 13.6277 13.9239 13.3827C14 13.1989 14 12.9659 14 12.5V7.5C14 7.03406 14 6.80109 13.9239 6.61732C13.8224 6.37229 13.6277 6.17761 13.3827 6.07612C13.1989 6 12.9659 6 12.5 6C12.0341 6 11.8011 6 11.6173 6.07612C11.3723 6.17761 11.1776 6.37229 11.0761 6.61732Z\" fill=\"#595E6A\"/>\n </svg>\n\n `;\n\nconst duckDevPlayCircleFilledMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 20C15.5228 20 20 15.5228 20 10C20 4.47715 15.5228 0 10 0C4.47715 0 0 4.47715 0 10C0 15.5228 4.47715 20 10 20ZM8.69349 13.8458L13.4137 11.059C14.1954 10.5974 14.1954 9.40259 13.4137 8.94103L8.69349 6.15419C7.93371 5.70561 7 6.28947 7 7.21316V12.7868C7 13.7105 7.93371 14.2944 8.69349 13.8458Z\" fill=\"#29CC6A\"/>\n </svg>\n `;\n\nconst duckDevMenuMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2.5 10H17.5M2.5 5H17.5M2.5 15H17.5\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevTeaCupMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M1.92869 10.5812C1.88707 10.2252 1.86627 10.0472 1.87502 9.90042C1.92093 9.13109 2.48824 8.49367 3.24698 8.35876C3.39172 8.33301 3.57094 8.33301 3.92937 8.33301H12.7358C13.0942 8.33301 13.2734 8.33301 13.4182 8.35876C14.1769 8.49367 14.7443 9.13109 14.7901 9.90042C14.7989 10.0472 14.7781 10.2252 14.7364 10.5812L14.4026 13.4378C14.2519 14.7271 13.5629 15.8925 12.506 16.6461C11.7273 17.2013 10.7948 17.4997 9.83835 17.4997H6.8268C5.87041 17.4997 4.93785 17.2013 4.15912 16.6461C3.1022 15.8925 2.41328 14.7271 2.26259 13.4378L1.92869 10.5812Z\" stroke=\"#6B7280\" stroke-width=\"1.5\"/>\n <path d=\"M14.166 14.167H15.8327C17.2134 14.167 18.3327 13.0477 18.3327 11.667C18.3327 10.2862 17.2134 9.16699 15.8327 9.16699H14.5827\" stroke=\"#6B7280\" stroke-width=\"1.5\"/>\n <path d=\"M8.33349 1.66699C7.87321 2.12723 7.87321 2.87343 8.33349 3.33366C8.79365 3.79389 8.79365 4.54009 8.33349 5.00033\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M4.16665 6.25033L4.26342 6.15356C4.68606 5.73092 4.73361 5.06183 4.37499 4.58366C4.01636 4.10549 4.06392 3.4364 4.48656 3.01376L4.58332 2.91699\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M12.0827 6.25033L12.1794 6.15356C12.6021 5.73092 12.6496 5.06183 12.291 4.58366C11.9324 4.10549 11.9799 3.4364 12.4026 3.01376L12.4994 2.91699\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevSubstageInstructionMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.5391 3.33366H15.2057C15.6478 3.33366 16.0717 3.50925 16.3842 3.82181C16.6968 4.13437 16.8724 4.5583 16.8724 5.00033V16.667C16.8724 17.109 16.6968 17.5329 16.3842 17.8455C16.0717 18.1581 15.6478 18.3337 15.2057 18.3337H5.20573C4.7637 18.3337 4.33978 18.1581 4.02722 17.8455C3.71466 17.5329 3.53906 17.109 3.53906 16.667V5.00033C3.53906 4.5583 3.71466 4.13437 4.02722 3.82181C4.33978 3.50925 4.7637 3.33366 5.20573 3.33366H6.8724M7.70573 1.66699H12.7057C13.166 1.66699 13.5391 2.04009 13.5391 2.50033V4.16699C13.5391 4.62723 13.166 5.00033 12.7057 5.00033H7.70573C7.24549 5.00033 6.8724 4.62723 6.8724 4.16699V2.50033C6.8724 2.04009 7.24549 1.66699 7.70573 1.66699Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M12.5391 10.5938L14.5391 12.5938M14.5391 12.5938L12.5391 14.5938M14.5391 12.5938L9.03906 12.5938C8.50863 12.5938 7.99992 12.383 7.62485 12.008C7.24978 11.6329 7.03906 11.1242 7.03906 10.5938C7.03906 10.0633 7.24978 9.55461 7.62485 9.17954C7.99992 8.80447 8.50863 8.59375 9.03906 8.59375L9.53906 8.59375\" stroke=\"#595E6A\" stroke-width=\"1.25039\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevTaskInstructionMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.5391 3.33366H15.2057C15.6478 3.33366 16.0717 3.50925 16.3842 3.82181C16.6968 4.13437 16.8724 4.5583 16.8724 5.00033V16.667C16.8724 17.109 16.6968 17.5329 16.3842 17.8455C16.0717 18.1581 15.6478 18.3337 15.2057 18.3337H5.20573C4.7637 18.3337 4.33978 18.1581 4.02722 17.8455C3.71466 17.5329 3.53906 17.109 3.53906 16.667V5.00033C3.53906 4.5583 3.71466 4.13437 4.02722 3.82181C4.33978 3.50925 4.7637 3.33366 5.20573 3.33366H6.8724M7.70573 1.66699H12.7057C13.166 1.66699 13.5391 2.04009 13.5391 2.50033V4.16699C13.5391 4.62723 13.166 5.00033 12.7057 5.00033H7.70573C7.24549 5.00033 6.8724 4.62723 6.8724 4.16699V2.50033C6.8724 2.04009 7.24549 1.66699 7.70573 1.66699Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <g clip-path=\"url(#clip0_3818_65351)\">\n <path d=\"M11.1315 11.5013C11.1315 11.9562 10.7628 12.3249 10.3079 12.3249C9.8531 12.3249 9.48438 11.9562 9.48438 11.5013C9.48438 11.0465 9.8531 10.6777 10.3079 10.6777C10.7628 10.6777 11.1315 11.0465 11.1315 11.5013Z\" fill=\"#595E6A\"/>\n <path d=\"M13.8516 7.41504C13.8516 7.82925 13.5158 8.16504 13.1016 8.16504C12.6873 8.16504 12.3516 7.82925 12.3516 7.41504C12.3516 7.00083 12.6873 6.66504 13.1016 6.66504C13.5158 6.66504 13.8516 7.00083 13.8516 7.41504Z\" fill=\"#595E6A\"/>\n <path d=\"M10.4453 7.74707C10.4453 8.16128 10.1095 8.49707 9.69531 8.49707C9.2811 8.49707 8.94531 8.16128 8.94531 7.74707C8.94531 7.33286 9.2811 6.99707 9.69531 6.99707C10.1095 6.99707 10.4453 7.33286 10.4453 7.74707Z\" fill=\"#595E6A\"/>\n <path d=\"M8.02344 9.16504C8.02344 9.57925 7.68765 9.91504 7.27344 9.91504C6.85922 9.91504 6.52344 9.57925 6.52344 9.16504C6.52344 8.75083 6.85922 8.41504 7.27344 8.41504C7.68765 8.41504 8.02344 8.75083 8.02344 9.16504Z\" fill=\"#595E6A\"/>\n <path d=\"M7.82812 13.5605C7.82812 13.9748 7.49234 14.3105 7.07812 14.3105C6.66391 14.3105 6.32812 13.9748 6.32812 13.5605C6.32812 13.1463 6.66391 12.8105 7.07812 12.8105C7.49234 12.8105 7.82812 13.1463 7.82812 13.5605Z\" fill=\"#595E6A\"/>\n <path d=\"M10.3672 16.1689C10.3672 16.5832 10.0314 16.9189 9.61719 16.9189C9.20297 16.9189 8.86719 16.5832 8.86719 16.1689C8.86719 15.7547 9.20297 15.4189 9.61719 15.4189C10.0314 15.4189 10.3672 15.7547 10.3672 16.1689Z\" fill=\"#595E6A\"/>\n <path d=\"M14.5156 14.8242C14.5156 15.2384 14.1798 15.5742 13.7656 15.5742C13.3514 15.5742 13.0156 15.2384 13.0156 14.8242C13.0156 14.41 13.3514 14.0742 13.7656 14.0742C14.1798 14.0742 14.5156 14.41 14.5156 14.8242Z\" fill=\"#595E6A\"/>\n <path d=\"M14.7891 12.25C14.7891 12.6642 14.4533 13 14.0391 13C13.6248 13 13.2891 12.6642 13.2891 12.25C13.2891 11.8358 13.6248 11.5 14.0391 11.5C14.4533 11.5 14.7891 11.8358 14.7891 12.25Z\" fill=\"#595E6A\"/>\n <path d=\"M9.61719 15.9775L10.3664 11.7418\" stroke=\"#595E6A\" stroke-width=\"0.559167\" stroke-linecap=\"round\"/>\n <path d=\"M13.4531 14.5537L10.3515 11.7388\" stroke=\"#595E6A\" stroke-width=\"0.559167\" stroke-linecap=\"round\"/>\n <path d=\"M7.07812 13.4541L9.92707 11.5028\" stroke=\"#595E6A\" stroke-width=\"0.559167\" stroke-linecap=\"round\"/>\n <path d=\"M9.71094 7.83887L10.2297 11.2381\" stroke=\"#595E6A\" stroke-width=\"0.559167\" stroke-linecap=\"round\"/>\n <path d=\"M13.1016 7.50879L11.7061 9.48585L10.3107 11.4629\" stroke=\"#595E6A\" stroke-width=\"0.559167\" stroke-linecap=\"round\"/>\n <path d=\"M14.0625 12.3242L10.4487 11.4645\" stroke=\"#595E6A\" stroke-width=\"0.559167\" stroke-linecap=\"round\"/>\n <path d=\"M7.32812 9.38867L9.92969 11.4629\" stroke=\"#595E6A\" stroke-width=\"0.559167\" stroke-linecap=\"round\"/>\n <path d=\"M10.3564 10.0068C11.7653 10.0068 13.0293 10.2083 13.9307 10.5244C14.3825 10.6829 14.7287 10.8652 14.9561 11.0537C15.1849 11.2436 15.2617 11.4112 15.2617 11.5459C15.2617 11.6806 15.1849 11.8482 14.9561 12.0381C14.7287 12.2266 14.3825 12.4089 13.9307 12.5674C13.0293 12.8835 11.7653 13.085 10.3564 13.085C8.94773 13.0849 7.68453 12.8835 6.7832 12.5674C6.33123 12.4089 5.98522 12.2266 5.75781 12.0381C5.52881 11.8482 5.45117 11.6806 5.45117 11.5459C5.45117 11.4112 5.52881 11.2436 5.75781 11.0537C5.98522 10.8652 6.33123 10.6829 6.7832 10.5244C7.68453 10.2083 8.94773 10.0069 10.3564 10.0068Z\" stroke=\"#595E6A\" stroke-width=\"0.559167\"/>\n <path d=\"M5.3418 11.502C5.3418 8.79574 7.56101 6.59668 10.3047 6.59668C13.0484 6.59668 15.2676 8.79574 15.2676 11.502C15.2674 14.208 13.0483 16.4072 10.3047 16.4072C7.5611 16.4072 5.34195 14.208 5.3418 11.502Z\" stroke=\"#595E6A\" stroke-width=\"0.559167\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_3818_65351\">\n <rect x=\"5.0625\" y=\"5.73535\" width=\"10.4844\" height=\"11.1833\" rx=\"1.37262\" fill=\"white\"/>\n </clipPath>\n </defs>\n </svg>\n `;\n\nconst duckDevToolsInstructionSm = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.5391 3.33366H15.2057C15.6478 3.33366 16.0717 3.50925 16.3842 3.82181C16.6968 4.13437 16.8724 4.5583 16.8724 5.00033V16.667C16.8724 17.109 16.6968 17.5329 16.3842 17.8455C16.0717 18.1581 15.6478 18.3337 15.2057 18.3337H5.20573C4.7637 18.3337 4.33978 18.1581 4.02722 17.8455C3.71466 17.5329 3.53906 17.109 3.53906 16.667V5.00033C3.53906 4.5583 3.71466 4.13437 4.02722 3.82181C4.33978 3.50925 4.7637 3.33366 5.20573 3.33366H6.8724M7.70573 1.66699H12.7057C13.166 1.66699 13.5391 2.04009 13.5391 2.50033V4.16699C13.5391 4.62723 13.166 5.00033 12.7057 5.00033H7.70573C7.24549 5.00033 6.8724 4.62723 6.8724 4.16699V2.50033C6.8724 2.04009 7.24549 1.66699 7.70573 1.66699Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M13.8511 14.4832L13.8511 12.2179C13.8511 12.1849 13.8446 12.1523 13.8319 12.1218C13.8193 12.0913 13.8008 12.0636 13.7775 12.0403C13.7542 12.017 13.7265 11.9985 13.696 11.9858C13.6655 11.9732 13.6329 11.9667 13.5999 11.9667H12.0609L12.062 11.9664C12.0282 11.965 11.9944 11.9705 11.9627 11.9825C11.9311 11.9945 11.9022 12.0128 11.8778 12.0362C11.8534 12.0597 11.8339 12.0879 11.8207 12.119C11.8074 12.1502 11.8006 12.1837 11.8007 12.2175L11.8007 14.4836M12.8268 11.9642V8.96199M13.8511 14.3133L13.8511 15.4463C13.8512 15.4802 13.8443 15.5137 13.8311 15.5448C13.8178 15.576 13.7984 15.6042 13.774 15.6276C13.7496 15.6511 13.7207 15.6694 13.689 15.6814C13.6574 15.6934 13.6236 15.6989 13.5898 15.6975L13.5909 15.6971H12.0519C12.0189 15.6971 11.9863 15.6906 11.9558 15.678C11.9253 15.6654 11.8976 15.6469 11.8743 15.6236C11.851 15.6002 11.8325 15.5726 11.8198 15.5421C11.8072 15.5116 11.8007 15.4789 11.8007 15.446L11.8007 14.3133M7.63782 11.3024L7.63782 14.7903C7.63777 14.882 7.65579 14.9728 7.69086 15.0575C7.72592 15.1422 7.77734 15.2192 7.84217 15.284C7.907 15.3488 7.98397 15.4002 8.06869 15.4353C8.15341 15.4704 8.2442 15.4884 8.33589 15.4883C8.52089 15.4883 8.6983 15.4148 8.82912 15.284C8.95993 15.1532 9.03343 14.9758 9.03346 14.7908L9.03297 11.3024C9.77223 10.9795 10.4284 10.242 10.4284 9.38361C10.4286 8.52545 9.73103 7.63943 9.03297 7.46528L9.03321 8.96526L8.3354 9.8022L7.63782 8.96501L7.63782 7.46528C6.94001 7.63968 6.24219 8.52546 6.24219 9.38385C6.24243 10.242 6.89857 10.9795 7.63782 11.3024ZM13.0621 8.80729L12.562 8.80729L12.0618 8.3071L12.3119 7.05664L13.3122 7.05664L13.5623 8.3071L13.0621 8.80729Z\" stroke=\"#595E6A\" stroke-width=\"0.866016\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevApprovalInstructionSm = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.5391 3.33366H15.2057C15.6478 3.33366 16.0717 3.50925 16.3842 3.82181C16.6968 4.13437 16.8724 4.5583 16.8724 5.00033V16.667C16.8724 17.109 16.6968 17.5329 16.3842 17.8455C16.0717 18.1581 15.6478 18.3337 15.2057 18.3337H5.20573C4.7637 18.3337 4.33978 18.1581 4.02722 17.8455C3.71466 17.5329 3.53906 17.109 3.53906 16.667V5.00033C3.53906 4.5583 3.71466 4.13437 4.02722 3.82181C4.33978 3.50925 4.7637 3.33366 5.20573 3.33366H6.8724M7.70573 1.66699H12.7057C13.166 1.66699 13.5391 2.04009 13.5391 2.50033V4.16699C13.5391 4.62723 13.166 5.00033 12.7057 5.00033H7.70573C7.24549 5.00033 6.8724 4.62723 6.8724 4.16699V2.50033C6.8724 2.04009 7.24549 1.66699 7.70573 1.66699Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M6.71875 9.36252L7.13939 9.89175L8.62398 8.48047M6.71875 11.8323L7.13939 12.3615L8.62398 10.9502M6.71875 14.302L7.13939 14.8313L8.62398 13.42M13.6469 14.1256H10.1828M13.6469 11.6559H10.1828M13.6469 9.18611H10.1828\" stroke=\"#595E6A\" stroke-width=\"0.866016\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevQuestionCircleBold = `\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.6496 8.00156C14.6496 11.6743 11.6723 14.6516 7.99961 14.6516C4.32692 14.6516 1.34961 11.6743 1.34961 8.00156C1.34961 4.32887 4.32692 1.35156 7.99961 1.35156C11.6723 1.35156 14.6496 4.32887 14.6496 8.00156ZM7.99961 5.17531C7.58643 5.17531 7.25148 5.51026 7.25148 5.92344C7.25148 6.19889 7.02819 6.42219 6.75273 6.42219C6.47728 6.42219 6.25398 6.19889 6.25398 5.92344C6.25398 4.95936 7.03553 4.17781 7.99961 4.17781C8.96369 4.17781 9.74523 4.95936 9.74523 5.92344C9.74523 6.39614 9.55668 6.82583 9.25178 7.1397C9.19042 7.20286 9.13189 7.26133 9.07606 7.31712C8.93253 7.46053 8.80679 7.58616 8.69647 7.72791C8.55081 7.91506 8.49836 8.05261 8.49836 8.16781V8.66656C8.49836 8.94201 8.27506 9.16531 7.99961 9.16531C7.72416 9.16531 7.50086 8.94201 7.50086 8.66656V8.16781C7.50086 7.73211 7.70369 7.37941 7.90928 7.11526C8.0614 6.9198 8.2526 6.72898 8.40777 6.57412C8.45458 6.5274 8.49811 6.48396 8.5363 6.44465C8.66766 6.30943 8.74773 6.12629 8.74773 5.92344C8.74773 5.51026 8.41279 5.17531 7.99961 5.17531ZM7.99961 11.3266C8.36688 11.3266 8.66461 11.0288 8.66461 10.6616C8.66461 10.2943 8.36688 9.99656 7.99961 9.99656C7.63234 9.99656 7.33461 10.2943 7.33461 10.6616C7.33461 11.0288 7.63234 11.3266 7.99961 11.3266Z\" fill=\"#AEB2BC\"/>\n </svg>\n `;\n\nconst duckDevTextSm = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M3 7H17M3 10.5H17M3 14H9\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevHammerBold = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M5.06887 3.06789C6.2261 1.91065 6.80472 1.33203 7.52374 1.33203C8.24276 1.33203 8.82138 1.91065 9.97861 3.06789L12.9245 6.01374C14.0817 7.17098 14.6603 7.7496 14.6603 8.46861C14.6603 9.18763 14.0817 9.76625 12.9245 10.9235C11.7672 12.0807 11.1886 12.6593 10.4696 12.6593C9.75057 12.6593 9.17195 12.0807 8.01471 10.9235L5.06887 7.97764C3.91163 6.8204 3.33301 6.24178 3.33301 5.52276C3.33301 4.80375 3.91163 4.22513 5.06887 3.06789Z\" fill=\"#AEB2BC\"/>\n <path d=\"M4.85567 9.17866L1.88355 12.1508C1.65525 12.3791 1.5411 12.4932 1.47254 12.612C1.2865 12.9342 1.2865 13.3312 1.47254 13.6535C1.5411 13.7722 1.65525 13.8864 1.88353 14.1147C2.11183 14.343 2.22599 14.4571 2.34474 14.5257C2.66699 14.7117 3.06401 14.7117 3.38625 14.5257C3.505 14.4571 3.61915 14.343 3.84745 14.1147L6.81957 11.1426L4.85567 9.17866Z\" fill=\"#AEB2BC\"/>\n <path d=\"M5.56278 8.47155L5.56571 8.46862L7.52961 10.4325L7.52668 10.4355L5.56278 8.47155Z\" fill=\"#AEB2BC\"/>\n <path d=\"M13.112 4.7871C13.2819 4.47023 13.2765 4.08713 13.096 3.77443C13.0274 3.65568 12.9133 3.54153 12.685 3.31324C12.4567 3.08494 12.3426 2.97079 12.2238 2.90223C11.9111 2.7217 11.528 2.71635 11.2111 2.88618L13.112 4.7871Z\" fill=\"#AEB2BC\"/>\n </svg>\n `;\n\nconst duckDevAlignLeftSm = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M14.1667 8.33333H2.5M17.5 5H2.5M17.5 11.6667H2.5M14.1667 15H2.5\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevChecklistSm = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M4 6.52778L4.72857 7.44444L7.3 5M4 10.8056L4.72857 11.7222L7.3 9.27778M4 15.0833L4.72857 16L7.3 13.5556M16 14.7778H10M16 10.5H10M16 6.22222H10\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevMessageSquare = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M14 10C14 10.3536 13.8595 10.6928 13.6095 10.9428C13.3594 11.1929 13.0203 11.3333 12.6667 11.3333H4.66667L2 14V3.33333C2 2.97971 2.14048 2.64057 2.39052 2.39052C2.64057 2.14048 2.97971 2 3.33333 2H12.6667C13.0203 2 13.3594 2.14048 13.6095 2.39052C13.8595 2.64057 14 2.97971 14 3.33333V10Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevSun = `\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.00065 1.33325V1.99992M8.00065 13.9999V14.6666M14.6673 7.99992H14.0007M2.00065 7.99992H1.33398M12.7145 3.28605L12.4526 3.54794M3.5485 12.4521L3.28661 12.714M12.7145 12.7138L12.4526 12.4519M3.5485 3.54777L3.28661 3.28588M12.0007 7.99992C12.0007 10.2091 10.2098 11.9999 8.00065 11.9999C5.79151 11.9999 4.00065 10.2091 4.00065 7.99992C4.00065 5.79078 5.79151 3.99992 8.00065 3.99992C10.2098 3.99992 12.0007 5.79078 12.0007 7.99992Z\" stroke=\"#ADBAC7\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n </svg>\n `;\n\nconst duckDevMessageSquareSm = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M17.5 12.5C17.5 12.942 17.3244 13.366 17.0118 13.6785C16.6993 13.9911 16.2754 14.1667 15.8333 14.1667H5.83333L2.5 17.5V4.16667C2.5 3.72464 2.67559 3.30072 2.98816 2.98816C3.30072 2.67559 3.72464 2.5 4.16667 2.5H15.8333C16.2754 2.5 16.6993 2.67559 17.0118 2.98816C17.3244 3.30072 17.5 3.72464 17.5 4.16667V12.5Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevMinimize2Sm = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M3.33333 11.6667H8.33333M8.33333 11.6667V16.6667M8.33333 11.6667L2.5 17.5M16.6667 8.33333H11.6667M11.6667 8.33333V3.33333M11.6667 8.33333L17.5 2.5\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevMinimize2 = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M2.66667 9.33333H6.66667M6.66667 9.33333V13.3333M6.66667 9.33333L2 14M13.3333 6.66667H9.33333M9.33333 6.66667V2.66667M9.33333 6.66667L14 2\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevHistorySm = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M1.66699 3.33337V8.33337M1.66699 8.33337H6.66699M1.66699 8.33337L5.53366 4.70004C6.68442 3.55122 8.17737 2.80751 9.78756 2.58097C11.3977 2.35442 13.0379 2.65732 14.461 3.44401C15.8841 4.2307 17.013 5.45857 17.6775 6.94262C18.3421 8.42667 18.5063 10.0865 18.1455 11.672C17.7847 13.2575 16.9184 14.6828 15.6771 15.7332C14.4358 16.7835 12.8868 17.402 11.2634 17.4954C9.64006 17.5889 8.03031 17.1522 6.67671 16.2512C5.32311 15.3502 4.29899 14.0337 3.75866 12.5\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M10.833 6.66797V11.668L14.1663 13.3346\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\nconst duckDevGlobeSm = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M18.3327 10.0001C18.3327 14.6025 14.6017 18.3334 9.99935 18.3334M18.3327 10.0001C18.3327 5.39771 14.6017 1.66675 9.99935 1.66675M18.3327 10.0001H1.66602M9.99935 18.3334C5.39698 18.3334 1.66602 14.6025 1.66602 10.0001M9.99935 18.3334C12.0837 16.0515 13.2683 13.0901 13.3327 10.0001C13.2683 6.91011 12.0837 3.94871 9.99935 1.66675M9.99935 18.3334C7.91495 16.0515 6.73039 13.0901 6.66602 10.0001C6.73039 6.91011 7.91495 3.94871 9.99935 1.66675M1.66602 10.0001C1.66602 5.39771 5.39698 1.66675 9.99935 1.66675\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevPaletteSm = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_55509_18976)\">\n <path d=\"M1.66602 10.0218C1.66602 14.3104 4.88862 17.8442 9.03834 18.322C9.65068 18.3925 10.2442 18.1314 10.68 17.6945C11.2246 17.1485 11.2246 16.2633 10.68 15.7174C10.2442 15.2804 9.88889 14.6285 10.2176 14.1058C11.5315 12.0161 18.3327 16.8151 18.3327 10.0218C18.3327 5.40745 14.6017 1.66675 9.99935 1.66675C5.39698 1.66675 1.66602 5.40745 1.66602 10.0218Z\" stroke=\"#595E6A\" stroke-width=\"1.5\"/>\n <path d=\"M5.41602 9.08325C5.69209 9.08325 5.91591 9.3072 5.91602 9.58325C5.91602 9.85939 5.69216 10.0833 5.41602 10.0833C5.13987 10.0833 4.91602 9.85939 4.91602 9.58325C4.91612 9.3072 5.13994 9.08325 5.41602 9.08325ZM14.583 9.08325C14.8589 9.08343 15.0829 9.30731 15.083 9.58325C15.083 9.85929 14.859 10.0831 14.583 10.0833C14.3069 10.0833 14.083 9.85939 14.083 9.58325C14.0831 9.3072 14.3069 9.08325 14.583 9.08325ZM7.9873 5.33325C8.26324 5.3335 8.4873 5.55726 8.4873 5.83325C8.4873 6.10924 8.26324 6.33301 7.9873 6.33325C7.71116 6.33325 7.4873 6.10939 7.4873 5.83325C7.4873 5.55711 7.71116 5.33325 7.9873 5.33325ZM12.083 5.33325C12.3589 5.33343 12.5829 5.55731 12.583 5.83325C12.583 6.10929 12.359 6.33308 12.083 6.33325C11.8069 6.33325 11.583 6.10939 11.583 5.83325C11.5831 5.5572 11.8069 5.33325 12.083 5.33325Z\" stroke=\"#595E6A\" stroke-width=\"1.5\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_55509_18976\">\n <rect width=\"20\" height=\"20\" rx=\"5\" fill=\"white\"/>\n </clipPath>\n </defs>\n </svg>\n `;\n\n\nexport const CUI_ICONS = {\n duckDevDockMedium,\n duckDevImageMedium,\n duckDevWordDockMedium,\n duckDevPrinterMedium,\n duckDevBuildMedium,\n duckDevCupMedium,\n duckDevSlashMedium,\n duckDevTextSm,\n duckDevSlash,\n duckDevCheck,\n duckDevCheckMedium,\n duckDevCheckCircle,\n duckDevCheckCircleMedium,\n duckDevCheckCircleV2,\n duckDevMoreVertical,\n duckDevMoreVerticalMedium,\n duckDevTrash,\n duckDevTrashMedium,\n duckDevEdit,\n duckDevEditMedium,\n duckDevArrowSortMedium,\n duckDevX,\n duckDevXMedium,\n duckDevXCircle,\n duckDevXCircleMedium,\n duckDevClear,\n duckDevClearMedium,\n duckDevEye,\n duckDevEyeMedium,\n duckDevEyeOff,\n duckDevEyeOffMedium,\n duckDevChevronUp,\n duckDevChevronUpMedium,\n duckDevChevronRight,\n duckDevChevronRightMedium,\n duckDevChevronDown,\n duckDevChevronDownMedium,\n duckDevChevronLeft,\n duckDevChevronLeftMedium,\n duckDevChevronsRight,\n duckDevChevronsRightMedium,\n duckDevChevronsLeft,\n duckDevChevronsLeftMedium,\n duckDevChevronsSwitch,\n duckDevDatabase,\n duckDevDatabaseMedium,\n duckDevHome,\n duckDevHomeMedium,\n duckDevUser,\n duckDevUserMedium,\n duckDevUsers,\n duckDevUsersBg,\n duckDevUsersMedium,\n duckDevUserPlus,\n duckDevUserPlusMedium,\n duckDevCopy,\n duckDevCopyMedium,\n duckDevSidebar,\n duckDevSidebarMedium,\n duckDevChart,\n duckDevFolder,\n duckDevFolderMedium,\n duckDevFolderOpen,\n duckDevFolderOpenMedium,\n duckDevPlus,\n duckDevPlusMedium,\n duckDevPlusCircle,\n duckDevFiltersLines,\n duckDevFiltersLinesMedium,\n duckDevSearch,\n duckDevSearchMedium,\n duckDevGrid,\n duckDevGridMedium,\n duckDevList,\n duckDevListMedium,\n duckDevSortAZMedium,\n duckDevFlagBold,\n duckDevFileText,\n duckDevFileTextMedium,\n duckDevLink,\n duckDevExternalLinkMedium,\n duckDevLinkBroken,\n duckDevLinkBrokenMedium,\n duckDevClockMedium,\n duckDevInfo,\n duckDevInfoMedium,\n duckDevInfoCircle,\n duckDevInfoCircleBg,\n duckDevAlertTriangle,\n duckDevAlertTriangleMedium,\n duckDevAlertCircle,\n duckDev2Layers,\n duckDev2LayersMedium,\n duckDev3Layers,\n duckDev3LayersMedium,\n duckDevLearningMedium,\n duckDevBellMedium,\n duckDevMessageCircle,\n duckDevMessageCircleMedium,\n duckDevSlashDivider,\n duckDevCaretDownFillXxs,\n duckDevCaretDownFill,\n duckDevDragHandleDots,\n duckDevPlayCircle,\n duckDevPlayCircleMedium,\n duckDevUpload,\n duckDevUploadMedium,\n duckDevMaximize,\n duckDevMaximizeMedium,\n duckDevArrowUpRight,\n duckDevArrowUpRightMedium,\n duckDevPaperclip,\n duckDevPaperclipMedium,\n duckDevToolsMedium,\n duckDevPartsMedium,\n duckDevPrimitive,\n duckDevPrimitiveMedium,\n duckDevTank,\n duckDevTankMedium,\n duckDevVariant,\n duckDevVariantMedium,\n duckDevChecklist,\n duckDevRefreshCcwMedium,\n duckDevRefreshCcw,\n duckDevBarChartMedium,\n duckDevBarChart,\n duckDevCurvedArrow,\n duckDevBulletFillMedium,\n duckDevBulletMedium,\n duckDevArrowRight,\n duckDevArrowRightMedium,\n duckDevImage,\n duckDevCutLinearMedium,\n duckDevCutLinear,\n duckDevForkLift,\n duckDevForkLiftMedium,\n duckDevPartPrimitive,\n duckDevPartPrimitiveMedium,\n duckDevChecklistsMedium,\n duckDevMoon,\n duckDevMoonMedium,\n duckDevSunMedium,\n duckDevTool,\n duckDevToolMedium,\n duckDevCamera,\n duckDevPanModeMedium,\n duckDevBin,\n duckDevBinMedium,\n duckDevComputerChipMedium,\n duckDevAccessories,\n duckDevAccessoriesMedium,\n duckDevLogisticVehicle,\n duckDevLogisticVehicleMedium,\n duckDevCollapse,\n duckDevCollapseMedium,\n duckDevBookOpenMedium,\n duckDevBriefcaseMedium,\n duckDevCreditCardMedium,\n duckDevBookOpen,\n duckDevBriefcase,\n duckDevCreditCard,\n duckDevLogOut,\n duckDevOrderMedium,\n duckDevCalendarMedium,\n duckDevMapPin,\n duckDevBuildingMedium,\n duckDevStopCircleMedium,\n duckDevPauseCircleMedium,\n duckDevPlayCircleFilledMedium,\n duckDevMenuMedium,\n duckDevTeaCupMedium,\n duckDevSubstageInstructionMedium,\n duckDevTaskInstructionMedium,\n duckDevToolsInstructionSm,\n duckDevApprovalInstructionSm,\n duckDevQuestionCircleBold,\n duckDevHammerBold,\n duckDevAlignLeftSm,\n duckDevChecklistSm,\n duckDevMessageSquare,\n duckDevMessageSquareSm,\n duckDevMinimize2,\n duckDevMinimize2Sm,\n duckDevHistorySm,\n duckDevSun,\n duckDevGlobeSm,\n duckDevPaletteSm,\n duckDevLogOutMedium,\n duckDevEyeBold,\n duckDevEyeBoldMedium\n};\n","import { CUI_ICONS } from './icons';\n\nexport interface SvgIcon {\n id: string;\n name: string;\n svg: string;\n}\n\nfunction camelToKebab(input: string): string {\n // Convert camelCase/PascalCase to kebab-case\n return input\n .replace(/([a-z0-9])([A-Z])/g, '$1-$2')\n .replace(/([A-Z])([A-Z][a-z])/g, '$1-$2')\n .toLowerCase();\n}\n\nfunction titleFromKey(key: string): string {\n const withoutPrefix = key.startsWith('duckDev') ? key.substring('duckDev'.length) : key;\n const words = withoutPrefix.replace(/([a-z0-9])([A-Z])/g, '$1 $2').replace(/([A-Z])([A-Z][a-z])/g, '$1 $2');\n // Trim and capitalize first letter of each word (keep existing upper case like V2)\n return words\n .trim()\n .split(/\\s+/)\n .map(w => w.charAt(0).toUpperCase() + w.slice(1))\n .join(' ');\n}\n\nexport const svgIcons: SvgIcon[] = Object.entries(CUI_ICONS).map(([key, svg]) => {\n const kebab = camelToKebab(key);\n const id = kebab.startsWith('duck-dev') ? kebab : `duck-dev-${kebab}`;\n return {\n id,\n name: titleFromKey(key),\n svg: svg as string,\n } as SvgIcon;\n});\n","import {Component, input} from '@angular/core';\nimport {FormGroup, ReactiveFormsModule} from '@angular/forms';\n\n@Component({\n selector: 'duck-dev-input',\n imports: [\n ReactiveFormsModule\n ],\n templateUrl: './duck-dev-input.html',\n styleUrl: './duck-dev-input.scss',\n})\nexport class DuckDevInput {\n public form = input.required<FormGroup>();\n public controlName = input.required<string>();\n public label = input<string>('');\n public placeholder = input<string>('');\n public type = input<string>('text');\n public formInputType = input<'input' | 'textarea' | 'checkbox'>('input');\n public errorMessage = input<string>('');\n}\n","<label\n [for]=\"controlName()\"\n class=\"form-label\"\n>\n {{ label() }}\n</label>\n\n<div\n class=\"form-field\"\n [class.checkbox-inout-field]=\"formInputType() === 'checkbox'\"\n [formGroup]=\"form()\"\n>\n @switch (formInputType()) {\n @case ('checkbox') {\n <div class=\"checkbox-wrapper\">\n <input\n class=\"inp-cbx\"\n [id]=\"controlName()\"\n type=\"checkbox\"\n formControlName=\"{{ controlName() }}\"\n />\n <label\n class=\"cbx\"\n [for]=\"controlName()\"\n >\n <span>\n <svg\n width=\"12px\"\n height=\"10px\"\n viewbox=\"0 0 12 10\"\n >\n <polyline points=\"1.5 6 4.5 9 10.5 1\" />\n </svg>\n </span>\n <span><ng-content /></span>\n </label>\n </div>\n }\n @case ('textarea') {\n <textarea\n [id]=\"controlName()\"\n formControlName=\"{{ controlName() }}\"\n class=\"form-input form-input_textarea\"\n [class.error]=\"form().get(controlName())?.invalid && form().get(controlName())?.touched\"\n [placeholder]=\"placeholder()\"\n ></textarea>\n }\n @default {\n <input\n [id]=\"controlName()\"\n [type]=\"type()\"\n formControlName=\"{{ controlName() }}\"\n class=\"form-input\"\n [class.error]=\"form().get(controlName())?.invalid && form().get(controlName())?.touched\"\n [placeholder]=\"placeholder()\"\n />\n }\n }\n\n @if (errorMessage()) {\n <div class=\"error-message\">\n {{ errorMessage() }}\n </div>\n }\n</div>\n","import { Injectable, signal } from '@angular/core';\nimport { NotificationPosition, NotificationType } from './duck-dev-notification/duck-dev-notification';\n\nexport interface NotificationItem {\n id: number;\n type: NotificationType;\n position: NotificationPosition;\n title: string;\n message: string;\n duration: number;\n}\n\n@Injectable({ providedIn: 'root' })\nexport class DuckDevNotificationService {\n private seq = 1;\n private timers = new Map<number, number>();\n\n readonly items = signal<NotificationItem[]>([]);\n\n show(options: Partial<Omit<NotificationItem, 'id'>> & Pick<NotificationItem, 'message'>): number {\n const id = this.seq++;\n const item: NotificationItem = {\n id,\n type: options.type ?? 'success',\n position: options.position ?? 'top',\n title: options.title ?? this.defaultTitle(options.type ?? 'success'),\n message: options.message,\n duration: options.duration ?? 3000,\n };\n\n this.items.update(list => [item, ...list]);\n\n if (item.duration > 0) {\n const t = window.setTimeout(() => this.remove(id), item.duration + 350);\n this.timers.set(id, t);\n }\n return id;\n }\n\n success(message: string, opts: Partial<Omit<NotificationItem, 'id' | 'type' | 'message'>> = {}): number {\n return this.show({ ...opts, type: 'success', message });\n }\n\n warning(message: string, opts: Partial<Omit<NotificationItem, 'id' | 'type' | 'message'>> = {}): number {\n return this.show({ ...opts, type: 'warning', message });\n }\n\n error(message: string, opts: Partial<Omit<NotificationItem, 'id' | 'type' | 'message'>> = {}): number {\n return this.show({ ...opts, type: 'error', message });\n }\n\n remove(id: number): void {\n const timer = this.timers.get(id);\n if (timer) {\n clearTimeout(timer);\n this.timers.delete(id);\n }\n this.items.update(list => list.filter(i => i.id !== id));\n }\n\n clear(): void {\n this.items().forEach(i => this.remove(i.id));\n }\n\n private defaultTitle(type: NotificationType): string {\n switch (type) {\n case 'success':\n return 'Success';\n case 'warning':\n return 'Warning';\n case 'error':\n return 'Error';\n }\n }\n}\n","import {Component, OnDestroy, computed, signal, inject} from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\nimport { TranslocoPipe } from '@jsverse/transloco';\nimport { svgIcons, SvgIcon } from '../svg-source-code/icons';\nimport { DuckDevInput } from '../duck-dev-input';\nimport { FormBuilder, FormGroup } from '@angular/forms';\nimport { Subscription } from 'rxjs';\nimport { ButtonFlip } from '../duck-dev-button';\nimport {DuckDevNotificationService} from '../duck-dev-notification/notification.service';\n\n@Component({\n selector: 'app-duck-dev-svg-block',\n imports: [TranslocoPipe, DuckDevInput, ButtonFlip],\n templateUrl: './duck-dev-svg-block.html',\n styleUrl: './duck-dev-svg-block.scss',\n})\nexport class DuckDevSvgBlock implements OnDestroy {\n private readonly notify = inject(DuckDevNotificationService);\n public icons: SvgIcon[] = svgIcons;\n\n public search = signal<string>('');\n public page = signal<number>(1);\n public readonly pageSize = 50;\n\n public searchForm: FormGroup;\n private sub?: Subscription;\n\n public copiedId = signal<string | null>(null);\n private copiedTimer?: any;\n\n // derived lists\n public filteredIcons = computed(() => {\n const q = this.search().trim().toLowerCase();\n if (!q) return this.icons;\n return this.icons.filter(i =>\n i.name.toLowerCase().includes(q) || i.id.toLowerCase().includes(q)\n );\n });\n\n public totalPages = computed(() => {\n const total = this.filteredIcons().length;\n return total === 0 ? 1 : Math.ceil(total / this.pageSize);\n });\n\n public paginatedIcons = computed(() => {\n const p = this.page();\n const size = this.pageSize;\n const start = (p - 1) * size;\n return this.filteredIcons().slice(start, start + size);\n });\n\n constructor(private sanitizer: DomSanitizer, fb: FormBuilder) {\n this.searchForm = fb.group({\n search: [''],\n });\n this.sub = this.searchForm.get('search')!.valueChanges.subscribe((value: string) => {\n this.search.set(value ?? '');\n this.page.set(1);\n });\n }\n\n ngOnDestroy(): void {\n this.sub?.unsubscribe();\n if (this.copiedTimer) clearTimeout(this.copiedTimer);\n }\n\n public getSafeHtml(svg: string): SafeHtml {\n return this.sanitizer.bypassSecurityTrustHtml(svg);\n }\n\n public async copyTag(id: string, event?: Event): Promise<void> {\n event?.stopPropagation?.();\n const tag = `<duck-dev-icon name=\"${id}\"></duck-dev-icon>`;\n try {\n if (navigator.clipboard?.writeText) {\n this.notify.success(`There is a tag in the clipboard ${tag}`);\n await navigator.clipboard.writeText(tag);\n } else {\n const textarea = document.createElement('textarea');\n textarea.value = tag;\n textarea.style.position = 'fixed';\n textarea.style.opacity = '0';\n document.body.appendChild(textarea);\n textarea.select();\n document.execCommand('copy');\n document.body.removeChild(textarea);\n }\n this.copiedId.set(id);\n if (this.copiedTimer) clearTimeout(this.copiedTimer);\n this.copiedTimer = setTimeout(() => this.copiedId.set(null), 1500);\n } catch (e) {\n // no-op\n }\n }\n\n public prevPage(): void {\n const p = this.page();\n if (p > 1) this.page.set(p - 1);\n }\n\n public nextPage(): void {\n const p = this.page();\n const max = this.totalPages();\n if (p < max) this.page.set(p + 1);\n }\n}\n","<div class=\"demo-container\">\n <h1>{{ 'svgComponent.title' | transloco }}</h1>\n\n <section class=\"component-section\">\n <h2>{{ 'svgComponent.description' | transloco }}</h2>\n <p class=\"description\">\n {{ 'svgComponent.descriptionText' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'svgComponent.usage' | transloco }}</h3>\n <p>{{ 'svgComponent.usageText1' | transloco }}</p>\n <p>{{ 'svgComponent.usageText2' | transloco }}</p>\n <p>{{ 'svgComponent.usageText3' | transloco }}</p>\n </div>\n\n <div class=\"example-block\">\n <h3>{{ 'svgComponent.availableIcons' | transloco }}</h3>\n\n <div class=\"icons-toolbar\">\n <duck-dev-input\n [form]=\"searchForm\"\n controlName=\"search\"\n [placeholder]=\"'svgComponent.searchPlaceholder' | transloco\"\n type=\"text\"\n />\n <div class=\"icons-stats\">\n Page {{ page() }} / {{ totalPages() }} •\n Showing\n {{ (paginatedIcons().length === 0) ? 0 : ((page() - 1) * pageSize + 1) }}–\n {{ ((page() - 1) * pageSize) + paginatedIcons().length }}\n of {{ filteredIcons().length }}\n </div>\n </div>\n\n @if (filteredIcons().length === 0) {\n <p>No icons found.</p>\n } @else {\n <div class=\"icons-showcase\">\n @for (icon of paginatedIcons(); track icon.id) {\n <div class=\"icon-card\" (click)=\"copyTag(icon.id)\" role=\"button\" tabindex=\"0\">\n <div class=\"icon-display\" [innerHTML]=\"getSafeHtml(icon.svg)\"></div>\n <div class=\"icon-name\">{{ icon.name }}</div>\n <div class=\"icon-id\">{{ icon.id }}</div>\n <code class=\"icon-tag\" [title]=\"(copiedId() === icon.id) ? ('svgComponent.copied' | transloco) : ('svgComponent.clickToCopy' | transloco)\">&lt;{{ icon.id }}&gt;</code>\n <div class=\"copy-hint\">{{ (copiedId() === icon.id) ? ('svgComponent.copied' | transloco) : ('svgComponent.clickToCopy' | transloco) }}</div>\n </div>\n }\n </div>\n\n <div class=\"pagination-controls\">\n <duck-dev-button-flip [text]=\"'Prev'\" (click)=\"prevPage()\" [direction]=\"'previous'\"></duck-dev-button-flip>\n <span>Page {{ page() }} of {{ totalPages() }}</span>\n <duck-dev-button-flip [text]=\"'Next'\" (click)=\"nextPage()\"></duck-dev-button-flip>\n </div>\n }\n </div>\n\n <div class=\"implementation-block\">\n <h3>{{ 'svgComponent.howToAdd' | transloco }}</h3>\n <ol>\n <li>{{ 'svgComponent.step1' | transloco }}</li>\n <li>{{ 'svgComponent.step2' | transloco }}</li>\n <li>{{ 'svgComponent.step3' | transloco }}</li>\n </ol>\n </div>\n </section>\n</div>\n","import { Component } from '@angular/core';\nimport {TranslocoPipe} from '@jsverse/transloco';\n\n@Component({\n selector: 'app-input-block',\n imports: [\n TranslocoPipe\n ],\n templateUrl: './input-block.html',\n styleUrl: './input-block.scss',\n})\nexport class InputBlock {\n\n}\n","<div class=\"demo-container\">\n <h1>{{ 'inputComponent.title' | transloco }}</h1>\n\n <!-- Input Field Component -->\n <section class=\"component-section\">\n <h2>{{ 'inputComponent.inputField.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'inputComponent.inputField.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'inputComponent.inputField.usage' | transloco }}</h3>\n <p>{{ 'inputComponent.inputField.usageText1' | transloco }}</p>\n <p>{{ 'inputComponent.inputField.usageText2' | transloco }}</p>\n <p>{{ 'inputComponent.inputField.usageText3' | transloco }}</p>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'inputComponent.inputField.inputs' | transloco }}</h3>\n <ul>\n <li><strong>form</strong> ({{ 'inputComponent.inputField.required' | transloco }}) - {{ 'inputComponent.inputField.inputForm' | transloco }}</li>\n <li><strong>controlName</strong> ({{ 'inputComponent.inputField.required' | transloco }}) - {{ 'inputComponent.inputField.inputControlName' | transloco }}</li>\n <li><strong>label</strong> ({{ 'inputComponent.inputField.optional' | transloco }}) - {{ 'inputComponent.inputField.inputLabel' | transloco }}</li>\n <li><strong>placeholder</strong> ({{ 'inputComponent.inputField.optional' | transloco }}) - {{ 'inputComponent.inputField.inputPlaceholder' | transloco }}</li>\n <li><strong>type</strong> ({{ 'inputComponent.inputField.optional' | transloco }}) - {{ 'inputComponent.inputField.inputType' | transloco }}</li>\n <li><strong>formInputType</strong> ({{ 'inputComponent.inputField.optional' | transloco }}) - {{ 'inputComponent.inputField.inputFormInputType' | transloco }}\n <ul>\n <li>'input' - {{ 'inputComponent.inputField.typeInput' | transloco }}</li>\n <li>'textarea' - {{ 'inputComponent.inputField.typeTextarea' | transloco }}</li>\n <li>'checkbox' - {{ 'inputComponent.inputField.typeCheckbox' | transloco }}</li>\n </ul>\n </li>\n <li><strong>errorMessage</strong> ({{ 'inputComponent.inputField.optional' | transloco }}) - {{ 'inputComponent.inputField.inputErrorMessage' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"features-block\">\n <h3>{{ 'inputComponent.inputField.features' | transloco }}</h3>\n <ul>\n <li>{{ 'inputComponent.inputField.feature1' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.feature2' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.feature3' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.feature4' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.feature5' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.feature6' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.feature7' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"api-block\">\n <h3>{{ 'inputComponent.inputField.api' | transloco }}</h3>\n <ul>\n <li><strong>form: FormGroup</strong> - {{ 'inputComponent.inputField.apiForm' | transloco }}</li>\n <li><strong>controlName: string</strong> - {{ 'inputComponent.inputField.apiControlName' | transloco }}</li>\n <li><strong>label?: string</strong> - {{ 'inputComponent.inputField.apiLabel' | transloco }}</li>\n <li><strong>placeholder?: string</strong> - {{ 'inputComponent.inputField.apiPlaceholder' | transloco }}</li>\n <li><strong>type?: string</strong> - {{ 'inputComponent.inputField.apiType' | transloco }}</li>\n <li><strong>formInputType?: 'input' | 'textarea' | 'checkbox'</strong> - {{ 'inputComponent.inputField.apiFormInputType' | transloco }}</li>\n <li><strong>errorMessage?: string</strong> - {{ 'inputComponent.inputField.apiErrorMessage' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"implementation-block\">\n <h3>{{ 'inputComponent.inputField.implementation' | transloco }}</h3>\n <ul>\n <li>{{ 'inputComponent.inputField.implementation1' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.implementation2' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.implementation3' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.implementation4' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.implementation5' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.implementation6' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"example-block\">\n <h3>{{ 'inputComponent.inputField.example' | transloco }}</h3>\n <div class=\"example-wrapper\">\n <h4>{{ 'inputComponent.inputField.exampleComponent' | transloco }}</h4>\n <pre><code>import &#123; Component &#125; from '&#64;angular/core';\nimport &#123; FormBuilder, FormGroup, Validators &#125; from '&#64;angular/forms';\nimport &#123; InputFieldComponent &#125; from './input-field.component';\n\n &#64;Component(&#123;\n selector: 'app-example',\n imports: [InputFieldComponent],\n template: `\n &lt;form [formGroup]=\"exampleForm\"&gt;\n &lt;!-- Text Input --&gt;\n &lt;dd-input-field\n [form]=\"exampleForm\"\n controlName=\"username\"\n label=\"Username\"\n placeholder=\"Enter your username\"\n [errorMessage]=\"getUsernameError()\"\n /&gt;\n\n &lt;!-- Email Input --&gt;\n &lt;dd-input-field\n [form]=\"exampleForm\"\n controlName=\"email\"\n label=\"Email\"\n type=\"email\"\n placeholder=\"example&#64;mail.com\"\n [errorMessage]=\"getEmailError()\"\n /&gt;\n\n &lt;!-- Password Input --&gt;\n &lt;dd-input-field\n [form]=\"exampleForm\"\n controlName=\"password\"\n label=\"Password\"\n type=\"password\"\n placeholder=\"Enter password\"\n [errorMessage]=\"getPasswordError()\"\n /&gt;\n\n &lt;!-- Textarea --&gt;\n &lt;dd-input-field\n [form]=\"exampleForm\"\n controlName=\"description\"\n label=\"Description\"\n formInputType=\"textarea\"\n placeholder=\"Enter description\"\n /&gt;\n\n &lt;!-- Checkbox --&gt;\n &lt;dd-input-field\n [form]=\"exampleForm\"\n controlName=\"agree\"\n label=\"Agreement\"\n formInputType=\"checkbox\"\n &gt;\n I agree to the terms and conditions\n &lt;/dd-input-field&gt;\n &lt;/form&gt;\n `\n&#125;)\nexport class ExampleComponent &#123;\n exampleForm: FormGroup;\n\n constructor(private fb: FormBuilder) &#123;\n this.exampleForm = this.fb.group(&#123;\n username: ['', [Validators.required, Validators.minLength(3)]],\n email: ['', [Validators.required, Validators.email]],\n password: ['', [Validators.required, Validators.minLength(8)]],\n description: [''],\n agree: [false, Validators.requiredTrue]\n &#125;);\n &#125;\n\n getUsernameError(): string &#123;\n const control = this.exampleForm.get('username');\n if (control?.hasError('required') && control?.touched) &#123;\n return 'Username is required';\n &#125;\n if (control?.hasError('minlength') && control?.touched) &#123;\n return 'Username must be at least 3 characters';\n &#125;\n return '';\n &#125;\n\n getEmailError(): string &#123;\n const control = this.exampleForm.get('email');\n if (control?.hasError('required') && control?.touched) &#123;\n return 'Email is required';\n &#125;\n if (control?.hasError('email') && control?.touched) &#123;\n return 'Invalid email format';\n &#125;\n return '';\n &#125;\n\n getPasswordError(): string &#123;\n const control = this.exampleForm.get('password');\n if (control?.hasError('required') && control?.touched) &#123;\n return 'Password is required';\n &#125;\n if (control?.hasError('minlength') && control?.touched) &#123;\n return 'Password must be at least 8 characters';\n &#125;\n return '';\n &#125;\n&#125;</code></pre>\n </div>\n </div>\n </section>\n</div>\n","import { Component, inject } from '@angular/core';\nimport { TranslocoModule } from '@jsverse/transloco';\nimport { DuckDevNotificationService } from '../../duck-dev-notification/notification.service';\n\n@Component({\n selector: 'app-notification-block',\n imports: [TranslocoModule],\n templateUrl: './notification-block.html',\n styleUrl: './notification-block.scss',\n})\nexport class NotificationBlock {\n private readonly notify = inject(DuckDevNotificationService);\n\n showSample(): void {\n this.notify.success('Saved successfully', { title: 'Done', position: 'top', duration: 3000 });\n }\n\n successTop(): void {\n this.notify.success('All changes have been saved.', { title: 'Success', position: 'top' });\n }\n\n warningCenter(): void {\n this.notify.warning('Check the entered data.', { title: 'Warning', position: 'center', duration: 0 });\n }\n\n errorBottom(): void {\n this.notify.error('Something went wrong.', { title: 'Error', position: 'bottom' });\n }\n\n // Additional demos\n showTop(): void {\n this.notify.show({ message: 'Generic info message', title: 'Info', position: 'top', duration: 2500, type: 'success' });\n }\n\n showCenterNoAuto(): void {\n this.notify.show({ message: 'This will stay until you click it', title: 'Manual close', position: 'center', duration: 0, type: 'warning' });\n }\n\n showBottomLong(): void {\n this.notify.show({ message: 'Takes a bit longer to disappear', title: 'Longer duration', position: 'bottom', duration: 6000, type: 'success' });\n }\n\n clearAll(): void {\n this.notify.clear();\n }\n}\n","<div class=\"demo-container\">\n <h1>{{ 'notifications.title' | transloco }}</h1>\n\n <!-- Quick demo -->\n <div class=\"example-row quick-actions\">\n <button class=\"demo-btn\" (click)=\"showSample()\">{{ 'notifications.quickDemo' | transloco }}</button>\n <button class=\"demo-btn\" (click)=\"clearAll()\">{{ 'notifications.clearAll' | transloco }}</button>\n </div>\n\n <!-- Basics -->\n <section class=\"component-section\">\n <h2>{{ 'notifications.basic.title' | transloco }}</h2>\n <p class=\"description\">{{ 'notifications.basic.description' | transloco }}</p>\n\n <div class=\"usage-block\">\n <h3>{{ 'notifications.basic.usage' | transloco }}</h3>\n <pre><code>&lt;duck-dev-notification-container /&gt;\n\n// In your component:\nconstructor(private notify: DuckDevNotificationService) &#123;&#125;\n\nonSave() &#123;\n this.notify.success('Saved successfully', &#123; title: 'Done', position: 'top', duration: 3000 &#125;);\n&#125;\n</code></pre>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'notifications.basic.inputs' | transloco }}</h3>\n <ul>\n <li><strong>type</strong> - {{ 'notifications.basic.inputType' | transloco }}</li>\n <li><strong>title</strong> - {{ 'notifications.basic.inputTitle' | transloco }}</li>\n <li><strong>message</strong> - {{ 'notifications.basic.inputMessage' | transloco }}</li>\n <li><strong>duration</strong> - {{ 'notifications.basic.inputDuration' | transloco }}</li>\n <li><strong>position</strong> - {{ 'notifications.basic.inputPosition' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"examples-block\">\n <h3>{{ 'notifications.basic.examples' | transloco }}</h3>\n <div class=\"example-row\">\n <button class=\"demo-btn\" (click)=\"successTop()\">{{ 'notifications.examples.successTop' | transloco }}</button>\n <button class=\"demo-btn\" (click)=\"warningCenter()\">{{ 'notifications.examples.warningCenter' | transloco }}</button>\n <button class=\"demo-btn\" (click)=\"errorBottom()\">{{ 'notifications.examples.errorBottom' | transloco }}</button>\n </div>\n </div>\n </section>\n\n <!-- Service and Container -->\n <section class=\"component-section\">\n <h2>{{ 'notifications.service.title' | transloco }}</h2>\n <p class=\"description\">{{ 'notifications.service.description' | transloco }}</p>\n\n <div class=\"usage-block\">\n <h3>{{ 'notifications.service.install' | transloco }}</h3>\n <pre><code>// 1) Place container once in app layout (e.g., AppComponent template)\n&lt;duck-dev-notification-container /&gt;\n\n// 2) Inject and use the service in any component\nconstructor(private notify: DuckDevNotificationService) &#123;&#125;\n\nthis.notify.show(&#123;\n type: 'success',\n title: '{{ 'notifications.snippets.titleSuccess' | transloco }}',\n message: '{{ 'notifications.snippets.sampleMessage' | transloco }}',\n position: 'top',\n duration: 3000\n&#125;);\n</code></pre>\n </div>\n\n <div class=\"api-block\">\n <h3>{{ 'notifications.api.title' | transloco }}</h3>\n <ul class=\"api-list\">\n <li><code>show(options: NotificationOptions)</code> — {{ 'notifications.api.show' | transloco }}</li>\n <li><code>success(message, options?)</code> — {{ 'notifications.api.success' | transloco }}</li>\n <li><code>warning(message, options?)</code> — {{ 'notifications.api.warning' | transloco }}</li>\n <li><code>error(message, options?)</code> — {{ 'notifications.api.error' | transloco }}</li>\n <li><code>remove(id)</code> — {{ 'notifications.api.remove' | transloco }}</li>\n <li><code>clear()</code> — {{ 'notifications.api.clear' | transloco }}</li>\n </ul>\n <h4>{{ 'notifications.api.optionsTitle' | transloco }}</h4>\n <pre><code>interface NotificationOptions &#123;\n type?: 'success' | 'warning' | 'error';\n title?: string;\n message: string;\n position?: 'top' | 'center' | 'bottom';\n duration?: number; // {{ 'notifications.api.durationHint' | transloco }}\n&#125;</code></pre>\n </div>\n </section>\n\n <!-- Positions & duration examples -->\n <section class=\"component-section\">\n <h2>{{ 'notifications.positions.title' | transloco }}</h2>\n <p class=\"description\">{{ 'notifications.positions.description' | transloco }}</p>\n <div class=\"examples-block\">\n <div class=\"example-row\">\n <button class=\"demo-btn\" (click)=\"showTop()\">{{ 'notifications.positions.top' | transloco }}</button>\n <button class=\"demo-btn\" (click)=\"showCenterNoAuto()\">{{ 'notifications.positions.centerNoAuto' | transloco }}</button>\n <button class=\"demo-btn\" (click)=\"showBottomLong()\">{{ 'notifications.positions.bottomLong' | transloco }}</button>\n </div>\n </div>\n <p class=\"tip\">{{ 'notifications.tip.clickToClose' | transloco }}</p>\n </section>\n\n <!-- Advanced -->\n <section class=\"component-section\">\n <h2>{{ 'notifications.advanced.title' | transloco }}</h2>\n <ul>\n <li>{{ 'notifications.advanced.cssOnly' | transloco }}</li>\n <li>{{ 'notifications.advanced.palette' | transloco }}</li>\n <li>{{ 'notifications.advanced.stacking' | transloco }}</li>\n <li>{{ 'notifications.advanced.accessibility' | transloco }}</li>\n </ul>\n </section>\n\n</div>\n","import { Component, input, computed } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\nimport { svgIcons } from '../svg-source-code/icons';\n\n@Component({\n selector: 'duck-dev-icon',\n standalone: true,\n template: `\n <span class=\"duck-dev-icon\" [innerHTML]=\"svgHtml()\"></span>\n `,\n styles: [\n `:host{display:inline-flex;line-height:0}\n .duck-dev-icon{display:inline-flex;}\n `\n ]\n})\nexport class DuckDevIcon {\n private static iconMap = new Map<string, string>(svgIcons.map(i => [i.id, i.svg]));\n\n public readonly name = input.required<string>();\n\n constructor(private sanitizer: DomSanitizer) {}\n\n readonly svgHtml = computed<SafeHtml>(() => {\n const n = this.name();\n const svg = DuckDevIcon.iconMap.get(n) ?? '';\n return this.sanitizer.bypassSecurityTrustHtml(svg);\n });\n}\n","import {Component, input, OnDestroy, OnInit, output, signal} from '@angular/core';\nimport { DuckDevIcon } from '../../duck-dev-icon/duck-dev-icon';\n\nexport type NotificationType = 'success' | 'warning' | 'error';\nexport type NotificationPosition = 'top' | 'center' | 'bottom';\n\n@Component({\n selector: 'duck-dev-notification',\n imports: [DuckDevIcon],\n templateUrl: './duck-dev-notification.html',\n styleUrl: './duck-dev-notification.scss'\n})\nexport class DuckDevNotification implements OnInit, OnDestroy {\n public readonly type = input<NotificationType>('success');\n public readonly title = input.required<string>();\n public readonly message = input.required<string>();\n public readonly duration = input<number>(3000);\n public readonly position = input<NotificationPosition>('top');\n\n public readonly closed = output<void>();\n\n isVisible = signal(false);\n state = signal<'enter' | 'leave'>('enter');\n\n private timer?: number;\n\n public ngOnInit() {\n // Start visible with CSS-only transition\n setTimeout(() => {\n this.isVisible.set(true);\n this.state.set('enter');\n }, 10);\n\n if (this.duration() > 0) {\n this.timer = window.setTimeout(() => {\n this.close();\n }, this.duration());\n }\n }\n\n public close() {\n this.state.set('leave');\n setTimeout(() => {\n this.isVisible.set(false);\n this.closed.emit();\n }, 300);\n }\n\n public ngOnDestroy() {\n if (this.timer) {\n clearTimeout(this.timer);\n }\n }\n}\n","@if (isVisible()) {\n <div\n [class]=\"'notification notification--' + type() + ' notification--pos-' + position() + ' notification--' + state()\"\n (click)=\"close()\">\n <div class=\"notification__icon\">\n <span>@switch (type()){\n @case('success'){\n <duck-dev-icon name=\"duck-dev-check\"></duck-dev-icon>\n }\n @case ('warning'){\n <duck-dev-icon name=\"duck-dev-alert-triangle\"></duck-dev-icon>\n }\n @case ('error'){\n <duck-dev-icon name=\"duck-dev-alert-circle\"></duck-dev-icon>\n }\n }</span>\n </div>\n <div class=\"notification__content\">\n <h4 class=\"notification__title\">{{ title() }}</h4>\n <p class=\"notification__message\">{{ message() }}</p>\n </div>\n <button\n class=\"notification__close\"\n (click)=\"close()\"\n type=\"button\"\n aria-label=\"Закрыть\">\n ×\n </button>\n </div>\n}\n","import { Component, ElementRef, OnDestroy, OnInit, inject } from '@angular/core';\nimport { DuckDevNotification } from './duck-dev-notification';\nimport { DuckDevNotificationService } from '../notification.service';\n\n@Component({\n selector: 'duck-dev-notification-container',\n standalone: true,\n imports: [DuckDevNotification],\n template: `\n @for (n of service.items(); track n.id) {\n <duck-dev-notification\n [type]=\"n.type\"\n [title]=\"n.title\"\n [message]=\"n.message\"\n [duration]=\"n.duration\"\n [position]=\"n.position\"\n (closed)=\"service.remove(n.id)\"\n />\n }\n `,\n styles: [\n `:host{display:contents;}`\n ]\n})\nexport class DuckDevNotificationContainer implements OnInit, OnDestroy {\n readonly service = inject(DuckDevNotificationService);\n private readonly hostRef = inject(ElementRef<HTMLElement>);\n private originalParent?: Node | null;\n private nextSibling?: Node | null;\n\n ngOnInit(): void {\n const el = this.hostRef.nativeElement;\n // Move host to document.body so fixed children are viewport-anchored and above app layout\n this.originalParent = el.parentNode;\n this.nextSibling = el.nextSibling;\n document.body.appendChild(el);\n }\n\n ngOnDestroy(): void {\n // Try to restore the element to its original place (useful in dev HMR or if component is destroyed)\n const el = this.hostRef.nativeElement;\n if (this.originalParent) {\n try {\n if (this.nextSibling && this.originalParent.contains(this.nextSibling)) {\n this.originalParent.insertBefore(el, this.nextSibling);\n } else {\n this.originalParent.appendChild(el);\n }\n } catch {\n // noop if parent is gone\n }\n } else if (el.parentNode === document.body) {\n document.body.removeChild(el);\n }\n }\n}\n","import {Component, signal, inject} from '@angular/core';\nimport {ButtonBlock} from './button-block';\nimport {DuckDevTabItem, DuckDevTabVertical} from '../index';\nimport {LoaderBlock} from './loader-block';\nimport {TabsBlock} from './tabs-block';\nimport {DuckDevSvgBlock} from '../duck-dev-svg-block/duck-dev-svg-block';\nimport {TranslocoService} from '@jsverse/transloco';\nimport {InputBlock} from './input-block/input-block';\nimport {NotificationBlock} from './notification-block';\nimport {DuckDevNotificationContainer} from '../duck-dev-notification/duck-dev-notification/duck-dev-notification-container';\n\n@Component({\n selector: 'duck-dev-main-documentation-page',\n imports: [\n ButtonBlock,\n LoaderBlock,\n TabsBlock,\n DuckDevSvgBlock,\n DuckDevTabVertical,\n InputBlock,\n NotificationBlock,\n DuckDevNotificationContainer\n ],\n templateUrl: './main-documentation-page.html',\n styleUrl: './main-documentation-page.scss',\n})\nexport class MainDocumentationPage {\n private translocoService = inject(TranslocoService);\n\n protected readonly title = signal('demo');\n\n protected readonly tabs: DuckDevTabItem[] = [\n { id: 'buttons', label: this.translocoService.translate('tabs.buttons') },\n { id: 'loaders', label: this.translocoService.translate('tabs.loaders') },\n { id: 'tabs', label: this.translocoService.translate('tabs.tabs') },\n { id: 'input', label: this.translocoService.translate('tabs.input') },\n { id: 'notifications', label: this.translocoService.translate('tabs.notifications') },\n { id: 'svg', label: this.translocoService.translate('tabs.svg') }\n ];\n\n protected readonly activeTab = signal<DuckDevTabItem>(this.tabs[0]);\n\n protected onTabChange(tab: DuckDevTabItem): void {\n this.activeTab.set(tab);\n }\n}\n","<duck-dev-tab-vertical [tabs]=\"tabs\" (tabChange)=\"onTabChange($event)\">\n @if (activeTab().id === 'buttons') {\n <app-button-block />\n }\n @if (activeTab().id === 'loaders') {\n <app-loader-block />\n }\n @if (activeTab().id === 'tabs') {\n <app-tabs-block />\n }\n @if(activeTab().id === 'input'){\n <app-input-block />\n }\n @if(activeTab().id === 'notifications'){\n <app-notification-block />\n }\n @if (activeTab().id === 'svg') {\n <app-duck-dev-svg-block />\n }\n</duck-dev-tab-vertical>\n\n<duck-dev-notification-container />\n","import { Translation } from '@jsverse/transloco';\n\nexport const DuckDevLibTranslations: Record<string, Promise<Translation>> = {\n en: import('../i18n/en.json'),\n ru: import('../i18n/ru.json')\n} as const;\n","/*\n * Public API Surface of duck-dev-lib\n */\nexport * from './lib'\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i1","i2"],"mappings":"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"}
1
+ {"version":3,"file":"duck-dev-lib.mjs","sources":["../../../projects/duck-dev-lib/src/lib/shared/enum/button-enum.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-button/button-blur-lift/button-blur-lift.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-button/button-blur-lift/button-blur-lift.html","../../../projects/duck-dev-lib/src/lib/duck-dev-button/button-glide-over/button-glide-over.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-button/button-glide-over/button-glide-over.html","../../../projects/duck-dev-lib/src/lib/duck-dev-button/button-flip/button-flip.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-button/button-flip/button-flip.html","../../../projects/duck-dev-lib/src/lib/duck-dev-button/button-casper/button-casper.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-button/button-casper/button-casper.html","../../../projects/duck-dev-lib/src/lib/duck-dev-loader/loader-text-bubble/loader-loading-bubble.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-loader/loader-text-bubble/loader-loading-bubble.html","../../../projects/duck-dev-lib/src/lib/duck-dev-loader/loader-classic/loader-classic.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-loader/loader-classic/loader-classic.html","../../../projects/duck-dev-lib/src/lib/duck-dev-loader/loader-three-dots/loader-three-dots.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-loader/loader-three-dots/loader-three-dots.html","../../../projects/duck-dev-lib/src/lib/duck-dev-tab/duck-dev-horizontal-tab/duck-dev-tab.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-tab/duck-dev-horizontal-tab/duck-dev-tab.html","../../../projects/duck-dev-lib/src/lib/duck-dev-tab/duck-dev-vertical-tab/duck-dev-tab-vertical.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-tab/duck-dev-vertical-tab/duck-dev-tab-vertical.html","../../../projects/duck-dev-lib/src/lib/main-documentation-page/button-block/button-block.ts","../../../projects/duck-dev-lib/src/lib/main-documentation-page/button-block/button-block.html","../../../projects/duck-dev-lib/src/lib/main-documentation-page/loader-block/loader-block.ts","../../../projects/duck-dev-lib/src/lib/main-documentation-page/loader-block/loader-block.html","../../../projects/duck-dev-lib/src/lib/main-documentation-page/tabs-block/tabs-block.ts","../../../projects/duck-dev-lib/src/lib/main-documentation-page/tabs-block/tabs-block.html","../../../projects/duck-dev-lib/src/lib/svg-source-code/icons/icons.ts","../../../projects/duck-dev-lib/src/lib/svg-source-code/icons/index.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-input/duck-dev-input/duck-dev-input.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-input/duck-dev-input/duck-dev-input.html","../../../projects/duck-dev-lib/src/lib/duck-dev-notification/notification.service.ts","../../../projects/duck-dev-lib/src/lib/main-documentation-page/duck-dev-svg-block/duck-dev-svg-block.ts","../../../projects/duck-dev-lib/src/lib/main-documentation-page/duck-dev-svg-block/duck-dev-svg-block.html","../../../projects/duck-dev-lib/src/lib/main-documentation-page/input-block/input-block.ts","../../../projects/duck-dev-lib/src/lib/main-documentation-page/input-block/input-block.html","../../../projects/duck-dev-lib/src/lib/main-documentation-page/notification-block/notification-block.ts","../../../projects/duck-dev-lib/src/lib/main-documentation-page/notification-block/notification-block.html","../../../projects/duck-dev-lib/src/lib/duck-dev-icon/duck-dev-icon.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-notification/duck-dev-notification/duck-dev-notification.ts","../../../projects/duck-dev-lib/src/lib/duck-dev-notification/duck-dev-notification/duck-dev-notification.html","../../../projects/duck-dev-lib/src/lib/duck-dev-notification/duck-dev-notification/duck-dev-notification-container.ts","../../../projects/duck-dev-lib/src/lib/main-documentation-page/main-documentation-page.ts","../../../projects/duck-dev-lib/src/lib/main-documentation-page/main-documentation-page.html","../../../projects/duck-dev-lib/src/lib/translation.ts","../../../projects/duck-dev-lib/src/public-api.ts","../../../projects/duck-dev-lib/src/duck-dev-lib.ts"],"sourcesContent":["export enum ButtonEnumColor {\n Orange = 'orange',\n Dark = 'dark',\n White = 'white',\n Gray = 'gray',\n Violet = 'violet'\n}\n","import {Component, computed, input} from '@angular/core';\nimport {ButtonEnumColor} from '../../shared';\n\n@Component({\n selector: 'duck-dev-button-blur-lift',\n imports: [],\n templateUrl: './button-blur-lift.html',\n styleUrl: './button-blur-lift.scss',\n})\nexport class ButtonBlurLift {\n public readonly textButton = input.required<string>();\n public readonly colorButton = input<ButtonEnumColor>(ButtonEnumColor.White);\n public readonly padding = input<string | null>(null);\n public readonly hoverText = input<string | null>(null);\n\n protected readonly buttonStyle = computed(() => {\n const color = this.colorButton();\n let bgColor, borderColor, hoverColor, activeColor, textColor, focusShadow;\n\n switch (color) {\n case ButtonEnumColor.Violet:\n bgColor = 'var(--dd-base-secondary)';\n hoverColor = 'var(--dd-base-secondary)';\n activeColor = 'var(--dd-base-secondary)';\n textColor = 'var(--dd-gray-0)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-secondary)';\n break;\n\n case ButtonEnumColor.Orange:\n bgColor = 'var(--dd-base-accent-orange)';\n hoverColor = 'var(--dd-base-active-orange)';\n activeColor = 'var(--dd-base-accent-yellow)';\n textColor = 'var(--dd-gray-0)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-active-orange)';\n break;\n\n case ButtonEnumColor.White:\n bgColor = 'var(--dd-base-0)';\n hoverColor = 'var(--dd-base-100)';\n activeColor = 'var(--dd-base-200)';\n textColor = 'var(--dd-base-600)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-300)';\n break;\n\n case ButtonEnumColor.Gray:\n bgColor = 'var(--dd-base-100)';\n hoverColor = 'var(--dd-base-200)';\n activeColor = 'var(--dd-base-200)';\n textColor = 'var(--dd-base-600)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-400)';\n break;\n\n case ButtonEnumColor.Dark:\n bgColor = 'var(--dd-base-600)';\n hoverColor = 'var(--dd-base-400)';\n activeColor = 'var(--dd-base-300)';\n textColor = 'var(--dd-base-0)';\n focusShadow = '0 0 0 3px rgba(18, 19, 21, 0.3)';\n borderColor = 'var(--dd-base-600)';\n break;\n\n default:\n bgColor = 'var(--dd-base-0)';\n hoverColor = 'var(--dd-base-100)';\n activeColor = 'var(--dd-base-200)';\n textColor = 'var(--dd-base-600)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-300)';\n break;\n }\n\n return {\n '--btn-bg-color': bgColor,\n '--btn-border-color': borderColor,\n '--btn-padding': this.padding() || '10px 24px',\n '--btn-hover-color': hoverColor,\n '--btn-active-color': activeColor,\n '--btn-text-color': textColor,\n '--btn-focus-shadow': focusShadow\n };\n });\n\n protected readonly textLetters = computed(() => {\n return this.textButton()\n .split('')\n .map((char) => (char === ' ' ? '\\u00A0' : char));\n });\n\n protected readonly hoverTextLetters = computed(() => {\n const hover = this.hoverText();\n\n return hover ? hover.split('').map((char) => (char === ' ' ? '\\u00A0' : char)) : [];\n });\n}\n","<button\n type=\"button\"\n class=\"rounded-button rounded-button--blur-lift\"\n [style]=\"buttonStyle()\"\n>\n <span class=\"button-blur-lift__screen-reader-text\">{{ textButton() }}</span>\n <span\n aria-hidden=\"true\"\n class=\"button-blur-lift__container\"\n >\n <span class=\"button-blur-lift__text\">\n @for (letter of textLetters(); track $index) {\n <span\n [style.--index-outer]=\"$index\"\n class=\"button-blur-lift__letter-outer\"\n >\n <span\n [style.--index]=\"2\"\n class=\"button-blur-lift__letter\"\n >\n {{ letter }}\n </span>\n <span\n [style.--index]=\"1\"\n class=\"button-blur-lift__letter\"\n >\n {{ letter }}\n </span>\n <span\n [style.--index]=\"0\"\n class=\"button-blur-lift__letter\"\n >\n {{ letter }}\n </span>\n </span>\n }\n </span>\n\n @if (hoverText()) {\n <div class=\"button-blur-lift__hover-text\">\n @for (letter of hoverTextLetters(); track $index) {\n <span\n [style.--index-outer]=\"$index\"\n class=\"button-blur-lift__hover-letter-outer\"\n >\n <span\n [style.--index]=\"2\"\n class=\"button-blur-lift__hover-letter\"\n >\n {{ letter }}\n </span>\n <span\n [style.--index]=\"1\"\n class=\"button-blur-lift__hover-letter\"\n >\n {{ letter }}\n </span>\n <span\n [style.--index]=\"0\"\n class=\"button-blur-lift__hover-letter\"\n >\n {{ letter }}\n </span>\n </span>\n }\n </div>\n }\n </span>\n <span class=\"button-blur-lift__background\"></span>\n</button>\n","import {Component, computed, input} from '@angular/core';\nimport {ButtonEnumColor} from '../../shared';\n\n@Component({\n selector: 'duck-dev-button-glide-over',\n standalone: true,\n imports: [],\n templateUrl: './button-glide-over.html',\n styleUrl: './button-glide-over.scss',\n})\nexport class ButtonGlideOver {\n public readonly textButton = input.required<string>();\n public readonly colorButton = input<ButtonEnumColor>(ButtonEnumColor.White);\n public readonly padding = input<string | null>(null);\n\n protected readonly buttonStyle = computed(() => {\n const color = this.colorButton();\n let bgColor, borderColor, hoverColor, activeColor, textColor, focusShadow;\n\n switch (color) {\n case ButtonEnumColor.Violet:\n bgColor = 'var(--dd-base-secondary)';\n hoverColor = 'var(--dd-base-secondary)';\n activeColor = 'var(--dd-base-secondary)';\n textColor = 'var(--dd-gray-0)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-secondary)';\n break;\n\n case ButtonEnumColor.Orange:\n bgColor = 'var(--dd-base-accent-orange)';\n hoverColor = 'var(--dd-base-active-orange)';\n activeColor = 'var(--dd-base-accent-yellow)';\n textColor = 'var(--dd-gray-0)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-active-orange)';\n break;\n\n case ButtonEnumColor.White:\n bgColor = 'var(--dd-base-0)';\n hoverColor = 'var(--dd-base-100)';\n activeColor = 'var(--dd-base-200)';\n textColor = 'var(--dd-base-600)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-300)';\n break;\n\n case ButtonEnumColor.Gray:\n bgColor = 'var(--dd-base-100)';\n hoverColor = 'var(--dd-base-200)';\n activeColor = 'var(--dd-base-200)';\n textColor = 'var(--dd-base-600)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-400)';\n break;\n\n case ButtonEnumColor.Dark:\n bgColor = 'var(--dd-base-600)';\n hoverColor = 'var(--dd-base-400)';\n activeColor = 'var(--dd-base-300)';\n textColor = 'var(--dd-base-0)';\n focusShadow = '0 0 0 3px rgba(18, 19, 21, 0.3)';\n borderColor = 'var(--dd-base-600)';\n break;\n\n default:\n bgColor = 'var(--dd-base-0)';\n hoverColor = 'var(--dd-base-100)';\n activeColor = 'var(--dd-base-200)';\n textColor = 'var(--dd-base-600)';\n focusShadow = '0 0 0 3px rgba(0, 0, 0, 0.1)';\n borderColor = 'var(--dd-base-300)';\n break;\n }\n\n return {\n '--btn-bg-color': bgColor,\n '--btn-border-color': borderColor,\n '--btn-padding': this.padding() || '10px 24px',\n '--btn-hover-color': hoverColor,\n '--btn-active-color': activeColor,\n '--btn-text-color': textColor,\n '--btn-focus-shadow': focusShadow\n };\n });\n}\n","<button\n type=\"button\"\n class=\"rounded-button rounded-button--glide-over\"\n [style]=\"buttonStyle()\"\n>\n<span class=\"button-glide-over__container\">\n <span class=\"button-glide-over__icon is-first\">\n <svg\n class=\"button-glide-over__icon-item\"\n style=\"--index: 3\"\n viewBox=\"0 0 256 256\"\n >\n <path\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"24\"\n d=\"M40 128h176M144 56l72 72-72 72\"\n />\n </svg>\n </span>\n\n <span class=\"button-glide-over__text\">{{ textButton() }}</span>\n\n <span class=\"button-glide-over__icon is-last\">\n <svg\n class=\"button-glide-over__icon-item\"\n style=\"--index: 0\"\n viewBox=\"0 0 256 256\"\n >\n <path\n fill=\"none\"\n stroke=\"currentColor\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"20\"\n d=\"M40 128h176M144 56l72 72-72 72\"\n />\n </svg>\n </span>\n </span>\n\n<span class=\"button-glide-over__background\"></span>\n</button>\n","import {Component, computed, input} from '@angular/core';\nimport {ButtonEnumColor} from '../../shared';\n\n@Component({\n selector: 'duck-dev-button-flip',\n standalone: true,\n templateUrl: './button-flip.html',\n styleUrl: './button-flip.scss',\n})\nexport class ButtonFlip {\n public readonly text = input<string>('Color-Flip');\n public readonly disabled = input<boolean>(false);\n public readonly arrowIndex = input<number>(0);\n public readonly direction = input<'previous' | 'next'>();\n public readonly colorButton = input<ButtonEnumColor>(ButtonEnumColor.White);\n\n protected readonly buttonStyle = computed(() => {\n const color = this.colorButton();\n let textColor: string, bgColor: string;\n\n switch (color) {\n case ButtonEnumColor.Violet:\n textColor = 'var(--dd-gray-0)';\n bgColor = 'var(--dd-base-secondary)';\n break;\n case ButtonEnumColor.Orange:\n textColor = 'var(--dd-gray-0)';\n bgColor = 'var(--dd-base-accent-orange)';\n break;\n case ButtonEnumColor.White:\n textColor = 'var(--dd-base-600)';\n bgColor = 'var(--dd-base-0)';\n break;\n case ButtonEnumColor.Gray:\n textColor = 'var(--dd-base-600)';\n bgColor = 'var(--dd-base-100)';\n break;\n case ButtonEnumColor.Dark:\n textColor = 'var(--dd-base-0)';\n bgColor = 'var(--dd-base-600)';\n break;\n default:\n textColor = 'var(--dd-base-600)';\n bgColor = 'var(--dd-base-0)';\n break;\n }\n\n return {\n '--btn-text-color': textColor,\n '--btn-bg-color': bgColor,\n } as { [key: string]: string };\n });\n}\n","<div\n class=\"button-color-flip w-inline-block\"\n [class.disabled]=\"disabled()\"\n [class.is-prev]=\"direction() === 'previous'\"\n [class.is-next]=\"direction() === 'next' || !direction()\"\n [attr.aria-disabled]=\"disabled()\"\n role=\"button\"\n tabindex=\"0\"\n>\n <span class=\"button-color-flip_inner\"\n [style.--btn-bg-color]=\"buttonStyle()['--btn-bg-color']\"\n [style.--btn-text-color]=\"buttonStyle()['--btn-text-color']\">\n <span [attr.data-text]=\"text()\" class=\"button-color-flip_back\"></span>\n <span class=\"button-color-flip_front\">\n <span class=\"button-color-flip_bg\"></span>\n <span class=\"button-color-flip_text\">{{ text() }}</span>\n </span>\n </span>\n\n <span class=\"button-color-flip_arrow-carrier\" aria-hidden=\"true\">\n <span [style.--index]=\"arrowIndex()\" class=\"button-color-flip_arrow\">{{ direction() === 'previous' ? '←' : '→' }}</span>\n </span>\n</div>\n","import {Component, computed, input} from '@angular/core';\nimport {ButtonEnumColor} from '../../shared';\nimport {NgStyle} from '@angular/common';\n\n@Component({\n selector: 'duck-dev-button-casper',\n standalone: true,\n imports: [\n NgStyle\n ],\n templateUrl: './button-casper.html',\n styleUrl: './button-casper.scss',\n})\nexport class ButtonCasper {\n public readonly isDisabled = input<boolean>(false);\n public readonly text = input<string>('empty');\n public readonly colorButton = input<ButtonEnumColor>(ButtonEnumColor.White);\n\n protected readonly buttonStyle = computed(() => {\n const color = this.colorButton();\n let baseColor: string;\n let accentColor: string;\n\n switch (color) {\n case ButtonEnumColor.Violet:\n baseColor = 'var(--dd-base-secondary)';\n accentColor = 'var(--dd-gray-0)';\n break;\n case ButtonEnumColor.Orange:\n baseColor = 'var(--dd-base-accent-orange)';\n accentColor = 'var(--dd-gray-0)';\n break;\n case ButtonEnumColor.White:\n baseColor = 'var(--dd-base-600)';\n accentColor = 'var(--dd-base-0)';\n break;\n case ButtonEnumColor.Gray:\n baseColor = 'var(--dd-base-300)';\n accentColor = 'var(--dd-base-600)';\n break;\n case ButtonEnumColor.Dark:\n baseColor = 'var(--dd-base-600)';\n accentColor = 'var(--dd-base-0)';\n break;\n default:\n baseColor = 'var(--dd-base-600)';\n accentColor = 'var(--dd-base-0)';\n break;\n }\n\n return {\n '--color': baseColor,\n '--color-accent': accentColor,\n } as { [key: string]: string };\n });\n}\n","<button\n class=\"button-default is-casper\"\n [disabled]=\"isDisabled()\"\n [ngStyle]=\"buttonStyle()\"\n>\n <span class=\"content\">\n {{ text() }}\n </span>\n</button>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'duck-dev-loader-loading-bubble',\n imports: [],\n templateUrl: './loader-loading-bubble.html',\n styleUrl: './loader-loading-bubble.scss',\n})\nexport class LoaderLoadingBubble {\n\n}\n","<div class=\"container\">\n <div class=\"main\">\n <span class=\"loader\">Load&nbsp;ng</span>\n </div>\n</div>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'duck-dev-loader-classic',\n imports: [],\n templateUrl: './loader-classic.html',\n styleUrl: './loader-classic.scss',\n})\nexport class LoaderClassic {}\n","<span class=\"loader\"></span>\n","import { Component } from '@angular/core';\n\n@Component({\n selector: 'duck-dev-loader-three-dots',\n imports: [],\n templateUrl: './loader-three-dots.html',\n styleUrl: './loader-three-dots.scss',\n})\nexport class LoaderThreeDots {}\n","<span class=\"loader\"></span>\n","import { Component, signal, computed, input, output } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nexport interface DuckDevTabItem {\n id: string;\n label: string;\n content?: any;\n}\n\n@Component({\n selector: 'duck-dev-tab',\n standalone: true,\n imports: [CommonModule],\n templateUrl: './duck-dev-tab.html',\n styleUrl: './duck-dev-tab.scss',\n})\nexport class DuckDevTab {\n public tabs = input<DuckDevTabItem[]>([]);\n public tabChange = output<DuckDevTabItem>();\n\n public readonly activeTabIndex = signal<number>(0);\n public readonly animationDirection = signal<'left' | 'right'>('right');\n\n public activeTab = computed(() => this.tabs()[this.activeTabIndex()]);\n\n protected selectTab(index: number): void {\n if (index === this.activeTabIndex()) {\n return;\n }\n\n this.animationDirection.set(index > this.activeTabIndex() ? 'right' : 'left');\n this.activeTabIndex.set(index);\n this.tabChange.emit(this.tabs()[index]);\n }\n\n protected isActive(index: number): boolean {\n return this.activeTabIndex() === index;\n }\n}\n","<div class=\"duck-dev-tab\">\n <div class=\"tab-header\">\n @for (tab of tabs(); track tab.id; let i = $index) {\n <button\n class=\"tab-button\"\n [class.active]=\"isActive(i)\"\n (click)=\"selectTab(i)\"\n type=\"button\"\n >\n {{ tab.label }}\n </button>\n }\n <div\n class=\"tab-indicator\"\n [style.transform]=\"'translateX(' + (activeTabIndex() * 100) + '%)'\"\n [style.width]=\"'calc(100% / ' + tabs().length + ')'\"\n ></div>\n </div>\n\n <div class=\"tab-content-wrapper\">\n <div\n class=\"tab-content\"\n [class.slide-left]=\"animationDirection() === 'left'\"\n [class.slide-right]=\"animationDirection() === 'right'\"\n [attr.data-active-index]=\"activeTabIndex()\"\n >\n <ng-content></ng-content>\n </div>\n </div>\n</div>\n","import { Component, signal, computed, input, output, viewChildren, effect, AfterViewInit, ElementRef } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nexport interface DuckDevTabVerticalItem {\n id: string;\n label: string;\n icon?: string;\n content?: any;\n}\n\n@Component({\n selector: 'duck-dev-tab-vertical',\n standalone: true,\n imports: [CommonModule],\n templateUrl: './duck-dev-tab-vertical.html',\n styleUrl: './duck-dev-tab-vertical.scss',\n})\nexport class DuckDevTabVertical {\n public tabs = input<DuckDevTabVerticalItem[]>([]);\n public tabChange = output<DuckDevTabVerticalItem>();\n\n public readonly activeTabIndex = signal<number>(0);\n public readonly animationDirection = signal<'up' | 'down' | 'none'>('none');\n public readonly animationKey = signal<number>(0);\n public readonly indicatorTop = signal<number>(0);\n public readonly indicatorHeight = signal<number>(0);\n\n public activeTab = computed(() => this.tabs()[this.activeTabIndex()]);\n\n public tabButtons = viewChildren<ElementRef<HTMLButtonElement>>('tabButton');\n\n constructor() {\n effect(() => {\n const buttons = this.tabButtons();\n const activeIndex = this.activeTabIndex();\n\n if (buttons && buttons.length > activeIndex) {\n const activeButton = buttons[activeIndex].nativeElement;\n this.indicatorTop.set(activeButton.offsetTop);\n this.indicatorHeight.set(activeButton.offsetHeight);\n }\n });\n }\n\n protected selectTab(index: number): void {\n if (index === this.activeTabIndex()) {\n return;\n }\n\n const direction = index > this.activeTabIndex() ? 'down' : 'up';\n\n // Reset animation to 'none' first to ensure it retriggers\n this.animationDirection.set('none');\n\n // Use requestAnimationFrame to ensure the reset is applied before setting new direction\n requestAnimationFrame(() => {\n this.animationDirection.set(direction);\n this.activeTabIndex.set(index);\n this.animationKey.set(this.animationKey() + 1);\n this.tabChange.emit(this.tabs()[index]);\n });\n }\n\n protected isActive(index: number): boolean {\n return this.activeTabIndex() === index;\n }\n}\n","<div class=\"duck-dev-tab-vertical\">\n <div class=\"tab-sidebar\">\n @for (tab of tabs(); track tab.id; let i = $index) {\n <button\n #tabButton\n class=\"tab-button\"\n [class.active]=\"isActive(i)\"\n (click)=\"selectTab(i)\"\n type=\"button\"\n >\n @if (tab.icon) {\n <span class=\"tab-icon\" [innerHTML]=\"tab.icon\"></span>\n }\n <span class=\"tab-label\">{{ tab.label }}</span>\n </button>\n }\n <div\n class=\"tab-indicator\"\n [style.top.px]=\"indicatorTop()\"\n [style.height.px]=\"indicatorHeight()\"\n ></div>\n </div>\n\n <div class=\"tab-content-wrapper\">\n <div\n class=\"tab-content\"\n [class.slide-up]=\"animationDirection() === 'up'\"\n [class.slide-down]=\"animationDirection() === 'down'\"\n [attr.data-active-index]=\"activeTabIndex()\"\n [attr.data-animation-key]=\"animationKey()\"\n >\n <ng-content></ng-content>\n </div>\n </div>\n</div>\n","import { Component } from '@angular/core';\nimport {ButtonBlurLift, ButtonGlideOver, ButtonFlip, ButtonCasper} from \"../../duck-dev-button\";\nimport { ButtonEnumColor } from '../../shared';\nimport { TranslocoPipe } from '@jsverse/transloco';\n\n\n@Component({\n selector: 'app-button-block',\n imports: [\n ButtonBlurLift,\n ButtonGlideOver,\n TranslocoPipe,\n ButtonFlip,\n ButtonCasper\n ],\n templateUrl: './button-block.html',\n styleUrl: './button-block.scss',\n})\nexport class ButtonBlock {\n protected readonly colorViolet = ButtonEnumColor.Violet;\n protected readonly colorOrange = ButtonEnumColor.Orange;\n protected readonly colorWhite = ButtonEnumColor.White;\n protected readonly colorGray = ButtonEnumColor.Gray;\n protected readonly colorDark = ButtonEnumColor.Dark;\n}\n","<div class=\"demo-container\">\n <h1>{{ 'buttons.title' | transloco }}</h1>\n\n <!-- Button Glide Over -->\n <section class=\"component-section\">\n <h2>{{ 'buttons.glideOver.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'buttons.glideOver.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'buttons.glideOver.usage' | transloco }}</h3>\n <pre><code>&lt;duck-dev-button-glide-over\n textButton=\"Текст кнопки\"\n [colorButton]=\"buttonColor\"\n [padding]=\"'10px 24px'\"\n/&gt;</code></pre>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'buttons.glideOver.inputs' | transloco }}</h3>\n <ul>\n <li><strong>textButton</strong> ({{ 'buttons.glideOver.required' | transloco }}) - {{ 'buttons.glideOver.inputTextButton' | transloco }}</li>\n <li><strong>colorButton</strong> - {{ 'buttons.glideOver.inputColorButton' | transloco }}</li>\n <li><strong>padding</strong> - {{ 'buttons.glideOver.inputPadding' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"examples-block\">\n <h3>{{ 'buttons.glideOver.examples' | transloco }}</h3>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.glideOver.exampleWhite' | transloco }}</p>\n <duck-dev-button-glide-over textButton=\"Нажми меня\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.glideOver.exampleViolet' | transloco }}</p>\n <duck-dev-button-glide-over textButton=\"Violet Button\" [colorButton]=\"colorViolet\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.glideOver.exampleOrange' | transloco }}</p>\n <duck-dev-button-glide-over textButton=\"Orange Button\" [colorButton]=\"colorOrange\" />\n </div>\n </div>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.glideOver.exampleGray' | transloco }}</p>\n <duck-dev-button-glide-over textButton=\"Gray Button\" [colorButton]=\"colorGray\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.glideOver.exampleDark' | transloco }}</p>\n <duck-dev-button-glide-over textButton=\"Dark Button\" [colorButton]=\"colorDark\" />\n </div>\n </div>\n </div>\n </section>\n\n <!-- Button Blur Lift -->\n <section class=\"component-section\">\n <h2>{{ 'buttons.blurLift.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'buttons.blurLift.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'buttons.blurLift.usage' | transloco }}</h3>\n <pre><code>&lt;duck-dev-button-blur-lift\n textButton=\"Основной текст\"\n [hoverText]=\"'Текст при наведении'\"\n [colorButton]=\"buttonColor\"\n [padding]=\"'10px 24px'\"\n/&gt;</code></pre>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'buttons.blurLift.inputs' | transloco }}</h3>\n <ul>\n <li><strong>textButton</strong> ({{ 'buttons.blurLift.required' | transloco }}) - {{ 'buttons.blurLift.inputTextButton' | transloco }}</li>\n <li><strong>hoverText</strong> - {{ 'buttons.blurLift.inputHoverText' | transloco }}</li>\n <li><strong>colorButton</strong> - {{ 'buttons.blurLift.inputColorButton' | transloco }}</li>\n <li><strong>padding</strong> - {{ 'buttons.blurLift.inputPadding' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"examples-block\">\n <h3>{{ 'buttons.blurLift.examples' | transloco }}</h3>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.blurLift.exampleWhiteHover' | transloco }}</p>\n <duck-dev-button-blur-lift textButton=\"Наведи на меня\" [hoverText]=\"'Привет!'\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.blurLift.exampleViolet' | transloco }}</p>\n <duck-dev-button-blur-lift textButton=\"Click Me\" [hoverText]=\"'Action!'\" [colorButton]=\"colorViolet\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.blurLift.exampleOrange' | transloco }}</p>\n <duck-dev-button-blur-lift textButton=\"Hover\" [hoverText]=\"'Orange!'\" [colorButton]=\"colorOrange\" />\n </div>\n </div>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.blurLift.exampleGray' | transloco }}</p>\n <duck-dev-button-blur-lift textButton=\"Gray Button\" [hoverText]=\"'Hover'\" [colorButton]=\"colorGray\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.blurLift.exampleDark' | transloco }}</p>\n <duck-dev-button-blur-lift textButton=\"Dark Button\" [hoverText]=\"'Magic!'\" [colorButton]=\"colorDark\" />\n </div>\n </div>\n </div>\n </section>\n\n <!-- Button Color Flip -->\n <section class=\"component-section\">\n <h2>{{ 'buttons.flip.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'buttons.flip.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'buttons.flip.usage' | transloco }}</h3>\n <pre><code>&lt;duck-dev-button-flip\n [text]=\"'Text'\"\n [colorButton]=\"buttonColor\"\n [disabled]=\"false\"\n [direction]=\"'next'\"\n [arrowIndex]=\"0\"\n/&gt;</code></pre>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'buttons.flip.inputs' | transloco }}</h3>\n <ul>\n <li><strong>text</strong> - {{ 'buttons.flip.inputText' | transloco }}</li>\n <li><strong>colorButton</strong> - {{ 'buttons.flip.inputColorButton' | transloco }}</li>\n <li><strong>disabled</strong> - {{ 'buttons.flip.inputDisabled' | transloco }}</li>\n <li><strong>direction</strong> - {{ 'buttons.flip.inputDirection' | transloco }}</li>\n <li><strong>arrowIndex</strong> - {{ 'buttons.flip.inputArrowIndex' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"examples-block\">\n <h3>{{ 'buttons.flip.examples' | transloco }}</h3>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.flip.exampleWhite' | transloco }}</p>\n <duck-dev-button-flip [text]=\"'Click me'\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.flip.exampleViolet' | transloco }}</p>\n <duck-dev-button-flip [text]=\"'Violet Button'\" [colorButton]=\"colorViolet\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.flip.exampleOrange' | transloco }}</p>\n <duck-dev-button-flip [text]=\"'Orange Button'\" [colorButton]=\"colorOrange\" />\n </div>\n </div>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.flip.exampleGray' | transloco }}</p>\n <duck-dev-button-flip [text]=\"'Gray Button'\" [colorButton]=\"colorGray\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.flip.exampleDark' | transloco }}</p>\n <duck-dev-button-flip [text]=\"'Dark Button'\" [colorButton]=\"colorDark\" />\n </div>\n </div>\n\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.flip.examplePrev' | transloco }}</p>\n <duck-dev-button-flip [text]=\"'Prev'\" [direction]=\"'previous'\" [colorButton]=\"colorGray\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.flip.exampleNext' | transloco }}</p>\n <duck-dev-button-flip [text]=\"'Next'\" [direction]=\"'next'\" [colorButton]=\"colorViolet\" />\n </div>\n </div>\n </div>\n </section>\n <!-- Button Casper -->\n <section class=\"component-section\">\n <h2>{{ 'buttons.casper.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'buttons.casper.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'buttons.casper.usage' | transloco }}</h3>\n <pre><code>&lt;duck-dev-button-casper\n [text]=\"'Text'\"\n [isDisabled]=\"false\"\n [colorButton]=\"buttonColor\"\n/&gt;</code></pre>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'buttons.casper.inputs' | transloco }}</h3>\n <ul>\n <li><strong>text</strong> — {{ 'buttons.casper.inputText' | transloco }}</li>\n <li><strong>isDisabled</strong> — {{ 'buttons.casper.inputIsDisabled' | transloco }}</li>\n <li><strong>colorButton</strong> — {{ 'buttons.casper.inputColorButton' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"examples-block\">\n <h3>{{ 'buttons.casper.examples' | transloco }}</h3>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.casper.exampleWhite' | transloco }}</p>\n <duck-dev-button-casper [text]=\"'Casper'\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.casper.exampleViolet' | transloco }}</p>\n <duck-dev-button-casper [text]=\"'Casper'\" [colorButton]=\"colorViolet\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.casper.exampleOrange' | transloco }}</p>\n <duck-dev-button-casper [text]=\"'Casper'\" [colorButton]=\"colorOrange\" />\n </div>\n </div>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.casper.exampleGray' | transloco }}</p>\n <duck-dev-button-casper [text]=\"'Casper'\" [colorButton]=\"colorGray\" />\n </div>\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'buttons.casper.exampleDark' | transloco }}</p>\n <duck-dev-button-casper [text]=\"'Casper'\" [colorButton]=\"colorDark\" />\n </div>\n </div>\n </div>\n </section>\n</div>\n","import { Component } from '@angular/core';\nimport { LoaderClassic, LoaderLoadingBubble, LoaderThreeDots } from \"../../index\";\nimport {TranslocoPipe} from '@jsverse/transloco';\n\n@Component({\n selector: 'app-loader-block',\n imports: [\n LoaderClassic,\n LoaderLoadingBubble,\n LoaderThreeDots,\n TranslocoPipe\n ],\n templateUrl: './loader-block.html',\n styleUrl: './loader-block.scss',\n})\nexport class LoaderBlock {\n}\n","<div class=\"demo-container\">\n <h1>{{ 'loaders.title' | transloco }}</h1>\n\n <!-- Loader Classic -->\n <section class=\"component-section\">\n <h2>{{ 'loaders.classic.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'loaders.classic.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'loaders.classic.usage' | transloco }}</h3>\n <pre><code>&lt;duck-dev-loader-classic /&gt;</code></pre>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'loaders.classic.inputs' | transloco }}</h3>\n <ul>\n <li>{{ 'loaders.classic.inputNone' | transloco }}</li>\n <li>{{ 'loaders.classic.inputCss' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"examples-block\">\n <h3>{{ 'loaders.classic.examples' | transloco }}</h3>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'loaders.classic.exampleStandard' | transloco }}</p>\n <duck-dev-loader-classic />\n </div>\n </div>\n </div>\n </section>\n\n <!-- Loader Text Bubble -->\n <section class=\"component-section\">\n <h2>{{ 'loaders.textBubble.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'loaders.textBubble.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'loaders.textBubble.usage' | transloco }}</h3>\n <pre><code>&lt;duck-dev-loader-loading-bubble /&gt;</code></pre>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'loaders.textBubble.inputs' | transloco }}</h3>\n <ul>\n <li>{{ 'loaders.textBubble.inputNone' | transloco }}</li>\n <li>{{ 'loaders.textBubble.inputFixed' | transloco }}</li>\n <li>{{ 'loaders.textBubble.inputCss' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"examples-block\">\n <h3>{{ 'loaders.textBubble.examples' | transloco }}</h3>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <p class=\"example-label\">{{ 'loaders.textBubble.exampleStandard' | transloco }}</p>\n <duck-dev-loader-loading-bubble />\n </div>\n </div>\n </div>\n </section>\n\n <!-- Loader Three Dots -->\n <section class=\"component-section\">\n <h2>{{ 'loaders.threeDots.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'loaders.threeDots.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'loaders.threeDots.usage' | transloco }}</h3>\n <pre><code>&lt;lib-loader-three-dots /&gt;</code></pre>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'loaders.threeDots.inputs' | transloco }}</h3>\n <ul>\n <li>{{ 'loaders.threeDots.inputNone' | transloco }}</li>\n <li>{{ 'loaders.threeDots.inputCss' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"examples-block\">\n <h3>{{ 'loaders.threeDots.examples' | transloco }}</h3>\n <div class=\"example-row\">\n <div class=\"example-item\">\n <duck-dev-loader-three-dots />\n </div>\n </div>\n </div>\n </section>\n</div>\n","import { Component } from '@angular/core';\nimport {TranslocoPipe} from '@jsverse/transloco';\n\n@Component({\n selector: 'app-tabs-block',\n imports: [\n TranslocoPipe\n ],\n templateUrl: './tabs-block.html',\n styleUrl: './tabs-block.scss',\n})\nexport class TabsBlock {\n}\n","<div class=\"demo-container\">\n <h1>{{ 'tabsComponent.title' | transloco }}</h1>\n\n <!-- Duck Dev Tab -->\n <section class=\"component-section\">\n <h2>{{ 'tabsComponent.tab.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'tabsComponent.tab.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'tabsComponent.tab.usage' | transloco }}</h3>\n <p>{{ 'tabsComponent.tab.usageText1' | transloco }}</p>\n <p>{{ 'tabsComponent.tab.usageText2' | transloco }}</p>\n <p>{{ 'tabsComponent.tab.usageText3' | transloco }}</p>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'tabsComponent.tab.inputs' | transloco }}</h3>\n <ul>\n <li><strong>tabs</strong> ({{ 'tabsComponent.tab.required' | transloco }}) - {{ 'tabsComponent.tab.inputTabs' | transloco }}\n <ul>\n <li><strong>id</strong> (string) - {{ 'tabsComponent.tab.inputTabsId' | transloco }}</li>\n <li><strong>label</strong> (string) - {{ 'tabsComponent.tab.inputTabsLabel' | transloco }}</li>\n <li><strong>content</strong> (any, {{ 'tabsComponent.tab.optional' | transloco }}) - {{ 'tabsComponent.tab.inputTabsContent' | transloco }}</li>\n </ul>\n </li>\n </ul>\n </div>\n\n <div class=\"outputs-block\">\n <h3>{{ 'tabsComponent.tab.outputs' | transloco }}</h3>\n <ul>\n <li><strong>tabChange</strong> - {{ 'tabsComponent.tab.outputTabChange' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"features-block\">\n <h3>{{ 'tabsComponent.tab.features' | transloco }}</h3>\n <ul>\n <li>{{ 'tabsComponent.tab.feature1' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.feature2' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.feature3' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.feature4' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.feature5' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.feature6' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.feature7' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"api-block\">\n <h3>{{ 'tabsComponent.tab.api' | transloco }}</h3>\n <ul>\n <li><strong>id: string</strong> - {{ 'tabsComponent.tab.apiId' | transloco }}</li>\n <li><strong>label: string</strong> - {{ 'tabsComponent.tab.apiLabel' | transloco }}</li>\n <li><strong>content?: any</strong> - {{ 'tabsComponent.tab.apiContent' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"implementation-block\">\n <h3>{{ 'tabsComponent.tab.implementation' | transloco }}</h3>\n <ul>\n <li>{{ 'tabsComponent.tab.implementation1' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.implementation2' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.implementation3' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.implementation4' | transloco }}</li>\n <li>{{ 'tabsComponent.tab.implementation5' | transloco }}</li>\n </ul>\n </div>\n </section>\n</div>\n","const duckDevDockMedium = `\n<svg\n width=\"24\" height=\"24\" viewBox=\"0 0 1024 1024\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M239.2 419.5l7 394.6h465.7V251.4H396.6v168.1z\" fill=\"#E1F0FF\" />\n <path d=\"M221 395.5h25.2v418.6H221z\" fill=\"#446EB1\" />\n <path d=\"M221 789.8h488.7v24.3H221zM366.7 227.1h342.9v24.3H366.7z\" fill=\"#446EB1\" />\n <path d=\"M687.6 227.1h24.3v98.1h-24.3zM687.6 765h24.3v49h-24.3zM384.6 244.1l-18.1-17L221 394.7l18.1 17 145.5-167.6z\" fill=\"#446EB1\" />\n <path d=\"M372.6 235.1h23.9v167.6h-23.9z\" fill=\"#446EB1\" /><path d=\"M221 395.5h175.6v23.9H221z\" fill=\"#446EB1\" />\n <path d=\"M776.4 570.2c-5.6 0-11.2 0.9-17.1 2.7L719 532.6 825.6 426c5.3-5.3 5.3-14 0-19.3-2.6-2.6-6-4-9.6-4-3.6 0-7.1 1.4-9.6 4L699.7 513.3 593.1 406.7c-2.6-2.6-6-4-9.6-4s-7.1 1.4-9.6 4c-5.3 5.3-5.3 13.9 0 19.3l106.6 106.6-40.3 40.3c-5.9-1.8-11.5-2.7-17.1-2.7-33.2 0-60.3 27-60.3 60.3 0 33.2 27 60.3 60.3 60.3 33.2 0 60.2-27 60.2-60.3 0-16.4-6.8-31.9-18.8-43.4l35.2-35.2 35.3 35.2c-12 11.4-18.8 26.9-18.8 43.4 0 33.2 27 60.3 60.3 60.3 33.2 0 60.3-27 60.3-60.3-0.2-33.2-27.2-60.3-60.4-60.3z m33 60.3c0 18.2-14.8 33-33 33s-33-14.8-33-33 14.8-33 33-33 33 14.8 33 33z m-153.4 0c0 18.2-14.8 33-33 33s-33-14.8-33-33 14.8-33 33-33 33 14.8 33 33z\" fill=\"#6D9EE8\" />\n </svg>\n`\n\nconst duckDevImageMedium = `\n<svg width=\"24\" height=\"24\" viewBox=\"0 0 1024 1024\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M212.5 239.8h609.3v516.5H212.5z\" fill=\"#E1F0FF\" />\n<path d=\"M229.5 766l-16.7-16.5 249-261.1 263.5 263.8-16.1 17-246.8-247.4z\" fill=\"#6D9EE8\" />\n<path d=\"M806.8 698.2L636.6 552.4c-20 20.5-58.4 59.9-62.5 63.2l-14.6-18.5-0.1 0.1c4-3.5 43.9-44.3 68.1-69.2l7.6-7.8 186.6 159.9-14.9 18.1z\" fill=\"#6D9EE8\" />\n<path d=\"M610.4 374.5a49.4 50.2 0 1 0 98.8 0 49.4 50.2 0 1 0-98.8 0Z\" fill=\"#6D9EE8\" />\n<path d=\"M808.9 228.5h22.3V772h-22.3zM202.1 228.5h606.8v22.6H202.1z\" fill=\"#446EB1\" /><path d=\"M198.9 228.5h22.3V772h-22.3z\" fill=\"#446EB1\" /><path d=\"M202.1 749.4h606.8V772H202.1z\" fill=\"#446EB1\" /></svg>\n`\n\nconst duckDevWordDockMedium = `\n<svg width=\"24\" height=\"24\" viewBox=\"0 0 1024 1024\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M227.7 180.4h455.2v22.8H227.7z\" fill=\"#446EB1\" /><path d=\"M666 196.6l17-16.2 136.4 159.4-17 16.2L666 196.6zM227.7 203.2h22.8V795h-22.8z\" fill=\"#446EB1\" /><path d=\"M250.5 203.2v594.7h546.2V363.3H660.2V203.2H250.5z\" fill=\"#E1F0FF\" /><path d=\"M796.7 339.7h22.8v455.2h-22.8zM227.7 794.9h591.8v22.8H227.7z\" fill=\"#446EB1\" /><path d=\"M500.8 430.8h204.8v22.8H500.8zM341.5 521.8h364.2v22.8H341.5zM341.5 612.9h364.2v22.8H341.5zM341.5 703.9h364.2v22.8H341.5z\" fill=\"#6D9EE8\" /><path d=\"M660.2 203.2H683v159.3h-22.8z\" fill=\"#446EB1\" /><path d=\"M682.9 339.7h113.8v22.8H682.9zM442.3 277.3h15.3L440 347.7l-22.8-99h-36.6l-26.5 99-19.9-99H296L334.8 408h37.4l26.2-94.2 23.4 94.2h34.5l44.5-159.3h-58.6v28.6h0.1z\" fill=\"#446EB1\" /></svg>`\n\nconst duckDevPrinterMedium = `\n<svg width=\"24\" height=\"24\" viewBox=\"0 0 1024 1024\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M418.9 667.6h185.4v20.6H418.9z\" fill=\"#79ACF9\" /><path d=\"M212.9 399.9h20.6v309h-20.6z\" fill=\"#446EB1\" /><path d=\"M233.5 564.6h556.1v20.6H233.5z\" fill=\"#FFFFFF\" /><path d=\"M789.6 399.9h20.6v309h-20.6z\" fill=\"#446EB1\" /><path d=\"M233.5 399.9h576.7v20.6H233.5z\" fill=\"#446EB1\" /><path d=\"M233.5 420.5h556.1v82.4H233.5z\" fill=\"#F8FCFF\" /><path d=\"M233.5 502.8h556.1v82.4H233.5z\" fill=\"#E1F0FF\" /><path d=\"M686.6 441h41.2v41.2h-41.2z\" fill=\"#79ACF9\" /><path d=\"M315.9 255.7h20.6v144.2h-20.6zM707.2 255.7h20.6v144.2h-20.6z\" fill=\"#446EB1\" /><path d=\"M336.5 276.3h370.7v123.6H336.5z\" fill=\"#FFFFFF\" /><path d=\"M336.5 255.7h391.3v20.6H336.5zM274.7 358.7h20.6v41.2h-20.6z\" fill=\"#446EB1\" /><path d=\"M274.7 358.7h41.2v20.6h-41.2zM727.8 358.7H769v20.6h-41.2z\" fill=\"#446EB1\" /><path d=\"M748.4 358.7H769v41.2h-20.6z\" fill=\"#446EB1\" /><path d=\"M233.5 585.2h556.1v20.6H233.5z\" fill=\"#79ACF9\" /><path d=\"M233.5 605.8h556.1v20.6H233.5z\" fill=\"#6D9EE8\" /><path d=\"M233.5 626.4h61.8v61.8h-61.8zM727.8 626.4h61.8v61.8h-61.8zM295.3 626.4h432.5V647H295.3z\" fill=\"#446EB1\" /><path d=\"M212.9 688.2h103v20.6h-103zM707.2 688.2h103v20.6h-103z\" fill=\"#6D9EE8\" /><path d=\"M295.3 647h20.6v144.2h-20.6zM707.2 647h20.6v144.2h-20.6z\" fill=\"#446EB1\" /><path d=\"M315.9 770.6h391.3v20.6H315.9z\" fill=\"#446EB1\" /><path d=\"M398.3 708.8h226.6v20.6H398.3z\" fill=\"#79ACF9\" /></svg>\n`\nconst duckDevCheck = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.3327 4L5.99935 11.3333L2.66602 8\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevBuildMedium = `\n<svg width=\"24\" height=\"24\" viewBox=\"0 0 1024 1024\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M418.9 667.6h185.4v20.6H418.9z\" fill=\"#79ACF9\" /><path d=\"M212.9 399.9h20.6v309h-20.6z\" fill=\"#446EB1\" /><path d=\"M233.5 564.6h556.1v20.6H233.5z\" fill=\"#FFFFFF\" /><path d=\"M789.6 399.9h20.6v309h-20.6z\" fill=\"#446EB1\" /><path d=\"M233.5 399.9h576.7v20.6H233.5z\" fill=\"#446EB1\" /><path d=\"M233.5 420.5h556.1v82.4H233.5z\" fill=\"#F8FCFF\" /><path d=\"M233.5 502.8h556.1v82.4H233.5z\" fill=\"#E1F0FF\" /><path d=\"M686.6 441h41.2v41.2h-41.2z\" fill=\"#79ACF9\" /><path d=\"M315.9 255.7h20.6v144.2h-20.6zM707.2 255.7h20.6v144.2h-20.6z\" fill=\"#446EB1\" /><path d=\"M336.5 276.3h370.7v123.6H336.5z\" fill=\"#FFFFFF\" /><path d=\"M336.5 255.7h391.3v20.6H336.5zM274.7 358.7h20.6v41.2h-20.6z\" fill=\"#446EB1\" /><path d=\"M274.7 358.7h41.2v20.6h-41.2zM727.8 358.7H769v20.6h-41.2z\" fill=\"#446EB1\" /><path d=\"M748.4 358.7H769v41.2h-20.6z\" fill=\"#446EB1\" /><path d=\"M233.5 585.2h556.1v20.6H233.5z\" fill=\"#79ACF9\" /><path d=\"M233.5 605.8h556.1v20.6H233.5z\" fill=\"#6D9EE8\" /><path d=\"M233.5 626.4h61.8v61.8h-61.8zM727.8 626.4h61.8v61.8h-61.8zM295.3 626.4h432.5V647H295.3z\" fill=\"#446EB1\" /><path d=\"M212.9 688.2h103v20.6h-103zM707.2 688.2h103v20.6h-103z\" fill=\"#6D9EE8\" /><path d=\"M295.3 647h20.6v144.2h-20.6zM707.2 647h20.6v144.2h-20.6z\" fill=\"#446EB1\" /><path d=\"M315.9 770.6h391.3v20.6H315.9z\" fill=\"#446EB1\" /><path d=\"M398.3 708.8h226.6v20.6H398.3z\" fill=\"#79ACF9\" /></svg>\n`\n\nconst duckDevCheckMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M16.6663 5L7.49967 14.1667L3.33301 10\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevCheckCircle = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_132944)\">\n <path d=\"M14.6663 7.38527V7.99861C14.6655 9.43622 14.2 10.8351 13.3392 11.9865C12.4785 13.1379 11.2685 13.9803 9.88991 14.3879C8.5113 14.7955 7.03785 14.7465 5.68932 14.2483C4.3408 13.7501 3.18944 12.8293 2.40698 11.6233C1.62452 10.4173 1.25287 8.99065 1.34746 7.55615C1.44205 6.12165 1.99781 4.75616 2.93186 3.66332C3.86591 2.57049 5.1282 1.80886 6.53047 1.49204C7.93274 1.17521 9.39985 1.32017 10.713 1.90527M14.6663 2.66527L7.99968 9.33861L5.99968 7.33861\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_132944\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\n\nconst duckDevCupMedium = `\n<svg width=\"24\" height=\"24\" viewBox=\"0 0 1024 1024\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M828.5 180.1h-9.9v-54.7h23.5v-44H182v44h23v54.7h-9.5C123.2 180.1 64 239.2 64 311.5v0.1c0 72.3 59.2 131.5 131.5 131.5h9.6c0 1.3 0.1 2.5 0.1 3.7 0.5 17.7 2.7 35.4 6.2 52.5 17.8 85.7 71.8 160 148.3 204 4.8 2.8 9.8 5.4 14.7 7.9 15.3 7.7 31.2 14.1 47.4 19.2 3.4 1 6.8 2 10.2 2.9v165.2H250.4v44h511.9v-44H591.9V733.4c3.7-1 7.3-2.1 10.9-3.2 16.2-5.1 32.2-11.6 47.4-19.4 5-2.5 10-5.3 14.8-8.1 75.6-43.9 129.2-117.8 147-202.7 3.6-17.2 5.8-34.9 6.3-52.4 0.1-1.5 0.1-3 0.1-4.5h10c72.3 0 131.5-59.2 131.5-131.5v-0.1c0.1-72.3-59.1-131.4-131.4-131.4zM205 399.2h-9.5c-23.2 0-45.1-9.1-61.7-25.7s-25.7-38.5-25.7-61.7v-0.1c0-23.2 9.1-45.2 25.7-61.7 16.6-16.6 38.5-25.7 61.7-25.7h9.5v174.9z m370.9 499.4h-128V737.3c20.9 4.5 42.3 6.8 63.9 6.8 21.7 0 43.1-2.3 64.1-6.8v161.3z m198.7-461.4c0 2.9 0 5.9-0.2 8.9-0.5 15-2.3 30.1-5.4 44.9-15.3 72.7-61.2 136-126.1 173.7-4.1 2.4-8.4 4.7-12.7 6.9-13 6.6-26.7 12.2-40.6 16.6-25.2 7.9-51.4 11.9-77.9 11.9-26.2 0-52.2-3.9-77.1-11.6-13.9-4.3-27.5-9.8-40.6-16.4-4.2-2.1-8.5-4.4-12.6-6.8-65.4-37.8-111.7-101.5-126.9-174.8-3.1-14.7-4.9-29.8-5.3-45-0.1-2.7-0.1-5.5-0.1-8.2v-312h525.6v311.9zM916 311.7c0 23.2-9.1 45.2-25.7 61.7-16.6 16.6-38.5 25.7-61.7 25.7h-9.9v-175h9.9c23.2 0 45.1 9.1 61.7 25.7s25.7 38.5 25.7 61.7v0.2z\" fill=\"#39393A\" /><path d=\"M317.428 274.917l70.145-70.144 14.142 14.142-70.145 70.144zM316.055 351.98L456.13 211.904l14.142 14.142-140.076 140.076zM555.4 659.6l-4.8-19.4c0.3-0.1 26.5-6.8 55.4-23.5 37.8-21.9 62-49.7 72-82.7l19.1 5.8c-11.4 37.6-39.6 70.3-81.6 94.5-31.2 18-58.9 25-60.1 25.3z\" fill=\"#E73B37\" /></svg>\n`\nconst duckDevCheckCircleMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21_2500)\">\n <path d=\"M18.3337 9.23159V9.99826C18.3326 11.7953 17.7507 13.5438 16.6748 14.9831C15.5988 16.4224 14.0864 17.4753 12.3631 17.9848C10.6399 18.4944 8.79804 18.4332 7.11238 17.8104C5.42673 17.1877 3.98754 16.0367 3.00946 14.5291C2.03138 13.0216 1.56682 11.2383 1.68506 9.44519C1.80329 7.65206 2.498 5.9452 3.66556 4.57915C4.83312 3.21311 6.41098 2.26108 8.16382 1.86505C9.91665 1.46902 11.7505 1.65021 13.392 2.38159M18.3337 3.33159L10.0003 11.6733L7.50033 9.17326\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2500\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevCheckCircleV2 = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.6663 7.9987C14.6663 11.6806 11.6816 14.6654 7.99967 14.6654C4.31778 14.6654 1.33301 11.6806 1.33301 7.9987C1.33301 4.3168 4.31778 1.33203 7.99967 1.33203C11.6816 1.33203 14.6663 4.3168 14.6663 7.9987Z\" fill=\"#AEB2BC\"/>\n <path d=\"M11 6L6.875 10L5 8.18182\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevMoreVertical = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.00065 8.66797C8.36884 8.66797 8.66732 8.36949 8.66732 8.0013C8.66732 7.63311 8.36884 7.33464 8.00065 7.33464C7.63246 7.33464 7.33398 7.63311 7.33398 8.0013C7.33398 8.36949 7.63246 8.66797 8.00065 8.66797Z\" fill=\"#6B7280\"/>\n <path d=\"M8.00065 4.0013C8.36884 4.0013 8.66732 3.70283 8.66732 3.33464C8.66732 2.96645 8.36884 2.66797 8.00065 2.66797C7.63246 2.66797 7.33398 2.96645 7.33398 3.33464C7.33398 3.70283 7.63246 4.0013 8.00065 4.0013Z\" fill=\"#6B7280\"/>\n <path d=\"M8.00065 13.3346C8.36884 13.3346 8.66732 13.0362 8.66732 12.668C8.66732 12.2998 8.36884 12.0013 8.00065 12.0013C7.63246 12.0013 7.33398 12.2998 7.33398 12.668C7.33398 13.0362 7.63246 13.3346 8.00065 13.3346Z\" fill=\"#6B7280\"/>\n <path d=\"M8.00065 8.66797C8.36884 8.66797 8.66732 8.36949 8.66732 8.0013C8.66732 7.63311 8.36884 7.33464 8.00065 7.33464C7.63246 7.33464 7.33398 7.63311 7.33398 8.0013C7.33398 8.36949 7.63246 8.66797 8.00065 8.66797Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8.00065 4.0013C8.36884 4.0013 8.66732 3.70283 8.66732 3.33464C8.66732 2.96645 8.36884 2.66797 8.00065 2.66797C7.63246 2.66797 7.33398 2.96645 7.33398 3.33464C7.33398 3.70283 7.63246 4.0013 8.00065 4.0013Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8.00065 13.3346C8.36884 13.3346 8.66732 13.0362 8.66732 12.668C8.66732 12.2998 8.36884 12.0013 8.00065 12.0013C7.63246 12.0013 7.33398 12.2998 7.33398 12.668C7.33398 13.0362 7.63246 13.3346 8.00065 13.3346Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevMoreVerticalMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M10.0003 10.8333C10.4606 10.8333 10.8337 10.4602 10.8337 10C10.8337 9.53976 10.4606 9.16666 10.0003 9.16666C9.54009 9.16666 9.16699 9.53976 9.16699 10C9.16699 10.4602 9.54009 10.8333 10.0003 10.8333Z\" fill=\"#6B7280\"/>\n <path d=\"M10.0003 4.99999C10.4606 4.99999 10.8337 4.6269 10.8337 4.16666C10.8337 3.70642 10.4606 3.33333 10.0003 3.33333C9.54009 3.33333 9.16699 3.70642 9.16699 4.16666C9.16699 4.6269 9.54009 4.99999 10.0003 4.99999Z\" fill=\"#6B7280\"/>\n <path d=\"M10.0003 16.6667C10.4606 16.6667 10.8337 16.2936 10.8337 15.8333C10.8337 15.3731 10.4606 15 10.0003 15C9.54009 15 9.16699 15.3731 9.16699 15.8333C9.16699 16.2936 9.54009 16.6667 10.0003 16.6667Z\" fill=\"#6B7280\"/>\n <path d=\"M10.0003 10.8333C10.4606 10.8333 10.8337 10.4602 10.8337 10C10.8337 9.53976 10.4606 9.16666 10.0003 9.16666C9.54009 9.16666 9.16699 9.53976 9.16699 10C9.16699 10.4602 9.54009 10.8333 10.0003 10.8333Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M10.0003 4.99999C10.4606 4.99999 10.8337 4.6269 10.8337 4.16666C10.8337 3.70642 10.4606 3.33333 10.0003 3.33333C9.54009 3.33333 9.16699 3.70642 9.16699 4.16666C9.16699 4.6269 9.54009 4.99999 10.0003 4.99999Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M10.0003 16.6667C10.4606 16.6667 10.8337 16.2936 10.8337 15.8333C10.8337 15.3731 10.4606 15 10.0003 15C9.54009 15 9.16699 15.3731 9.16699 15.8333C9.16699 16.2936 9.54009 16.6667 10.0003 16.6667Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevTrash = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 3.9987H3.33333M3.33333 3.9987H14M3.33333 3.9987V13.332C3.33333 13.6857 3.47381 14.0248 3.72386 14.2748C3.97391 14.5249 4.31304 14.6654 4.66667 14.6654H11.3333C11.687 14.6654 12.0261 14.5249 12.2761 14.2748C12.5262 14.0248 12.6667 13.6857 12.6667 13.332V3.9987H3.33333ZM5.33333 3.9987V2.66536C5.33333 2.31174 5.47381 1.9726 5.72386 1.72256C5.97391 1.47251 6.31304 1.33203 6.66667 1.33203H9.33333C9.68696 1.33203 10.0261 1.47251 10.2761 1.72256C10.5262 1.9726 10.6667 2.31174 10.6667 2.66536V3.9987\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevTrashMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2.5 5.0013H4.16667M4.16667 5.0013H17.5M4.16667 5.0013V16.668C4.16667 17.11 4.34226 17.5339 4.65482 17.8465C4.96738 18.159 5.39131 18.3346 5.83333 18.3346H14.1667C14.6087 18.3346 15.0326 18.159 15.3452 17.8465C15.6577 17.5339 15.8333 17.11 15.8333 16.668V5.0013H4.16667ZM6.66667 5.0013V3.33464C6.66667 2.89261 6.84226 2.46868 7.15482 2.15612C7.46738 1.84356 7.89131 1.66797 8.33333 1.66797H11.6667C12.1087 1.66797 12.5326 1.84356 12.8452 2.15612C13.1577 2.46868 13.3333 2.89261 13.3333 3.33464V5.0013\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevEdit = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8 13.3322H14M11 2.33218C11.2652 2.06697 11.6249 1.91797 12 1.91797C12.1857 1.91797 12.3696 1.95455 12.5412 2.02562C12.7128 2.09669 12.8687 2.20086 13 2.33218C13.1313 2.4635 13.2355 2.61941 13.3066 2.79099C13.3776 2.96257 13.4142 3.14647 13.4142 3.33218C13.4142 3.5179 13.3776 3.7018 13.3066 3.87338C13.2355 4.04496 13.1313 4.20086 13 4.33218L4.66667 12.6655L2 13.3322L2.66667 10.6655L11 2.33218Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevEditMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M10 16.6662H17.5M13.75 2.9162C14.0815 2.58468 14.5312 2.39844 15 2.39844C15.2321 2.39844 15.462 2.44416 15.6765 2.533C15.891 2.62184 16.0858 2.75205 16.25 2.9162C16.4142 3.08036 16.5444 3.27523 16.6332 3.48971C16.722 3.70418 16.7678 3.93406 16.7678 4.1662C16.7678 4.39835 16.722 4.62822 16.6332 4.8427C16.5444 5.05718 16.4142 5.25205 16.25 5.4162L5.83333 15.8329L2.5 16.6662L3.33333 13.3329L13.75 2.9162Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevArrowSortMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.3327 15.832L13.3327 4.16536M13.3327 4.16536C13.3327 4.16536 12.2774 5.63731 9.99935 7.91536M13.3327 4.16536L16.666 7.91536\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M6.66731 4.16797L6.66731 15.8346M6.66731 15.8346C6.66731 15.8346 7.72259 14.3627 10.0007 12.0846M6.66731 15.8346L3.33398 12.0846\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevX = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M12 4L4 12M4 4L12 12\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevXMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M15 5L5 15M5 5L15 15\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevXCircle = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_133069)\">\n <path d=\"M10.0007 5.9987L6.00065 9.9987M6.00065 5.9987L10.0007 9.9987M14.6673 7.9987C14.6673 11.6806 11.6825 14.6654 8.00065 14.6654C4.31875 14.6654 1.33398 11.6806 1.33398 7.9987C1.33398 4.3168 4.31875 1.33203 8.00065 1.33203C11.6825 1.33203 14.6673 4.3168 14.6673 7.9987Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_133069\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevXCircleMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21_2780)\">\n <path d=\"M12.4993 7.5013L7.49935 12.5013M7.49935 7.5013L12.4993 12.5013M18.3327 10.0013C18.3327 14.6037 14.6017 18.3346 9.99935 18.3346C5.39698 18.3346 1.66602 14.6037 1.66602 10.0013C1.66602 5.39893 5.39698 1.66797 9.99935 1.66797C14.6017 1.66797 18.3327 5.39893 18.3327 10.0013Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2780\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevLogOut = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M5.06592 13H2.39925C2.04563 13 1.70649 12.8595 1.45644 12.6095C1.20639 12.3594 1.06592 12.0203 1.06592 11.6667V2.33333C1.06592 1.97971 1.20639 1.64057 1.45644 1.39052C1.70649 1.14048 2.04563 1 2.39925 1H5.06592M9.73258 10.3333L13.0659 7M13.0659 7L9.73258 3.66667M13.0659 7H5.06592\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevLogOutMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M7.5 17.5H4.16667C3.72464 17.5 3.30072 17.3244 2.98816 17.0118C2.67559 16.6993 2.5 16.2754 2.5 15.8333V4.16667C2.5 3.72464 2.67559 3.30072 2.98816 2.98816C3.30072 2.67559 3.72464 2.5 4.16667 2.5H7.5M13.3333 14.1667L17.5 10M17.5 10L13.3333 5.83333M17.5 10H7.5\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevClear = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <rect width=\"16\" height=\"16\" rx=\"8\" fill=\"#B4B9C1\"/>\n <path d=\"M11.5 4.5L4.5 11.5M4.5 4.5L11.5 11.5\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevClearMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M15 5L5 15M5 5L15 15\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevEye = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_132881)\">\n <path d=\"M0.666016 8.0013C0.666016 8.0013 3.33268 2.66797 7.99935 2.66797C12.666 2.66797 15.3327 8.0013 15.3327 8.0013C15.3327 8.0013 12.666 13.3346 7.99935 13.3346C3.33268 13.3346 0.666016 8.0013 0.666016 8.0013Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M7.99935 10.0013C9.10392 10.0013 9.99935 9.10587 9.99935 8.0013C9.99935 6.89673 9.10392 6.0013 7.99935 6.0013C6.89478 6.0013 5.99935 6.89673 5.99935 8.0013C5.99935 9.10587 6.89478 10.0013 7.99935 10.0013Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_132881\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevEyeMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M0.833984 9.9987C0.833984 9.9987 4.16732 3.33203 10.0007 3.33203C15.834 3.33203 19.1673 9.9987 19.1673 9.9987C19.1673 9.9987 15.834 16.6654 10.0007 16.6654C4.16732 16.6654 0.833984 9.9987 0.833984 9.9987Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M10.0007 12.4987C11.3814 12.4987 12.5007 11.3794 12.5007 9.9987C12.5007 8.61799 11.3814 7.4987 10.0007 7.4987C8.61994 7.4987 7.50065 8.61799 7.50065 9.9987C7.50065 11.3794 8.61994 12.4987 10.0007 12.4987Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevEyeOff = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_133116)\">\n <path d=\"M6.59935 2.82797C7.05824 2.72055 7.52806 2.66686 7.99935 2.66797C12.666 2.66797 15.3327 8.0013 15.3327 8.0013C14.928 8.75837 14.4454 9.47113 13.8927 10.128M9.41268 9.41463C9.22958 9.61113 9.00878 9.76874 8.76345 9.87805C8.51812 9.98736 8.25328 10.0461 7.98474 10.0509C7.7162 10.0556 7.44946 10.0062 7.20042 9.90563C6.95139 9.80504 6.72516 9.65532 6.53525 9.4654C6.34533 9.27549 6.19561 9.04926 6.09502 8.80023C5.99443 8.55119 5.94503 8.28445 5.94977 8.01591C5.95451 7.74737 6.01329 7.48253 6.1226 7.2372C6.23191 6.99187 6.38952 6.77107 6.58602 6.58797M0.666016 0.667969L15.3327 15.3346M11.9593 11.9613C10.8197 12.83 9.43209 13.3112 7.99935 13.3346C3.33268 13.3346 0.666016 8.0013 0.666016 8.0013C1.49528 6.4559 2.64544 5.10571 4.03935 4.0413L11.9593 11.9613Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_133116\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevEyeOffMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21_2856)\">\n <path d=\"M8.25065 3.53203C8.82426 3.39776 9.41154 3.33065 10.0007 3.33203C15.834 3.33203 19.1673 9.9987 19.1673 9.9987C18.6615 10.945 18.0582 11.836 17.3673 12.657M11.7673 11.7654C11.5384 12.011 11.2624 12.208 10.9558 12.3446C10.6491 12.4813 10.3181 12.5547 9.98239 12.5607C9.64672 12.5666 9.31329 12.5048 9.00199 12.3791C8.6907 12.2534 8.40792 12.0662 8.17052 11.8288C7.93313 11.5914 7.74598 11.3086 7.62024 10.9974C7.49451 10.6861 7.43276 10.3526 7.43868 10.017C7.4446 9.68128 7.51808 9.35024 7.65472 9.04357C7.79135 8.73691 7.98836 8.46091 8.23398 8.23203M0.833984 0.832031L19.1673 19.1654M14.9507 14.9487C13.5261 16.0345 11.7916 16.6361 10.0007 16.6654C4.16732 16.6654 0.833984 9.9987 0.833984 9.9987C1.87056 8.06694 3.30826 6.3792 5.05065 5.0487L14.9507 14.9487Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2856\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevEyeBold = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M6.65 8.0002C6.65 7.25461 7.25442 6.6502 8 6.6502C8.74558 6.6502 9.35 7.25461 9.35 8.0002C9.35 8.74578 8.74558 9.3502 8 9.3502C7.25442 9.3502 6.65 8.74578 6.65 8.0002Z\" fill=\"#595E6A\"/>\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 8.0002C2 8.98382 2.25498 9.31508 2.76494 9.9776C3.78318 11.3005 5.49087 12.8002 8 12.8002C10.5091 12.8002 12.2168 11.3005 13.2351 9.9776C13.745 9.31508 14 8.98382 14 8.0002C14 7.01657 13.745 6.68531 13.2351 6.02279C12.2168 4.69993 10.5091 3.2002 8 3.2002C5.49087 3.2002 3.78318 4.69993 2.76494 6.02279C2.25498 6.68531 2 7.01657 2 8.0002ZM8 5.7502C6.75736 5.7502 5.75 6.75755 5.75 8.0002C5.75 9.24284 6.75736 10.2502 8 10.2502C9.24264 10.2502 10.25 9.24284 10.25 8.0002C10.25 6.75755 9.24264 5.7502 8 5.7502Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevEyeBoldMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.3125 10C8.3125 9.06802 9.06802 8.3125 10 8.3125C10.932 8.3125 11.6875 9.06802 11.6875 10C11.6875 10.932 10.932 11.6875 10 11.6875C9.06802 11.6875 8.3125 10.932 8.3125 10Z\" fill=\"#595E6A\"/>\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.5 10C2.5 11.2295 2.81872 11.6436 3.45617 12.4718C4.72897 14.1253 6.86359 16 10 16C13.1364 16 15.271 14.1253 16.5438 12.4718C17.1813 11.6436 17.5 11.2295 17.5 10C17.5 8.77047 17.1813 8.35639 16.5438 7.52825C15.271 5.87467 13.1364 4 10 4C6.86359 4 4.72897 5.87467 3.45617 7.52825C2.81872 8.3564 2.5 8.77047 2.5 10ZM10 7.1875C8.4467 7.1875 7.1875 8.4467 7.1875 10C7.1875 11.5533 8.4467 12.8125 10 12.8125C11.5533 12.8125 12.8125 11.5533 12.8125 10C12.8125 8.4467 11.5533 7.1875 10 7.1875Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevChevronUp = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M12 10L8 6L4 10\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronUpMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M15 12.5L10 7.5L5 12.5\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronRight = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M6 12L10 8L6 4\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronRightMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M7.5 15L12.5 10L7.5 5\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronDown = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M4 6L8 10L12 6\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronDownMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g id=\"chevron-down\">\n <path id=\"Icon\" d=\"M5 7.5L10 12.5L15 7.5\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n</svg>\n`;\n\nconst duckDevChevronLeft = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M10 12L6 8L10 4\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronLeftMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M12.5 15L7.5 10L12.5 5\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronsRight = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.66667 11.3346L12 8.0013L8.66667 4.66797M4 11.3346L7.33333 8.0013L4 4.66797\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronsRightMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M10.8333 14.1654L15 9.9987L10.8333 5.83203M5 14.1654L9.16667 9.9987L5 5.83203\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronsLeft = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M7.33333 11.3346L4 8.0013L7.33333 4.66797M12 11.3346L8.66667 8.0013L12 4.66797\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronsLeftMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M9.16667 14.1654L5 9.9987L9.16667 5.83203M15 14.1654L10.8333 9.9987L15 5.83203\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChevronsSwitch = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M12 6L8 3L4 6\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M4 9L8 12L12 9\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevDatabase = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M14 3.33203C14 4.4366 11.3137 5.33203 8 5.33203C4.68629 5.33203 2 4.4366 2 3.33203M14 3.33203C14 2.22746 11.3137 1.33203 8 1.33203C4.68629 1.33203 2 2.22746 2 3.33203M14 3.33203V12.6654C14 13.772 11.3333 14.6654 8 14.6654C4.66667 14.6654 2 13.772 2 12.6654V3.33203M14 7.9987C14 9.10536 11.3333 9.9987 8 9.9987C4.66667 9.9987 2 9.10536 2 7.9987\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevDatabaseMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M17.5 4.16797C17.5 5.54868 14.1421 6.66797 10 6.66797C5.85786 6.66797 2.5 5.54868 2.5 4.16797M17.5 4.16797C17.5 2.78726 14.1421 1.66797 10 1.66797C5.85786 1.66797 2.5 2.78726 2.5 4.16797M17.5 4.16797V15.8346C17.5 17.218 14.1667 18.3346 10 18.3346C5.83333 18.3346 2.5 17.218 2.5 15.8346V4.16797M17.5 10.0013C17.5 11.3846 14.1667 12.5013 10 12.5013C5.83333 12.5013 2.5 11.3846 2.5 10.0013\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevHome = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M6 14.6654V7.9987H10V14.6654M2 5.9987L8 1.33203L14 5.9987V13.332C14 13.6857 13.8595 14.0248 13.6095 14.2748C13.3594 14.5249 13.0203 14.6654 12.6667 14.6654H3.33333C2.97971 14.6654 2.64057 14.5249 2.39052 14.2748C2.14048 14.0248 2 13.6857 2 13.332V5.9987Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevHomeMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M7.5 18.3346V10.0013H12.5V18.3346M2.5 7.5013L10 1.66797L17.5 7.5013V16.668C17.5 17.11 17.3244 17.5339 17.0118 17.8465C16.6993 18.159 16.2754 18.3346 15.8333 18.3346H4.16667C3.72464 18.3346 3.30072 18.159 2.98816 17.8465C2.67559 17.5339 2.5 17.11 2.5 16.668V7.5013Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevUser = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.3327 14V12.6667C13.3327 11.9594 13.0517 11.2811 12.5516 10.781C12.0515 10.281 11.3733 10 10.666 10H5.33268C4.62544 10 3.94716 10.281 3.44706 10.781C2.94697 11.2811 2.66602 11.9594 2.66602 12.6667V14M10.666 4.66667C10.666 6.13943 9.47211 7.33333 7.99935 7.33333C6.52659 7.33333 5.33268 6.13943 5.33268 4.66667C5.33268 3.19391 6.52659 2 7.99935 2C9.47211 2 10.666 3.19391 10.666 4.66667Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevUserMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M16.6673 17.5V15.8333C16.6673 14.9493 16.3161 14.1014 15.691 13.4763C15.0659 12.8512 14.218 12.5 13.334 12.5H6.66732C5.78326 12.5 4.93542 12.8512 4.31029 13.4763C3.68517 14.1014 3.33398 14.9493 3.33398 15.8333V17.5M13.334 5.83333C13.334 7.67428 11.8416 9.16667 10.0007 9.16667C8.1597 9.16667 6.66732 7.67428 6.66732 5.83333C6.66732 3.99238 8.1597 2.5 10.0007 2.5C11.8416 2.5 13.334 3.99238 13.334 5.83333Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevUsers = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_133015)\">\n <path d=\"M11.3327 14V12.6667C11.3327 11.9594 11.0517 11.2811 10.5516 10.781C10.0515 10.281 9.37326 10 8.66602 10H3.33268C2.62544 10 1.94716 10.281 1.44706 10.781C0.946967 11.2811 0.666016 11.9594 0.666016 12.6667V14M15.3327 14V12.6667C15.3322 12.0758 15.1356 11.5018 14.7736 11.0349C14.4116 10.5679 13.9048 10.2344 13.3327 10.0867M10.666 2.08667C11.2396 2.23353 11.748 2.56713 12.1111 3.03487C12.4742 3.50261 12.6712 4.07789 12.6712 4.67C12.6712 5.26211 12.4742 5.83739 12.1111 6.30513C11.748 6.77287 11.2396 7.10647 10.666 7.25333M8.66602 4.66667C8.66602 6.13943 7.47211 7.33333 5.99935 7.33333C4.52659 7.33333 3.33268 6.13943 3.33268 4.66667C3.33268 3.19391 4.52659 2 5.99935 2C7.47211 2 8.66602 3.19391 8.66602 4.66667Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_133015\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevUsersBg = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_133015)\">\n <path d=\"M11.3337 14V12.6667C11.3337 11.9594 11.0527 11.2811 10.5526 10.781C10.0525 10.281 9.37424 10 8.66699 10H3.33366C2.62641 10 1.94814 10.281 1.44804 10.781C0.947944 11.2811 0.666992 11.9594 0.666992 12.6667V14M15.3337 14V12.6667C15.3332 12.0758 15.1366 11.5018 14.7746 11.0349C14.4126 10.5679 13.9057 10.2344 13.3337 10.0867M10.667 2.08667C11.2406 2.23353 11.749 2.56713 12.1121 3.03487C12.4752 3.50261 12.6722 4.07789 12.6722 4.67C12.6722 5.26211 12.4752 5.83739 12.1121 6.30513C11.749 6.77287 11.2406 7.10647 10.667 7.25333M8.66699 4.66667C8.66699 6.13943 7.47308 7.33333 6.00033 7.33333C4.52757 7.33333 3.33366 6.13943 3.33366 4.66667C3.33366 3.19391 4.52757 2 6.00033 2C7.47308 2 8.66699 3.19391 8.66699 4.66667Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_133015\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevUsersMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M14.1693 17.5V15.8333C14.1693 14.9493 13.8181 14.1014 13.193 13.4763C12.5678 12.8512 11.72 12.5 10.8359 12.5H4.16927C3.28522 12.5 2.43737 12.8512 1.81225 13.4763C1.18713 14.1014 0.835938 14.9493 0.835938 15.8333V17.5M19.1693 17.5V15.8333C19.1687 15.0948 18.9229 14.3773 18.4704 13.7936C18.0179 13.2099 17.3844 12.793 16.6693 12.6083M13.3359 2.60833C14.053 2.79192 14.6885 3.20892 15.1423 3.79359C15.5961 4.37827 15.8425 5.09736 15.8425 5.8375C15.8425 6.57764 15.5961 7.29673 15.1423 7.88141C14.6885 8.46608 14.053 8.88308 13.3359 9.06667M10.8359 5.83333C10.8359 7.67428 9.34355 9.16667 7.5026 9.16667C5.66166 9.16667 4.16927 7.67428 4.16927 5.83333C4.16927 3.99238 5.66166 2.5 7.5026 2.5C9.34355 2.5 10.8359 3.99238 10.8359 5.83333Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevUserPlus = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <g clip-path=\"url(#clip0_21839_132937)\">\n <path d=\"M10.667 14V12.6667C10.667 11.9594 10.386 11.2811 9.88594 10.781C9.38585 10.281 8.70757 10 8.00033 10H3.33366C2.62641 10 1.94814 10.281 1.44804 10.781C0.947944 11.2811 0.666992 11.9594 0.666992 12.6667V14M13.3337 5.33333V9.33333M15.3337 7.33333H11.3337M8.33366 4.66667C8.33366 6.13943 7.13975 7.33333 5.66699 7.33333C4.19423 7.33333 3.00033 6.13943 3.00033 4.66667C3.00033 3.19391 4.19423 2 5.66699 2C7.13975 2 8.33366 3.19391 8.33366 4.66667Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_132937\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevUserPlusMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M13.333 17.5V15.8333C13.333 14.9493 12.9818 14.1014 12.3567 13.4763C11.7316 12.8512 10.8837 12.5 9.99967 12.5H4.16634C3.28229 12.5 2.43444 12.8512 1.80932 13.4763C1.1842 14.1014 0.833008 14.9493 0.833008 15.8333V17.5M16.6663 6.66667V11.6667M19.1663 9.16667H14.1663M10.4163 5.83333C10.4163 7.67428 8.92396 9.16667 7.08301 9.16667C5.24206 9.16667 3.74967 7.67428 3.74967 5.83333C3.74967 3.99238 5.24206 2.5 7.08301 2.5C8.92396 2.5 10.4163 3.99238 10.4163 5.83333Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevCopy = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_132901)\">\n <path d=\"M3.33398 9.9987H2.66732C2.3137 9.9987 1.97456 9.85822 1.72451 9.60817C1.47446 9.35812 1.33398 9.01899 1.33398 8.66536V2.66536C1.33398 2.31174 1.47446 1.9726 1.72451 1.72256C1.97456 1.47251 2.3137 1.33203 2.66732 1.33203H8.66732C9.02094 1.33203 9.36008 1.47251 9.61013 1.72256C9.86017 1.9726 10.0007 2.31174 10.0007 2.66536V3.33203M7.33398 5.9987H13.334C14.0704 5.9987 14.6673 6.59565 14.6673 7.33203V13.332C14.6673 14.0684 14.0704 14.6654 13.334 14.6654H7.33398C6.5976 14.6654 6.00065 14.0684 6.00065 13.332V7.33203C6.00065 6.59565 6.5976 5.9987 7.33398 5.9987Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_132901\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevCopyMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21_2390)\">\n <path d=\"M4.16602 12.5013H3.33268C2.89065 12.5013 2.46673 12.3257 2.15417 12.0131C1.84161 11.7006 1.66602 11.2767 1.66602 10.8346V3.33464C1.66602 2.89261 1.84161 2.46868 2.15417 2.15612C2.46673 1.84356 2.89065 1.66797 3.33268 1.66797H10.8327C11.2747 1.66797 11.6986 1.84356 12.0112 2.15612C12.3238 2.46868 12.4993 2.89261 12.4993 3.33464V4.16797M9.16602 7.5013H16.666C17.5865 7.5013 18.3327 8.24749 18.3327 9.16797V16.668C18.3327 17.5884 17.5865 18.3346 16.666 18.3346H9.16602C8.24554 18.3346 7.49935 17.5884 7.49935 16.668V9.16797C7.49935 8.24749 8.24554 7.5013 9.16602 7.5013Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2390\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevSidebar = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M6 2V14M3.33333 2H12.6667C13.403 2 14 2.59695 14 3.33333V12.6667C14 13.403 13.403 14 12.6667 14H3.33333C2.59695 14 2 13.403 2 12.6667V3.33333C2 2.59695 2.59695 2 3.33333 2Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevMapPin = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13 6.66699C13 11.3337 7 15.3337 7 15.3337C7 15.3337 1 11.3337 1 6.66699C1 5.07569 1.63214 3.54957 2.75736 2.42435C3.88258 1.29913 5.4087 0.666992 7 0.666992C8.5913 0.666992 10.1174 1.29913 11.2426 2.42435C12.3679 3.54957 13 5.07569 13 6.66699Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M7 8.66699C8.10457 8.66699 9 7.77156 9 6.66699C9 5.56242 8.10457 4.66699 7 4.66699C5.89543 4.66699 5 5.56242 5 6.66699C5 7.77156 5.89543 8.66699 7 8.66699Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevSidebarMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M7.5 2.5V17.5M4.16667 2.5H15.8333C16.7538 2.5 17.5 3.24619 17.5 4.16667V15.8333C17.5 16.7538 16.7538 17.5 15.8333 17.5H4.16667C3.24619 17.5 2.5 16.7538 2.5 15.8333V4.16667C2.5 3.24619 3.24619 2.5 4.16667 2.5Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevChart = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_26713_82376)\">\n <path d=\"M1.33398 7.9987C1.33398 4.856 1.33398 3.28465 2.3103 2.30834C3.28661 1.33203 4.85795 1.33203 8.00065 1.33203C11.1433 1.33203 12.7147 1.33203 13.691 2.30834C14.6673 3.28465 14.6673 4.856 14.6673 7.9987C14.6673 11.1414 14.6673 12.7127 13.691 13.6891C12.7147 14.6654 11.1433 14.6654 8.00065 14.6654C4.85795 14.6654 3.28661 14.6654 2.3103 13.6891C1.33398 12.7127 1.33398 11.1414 1.33398 7.9987Z\" stroke=\"#6B7280\" stroke-width=\"1.5\"/>\n <path d=\"M4.66602 12L4.66602 10\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M8 12V8\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M11.334 12V6\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_26713_82376\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevFolder = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M14.6673 12.6667C14.6673 13.0203 14.5268 13.3594 14.2768 13.6095C14.0267 13.8595 13.6876 14 13.334 14H2.66732C2.3137 14 1.97456 13.8595 1.72451 13.6095C1.47446 13.3594 1.33398 13.0203 1.33398 12.6667V3.33333C1.33398 2.97971 1.47446 2.64057 1.72451 2.39052C1.97456 2.14048 2.3137 2 2.66732 2H6.00065L7.33398 4H13.334C13.6876 4 14.0267 4.14048 14.2768 4.39052C14.5268 4.64057 14.6673 4.97971 14.6673 5.33333V12.6667Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevFolderMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M18.3327 15.8333C18.3327 16.2754 18.1571 16.6993 17.8445 17.0118C17.532 17.3244 17.108 17.5 16.666 17.5H3.33268C2.89065 17.5 2.46673 17.3244 2.15417 17.0118C1.84161 16.6993 1.66602 16.2754 1.66602 15.8333V4.16667C1.66602 3.72464 1.84161 3.30072 2.15417 2.98816C2.46673 2.67559 2.89065 2.5 3.33268 2.5H7.49935L9.16602 5H16.666C17.108 5 17.532 5.17559 17.8445 5.48816C18.1571 5.80072 18.3327 6.22464 18.3327 6.66667V15.8333Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevFolderOpen = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M12.6673 14.5C12.9435 14.5 13.1673 14.2761 13.1673 14C13.1673 13.7239 12.9435 13.5 12.6673 13.5V14.5ZM1.72451 13.6095L2.07806 13.2559L1.72451 13.6095ZM1.72451 2.39052L2.07806 2.74408L1.72451 2.39052ZM6.00065 2L6.41668 1.72265C6.32394 1.58355 6.16783 1.5 6.00065 1.5V2ZM7.33398 4L6.91796 4.27735C7.01069 4.41645 7.16681 4.5 7.33398 4.5V4ZM13.1673 6C13.1673 6.27614 13.3912 6.5 13.6673 6.5C13.9435 6.5 14.1673 6.27614 14.1673 6H13.1673ZM4.07016 6.43446L4.55248 6.56623L4.5525 6.56619L4.07016 6.43446ZM4.2678 6.12036L4.58755 6.50476L4.2678 6.12036ZM4.59248 6L4.59238 6.5H4.59248V6ZM12.6698 13.5C12.3936 13.5001 12.1698 13.724 12.1699 14.0002C12.17 14.2763 12.394 14.5001 12.6701 14.5L12.6698 13.5ZM13.714 13.1311L13.2317 12.9993L13.2317 12.9994L13.714 13.1311ZM15.4449 6.79631L15.9272 6.92809L15.9273 6.92803L15.4449 6.79631ZM14.9226 6V6.5H14.9227L14.9226 6ZM1.58675 13.6273C1.51398 13.8937 1.67092 14.1687 1.9373 14.2414C2.20368 14.3142 2.47862 14.1573 2.5514 13.8909L1.58675 13.6273ZM12.6673 13.5H2.66732V14.5H12.6673V13.5ZM2.66732 13.5C2.4463 13.5 2.23434 13.4122 2.07806 13.2559L1.37096 13.963C1.71477 14.3068 2.18109 14.5 2.66732 14.5V13.5ZM2.07806 13.2559C1.92178 13.0996 1.83398 12.8877 1.83398 12.6667H0.833984C0.833984 13.1529 1.02714 13.6192 1.37096 13.963L2.07806 13.2559ZM1.83398 12.6667V3.33333H0.833984V12.6667H1.83398ZM1.83398 3.33333C1.83398 3.11232 1.92178 2.90036 2.07806 2.74408L1.37096 2.03697C1.02714 2.38079 0.833984 2.8471 0.833984 3.33333H1.83398ZM2.07806 2.74408C2.23434 2.5878 2.4463 2.5 2.66732 2.5V1.5C2.18109 1.5 1.71477 1.69315 1.37096 2.03697L2.07806 2.74408ZM2.66732 2.5H6.00065V1.5H2.66732V2.5ZM5.58463 2.27735L6.91796 4.27735L7.75001 3.72265L6.41668 1.72265L5.58463 2.27735ZM7.33398 4.5H12.334V3.5H7.33398V4.5ZM12.334 4.5C12.555 4.5 12.767 4.5878 12.9232 4.74408L13.6303 4.03697C13.2865 3.69315 12.8202 3.5 12.334 3.5V4.5ZM12.9232 4.74408C13.0795 4.90036 13.1673 5.11232 13.1673 5.33333H14.1673C14.1673 4.8471 13.9742 4.38079 13.6303 4.03697L12.9232 4.74408ZM13.1673 5.33333V6H14.1673V5.33333H13.1673ZM4.5525 6.56619C4.56174 6.53232 4.57772 6.51293 4.58755 6.50476L3.94806 5.73595C3.76986 5.88418 3.64729 6.08497 3.58782 6.30274L4.5525 6.56619ZM4.58755 6.50476C4.5922 6.50089 4.59504 6.49979 4.59536 6.49967C4.59562 6.49958 4.59446 6.5 4.59238 6.5L4.59259 5.5C4.35314 5.49995 4.1274 5.58679 3.94806 5.73595L4.58755 6.50476ZM12.6701 14.5C13.0263 14.4999 13.3656 14.3708 13.6388 14.1434L12.9991 13.3748C12.8965 13.4602 12.7809 13.5 12.6698 13.5L12.6701 14.5ZM13.6388 14.1434C13.9109 13.917 14.1026 13.6063 14.1964 13.2628L13.2317 12.9994C13.1881 13.159 13.1029 13.2884 12.9991 13.3748L13.6388 14.1434ZM14.1964 13.2629L15.9272 6.92809L14.9626 6.66452L13.2317 12.9993L14.1964 13.2629ZM15.9273 6.92803C15.9709 6.76828 15.9804 6.60049 15.9557 6.43705L14.9669 6.58678C14.9709 6.61321 14.9692 6.64024 14.9626 6.66459L15.9273 6.92803ZM15.9557 6.43705C15.9309 6.27361 15.872 6.11534 15.7802 5.97548L14.9441 6.52395C14.9539 6.539 14.9629 6.56035 14.9669 6.58678L15.9557 6.43705ZM15.7802 5.97548C15.6884 5.83546 15.5648 5.7159 15.4157 5.6312L14.9218 6.50068C14.9254 6.50271 14.9343 6.50905 14.9441 6.52395L15.7802 5.97548ZM15.4157 5.6312C15.2662 5.54624 15.097 5.49996 14.9225 5.5L14.9227 6.5C14.9192 6.5 14.9186 6.4989 14.9218 6.50068L15.4157 5.6312ZM2.5514 13.8909L4.55248 6.56623L3.58784 6.30269L1.58675 13.6273L2.5514 13.8909ZM4.59248 6.5H14.9226V5.5H4.59248V6.5Z\" fill=\"#6B7280\"/>\n</svg>\n`;\n\nconst duckDevFolderOpenMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_6189_95788)\">\n <path d=\"M15.8327 18.25C16.2469 18.25 16.5827 17.9142 16.5827 17.5C16.5827 17.0858 16.2469 16.75 15.8327 16.75V18.25ZM2.15417 17.0118L2.6845 16.4815L2.15417 17.0118ZM2.15417 2.98816L2.6845 3.51849L2.6845 3.51849L2.15417 2.98816ZM7.49935 2.5L8.12339 2.08397C7.98429 1.87533 7.75011 1.75 7.49935 1.75V2.5ZM9.16602 5L8.54198 5.41603C8.68108 5.62467 8.91525 5.75 9.16602 5.75V5ZM16.3327 7.5C16.3327 7.91421 16.6685 8.25 17.0827 8.25C17.4969 8.25 17.8327 7.91421 17.8327 7.5H16.3327ZM5.08624 8.04308L5.80972 8.24073L5.80974 8.24066L5.08624 8.04308ZM5.33329 7.65045L5.8129 8.22705L5.33329 7.65045ZM5.73914 7.5L5.73898 8.25H5.73914V7.5ZM15.8357 16.75C15.4215 16.7501 15.0858 17.086 15.086 17.5003C15.0861 17.9145 15.422 18.2501 15.8362 18.25L15.8357 16.75ZM17.1411 16.4138L16.4176 16.2162L16.4176 16.2163L17.1411 16.4138ZM19.3047 8.49538L20.0282 8.69306L20.0282 8.69297L19.3047 8.49538ZM18.6518 7.5V8.25H18.652L18.6518 7.5ZM1.86139 17.0012C1.75223 17.4008 1.98765 17.8132 2.38722 17.9224C2.78679 18.0315 3.1992 17.7961 3.30836 17.3965L1.86139 17.0012ZM15.8327 16.75H3.33268V18.25H15.8327V16.75ZM3.33268 16.75C3.08957 16.75 2.85641 16.6534 2.6845 16.4815L1.62384 17.5422C2.07705 17.9954 2.69174 18.25 3.33268 18.25V16.75ZM2.6845 16.4815C2.51259 16.3096 2.41602 16.0764 2.41602 15.8333H0.916016C0.916016 16.4743 1.17063 17.089 1.62384 17.5422L2.6845 16.4815ZM2.41602 15.8333V4.16667H0.916016V15.8333H2.41602ZM2.41602 4.16667C2.41602 3.92355 2.51259 3.69039 2.6845 3.51849L1.62384 2.45783C1.17063 2.91104 0.916016 3.52573 0.916016 4.16667H2.41602ZM2.6845 3.51849C2.85641 3.34658 3.08957 3.25 3.33268 3.25V1.75C2.69174 1.75 2.07705 2.00461 1.62384 2.45783L2.6845 3.51849ZM3.33268 3.25H7.49935V1.75H3.33268V3.25ZM6.87531 2.91603L8.54198 5.41603L9.79005 4.58397L8.12339 2.08397L6.87531 2.91603ZM9.16602 5.75H15.416V4.25H9.16602V5.75ZM15.416 5.75C15.6591 5.75 15.8923 5.84658 16.0642 6.01849L17.1249 4.95783C16.6716 4.50461 16.057 4.25 15.416 4.25V5.75ZM16.0642 6.01849C16.2361 6.19039 16.3327 6.42355 16.3327 6.66667H17.8327C17.8327 6.02573 17.5781 5.41104 17.1249 4.95783L16.0642 6.01849ZM16.3327 6.66667V7.5H17.8327V6.66667H16.3327ZM5.80974 8.24066C5.81217 8.23177 5.81508 8.22626 5.81659 8.22387C5.8181 8.22148 5.81752 8.22321 5.8129 8.22705L4.85368 7.07384C4.60988 7.27663 4.44335 7.55029 4.36273 7.84549L5.80974 8.24066ZM5.8129 8.22705C5.80244 8.23576 5.77677 8.25001 5.73898 8.25L5.73931 6.75C5.40934 6.74993 5.09918 6.86964 4.85368 7.07384L5.8129 8.22705ZM15.8362 18.25C16.3121 18.2498 16.7642 18.0773 17.127 17.7754L16.1675 16.6224C16.0605 16.7114 15.944 16.75 15.8357 16.75L15.8362 18.25ZM17.127 17.7754C17.4881 17.4749 17.7411 17.0637 17.8646 16.6114L16.4176 16.2163C16.3694 16.3928 16.2762 16.5319 16.1675 16.6224L17.127 17.7754ZM17.8646 16.6115L20.0282 8.69306L18.5812 8.2977L16.4176 16.2162L17.8646 16.6115ZM20.0282 8.69297C20.0874 8.47635 20.1002 8.24902 20.0667 8.0276L18.5836 8.25219C18.586 8.2681 18.5849 8.28429 18.5812 8.2978L20.0282 8.69297ZM20.0667 8.0276C20.0332 7.80617 19.9533 7.59122 19.8284 7.40079L18.5741 8.2235C18.5762 8.22671 18.5812 8.23628 18.5836 8.25219L20.0667 8.0276ZM19.8284 7.40079C19.7033 7.21012 19.5345 7.04652 19.33 6.93031L18.589 8.23453C18.5753 8.22674 18.5721 8.22051 18.5741 8.2235L19.8284 7.40079ZM19.33 6.93031C19.1247 6.81371 18.892 6.74995 18.6516 6.75L18.652 8.25C18.6253 8.25001 18.6034 8.2427 18.589 8.23453L19.33 6.93031ZM3.30836 17.3965L5.80972 8.24073L4.36275 7.84542L1.86139 17.0012L3.30836 17.3965ZM5.73914 8.25H18.6518V6.75H5.73914V8.25Z\" fill=\"#6B7280\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_6189_95788\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevPlus = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.00065 3.33203V12.6654M3.33398 7.9987H12.6673\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevPlusMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M9.99935 4.16797V15.8346M4.16602 10.0013H15.8327\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevPlusCircle = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <rect width=\"16\" height=\"16\" rx=\"8\" fill=\"#595E6A\"/>\n <path d=\"M8.00065 3.33203V12.6654M3.33398 7.9987H12.6673\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevFiltersLines = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M4 8H12M2 4H14M6 12H10\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevFiltersLinesMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M5 10H15M2.5 5H17.5M7.5 15H12.5\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevSearch = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M14 14L11.1 11.1M12.6667 7.33333C12.6667 10.2789 10.2789 12.6667 7.33333 12.6667C4.38781 12.6667 2 10.2789 2 7.33333C2 4.38781 4.38781 2 7.33333 2C10.2789 2 12.6667 4.38781 12.6667 7.33333Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevSearchMedium = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M14 14L11.1 11.1M12.6667 7.33333C12.6667 10.2789 10.2789 12.6667 7.33333 12.6667C4.38781 12.6667 2 10.2789 2 7.33333C2 4.38781 4.38781 2 7.33333 2C10.2789 2 12.6667 4.38781 12.6667 7.33333Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevGrid = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M6.66667 2H2V6.66667H6.66667V2Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M14 2H9.33333V6.66667H14V2Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M14 9.33333H9.33333V14H14V9.33333Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M6.66667 9.33333H2V14H6.66667V9.33333Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevGridMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.33333 2.5H2.5V8.33333H8.33333V2.5Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M17.5 2.5H11.6667V8.33333H17.5V2.5Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M17.5 11.6667H11.6667V17.5H17.5V11.6667Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8.33333 11.6667H2.5V17.5H8.33333V11.6667Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevList = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M6.66667 5H17.5M6.66667 10H17.5M6.66667 15H17.5M2.5 5H2.50833M2.5 10H2.50833M2.5 15H2.50833\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevListMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M6.66667 5H17.5M6.66667 10H17.5M6.66667 15H17.5M2.5 5H2.50833M2.5 10H2.50833M2.5 15H2.50833\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevSortAZMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.6673 4.375C15.0125 4.375 15.2923 4.65482 15.2923 5V12.2917L16.6673 10.4583C16.8744 10.1822 17.2662 10.1262 17.5423 10.3333C17.8185 10.5404 17.8744 10.9322 17.6673 11.2083L15.1673 14.5417C15.0059 14.7569 14.7249 14.8447 14.4697 14.7596C14.2145 14.6745 14.0423 14.4357 14.0423 14.1667V5C14.0423 4.65482 14.3221 4.375 14.6673 4.375ZM6.54232 5C6.54232 4.65482 6.82214 4.375 7.16732 4.375H11.334C11.6792 4.375 11.959 4.65482 11.959 5C11.959 5.34518 11.6792 5.625 11.334 5.625H7.16732C6.82214 5.625 6.54232 5.34518 6.54232 5ZM4.87565 9.16667C4.87565 8.82149 5.15547 8.54167 5.50065 8.54167H11.334C11.6792 8.54167 11.959 8.82149 11.959 9.16667C11.959 9.51184 11.6792 9.79167 11.334 9.79167H5.50065C5.15547 9.79167 4.87565 9.51184 4.87565 9.16667ZM3.20898 13.3333C3.20898 12.9882 3.48881 12.7083 3.83398 12.7083H11.334C11.6792 12.7083 11.959 12.9882 11.959 13.3333C11.959 13.6785 11.6792 13.9583 11.334 13.9583H3.83398C3.48881 13.9583 3.20898 13.6785 3.20898 13.3333Z\" fill=\"#6B7280\"/>\n</svg>\n`;\n\nconst duckDevFlagBold = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M3.83398 0.664062C4.11013 0.664062 4.33398 0.88792 4.33398 1.16406V2.3974L5.4811 2.16797C6.58145 1.9479 7.72205 2.05262 8.76394 2.46938L9.03946 2.57959C9.98937 2.95955 11.0349 3.03051 12.0274 2.78237C12.4481 2.67721 12.7859 3.13313 12.5628 3.50494L11.7104 4.92554C11.4828 5.30498 11.3689 5.49469 11.342 5.70106C11.3307 5.78714 11.3307 5.87432 11.342 5.9604C11.3689 6.16676 11.4828 6.35648 11.7104 6.73592L12.7509 8.46998C12.9581 8.81533 12.7728 9.2627 12.382 9.36038L12.3153 9.37707C11.1356 9.67199 9.89297 9.58766 8.76394 9.13604C7.72206 8.71929 6.58145 8.61457 5.4811 8.83464L4.33398 9.06406V14.4974C4.33398 14.7735 4.11013 14.9974 3.83398 14.9974C3.55784 14.9974 3.33398 14.7735 3.33398 14.4974V1.16406C3.33398 0.88792 3.55784 0.664062 3.83398 0.664062Z\" fill=\"#6B7280\"/>\n</svg>\n`;\n\nconst duckDevFileText = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M9.33268 1.33203H3.99935C3.64573 1.33203 3.30659 1.47251 3.05654 1.72256C2.80649 1.9726 2.66602 2.31174 2.66602 2.66536V13.332C2.66602 13.6857 2.80649 14.0248 3.05654 14.2748C3.30659 14.5249 3.64573 14.6654 3.99935 14.6654H11.9993C12.353 14.6654 12.6921 14.5249 12.9422 14.2748C13.1922 14.0248 13.3327 13.6857 13.3327 13.332V5.33203M9.33268 1.33203L13.3327 5.33203M9.33268 1.33203V5.33203H13.3327M10.666 8.66536H5.33268M10.666 11.332H5.33268M6.66602 5.9987H5.33268\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevFileTextMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M11.6673 1.66797H5.00065C4.55862 1.66797 4.1347 1.84356 3.82214 2.15612C3.50958 2.46868 3.33398 2.89261 3.33398 3.33464V16.668C3.33398 17.11 3.50958 17.5339 3.82214 17.8465C4.1347 18.159 4.55862 18.3346 5.00065 18.3346H15.0007C15.4427 18.3346 15.8666 18.159 16.1792 17.8465C16.4917 17.5339 16.6673 17.11 16.6673 16.668V6.66797M11.6673 1.66797L16.6673 6.66797M11.6673 1.66797V6.66797H16.6673M13.334 10.8346H6.66732M13.334 14.168H6.66732M8.33398 7.5013H6.66732\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevLink = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_26965_119184)\">\n <path d=\"M6.6668 8.66795C6.9531 9.0507 7.31837 9.3674 7.73783 9.59657C8.1573 9.82574 8.62114 9.96202 9.0979 9.99617C9.57466 10.0303 10.0532 9.96152 10.501 9.79447C10.9489 9.62741 11.3555 9.36599 11.6935 9.02795L13.6935 7.02795C14.3007 6.39927 14.6366 5.55726 14.629 4.68328C14.6215 3.80929 14.2709 2.97324 13.6529 2.35522C13.0348 1.73719 12.1988 1.38663 11.3248 1.37903C10.4508 1.37144 9.60881 1.70742 8.98013 2.31461L7.83347 3.45461M9.33347 7.33461C9.04716 6.95186 8.68189 6.63516 8.26243 6.40599C7.84297 6.17681 7.37913 6.04053 6.90237 6.00639C6.4256 5.97225 5.94708 6.04103 5.49924 6.20809C5.0514 6.37515 4.64472 6.63657 4.3068 6.97461L2.3068 8.97461C1.69961 9.60329 1.36363 10.4453 1.37122 11.3193C1.37881 12.1933 1.72938 13.0293 2.3474 13.6473C2.96543 14.2654 3.80147 14.6159 4.67546 14.6235C5.54945 14.6311 6.39146 14.2951 7.02013 13.6879L8.16013 12.5479\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_26965_119184\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevExternalLinkMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.33366 4.16536H6.83366C5.90033 4.16536 5.43366 4.16536 5.07699 4.34703C4.76337 4.50677 4.5084 4.76174 4.34866 5.07536C4.16699 5.43203 4.16699 5.8987 4.16699 6.83203V13.1654C4.16699 14.0987 4.16699 14.5654 4.34866 14.922C4.50845 15.2356 4.7634 15.4906 5.07699 15.6504C5.43283 15.832 5.89949 15.832 6.83116 15.832H13.1695C14.1012 15.832 14.567 15.832 14.9228 15.6504C15.237 15.4904 15.492 15.2354 15.652 14.922C15.8337 14.5654 15.8337 14.0995 15.8337 13.1679V11.6654M16.667 7.4987V3.33203M16.667 3.33203H12.5003M16.667 3.33203L10.8337 9.16536\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevLinkBroken = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M1.33301 5.33203L5.33301 6.66536\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M4 2.66797L5.33333 4.66797\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M7.33301 4.37371L9.79973 1.95706C10.7728 1.00372 12.5083 1.15829 13.676 2.3023C14.8437 3.44631 15.0015 5.14654 14.0284 6.09988L12.0902 7.9987\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M10.0003 10.3911L7.3105 13.334C6.38202 14.3498 4.72612 14.1851 3.61195 12.9661C2.49778 11.7472 2.34724 9.93548 3.27572 8.91966L4.11629 8\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n</svg>\n`;\n\nconst duckDevLinkBrokenMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M1.66699 6.66797L6.66699 8.33464\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M5 3.33203L6.66667 5.83203\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M9.16699 5.47007L12.2504 2.44926C13.4667 1.25758 15.6361 1.45079 17.0957 2.8808C18.5553 4.31082 18.7525 6.4361 17.5362 7.62778L15.1135 10.0013\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M12.4997 12.9888L9.13739 16.6675C7.97679 17.9373 5.90692 17.7314 4.51421 16.2077C3.12149 14.6839 2.93332 12.4194 4.09392 11.1496L5.14464 10\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n</svg>\n`;\n\nconst duckDevClockMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21_2736)\">\n <path d=\"M9.99935 5.0013V10.0013L13.3327 11.668M18.3327 10.0013C18.3327 14.6037 14.6017 18.3346 9.99935 18.3346C5.39698 18.3346 1.66602 14.6037 1.66602 10.0013C1.66602 5.39893 5.39698 1.66797 9.99935 1.66797C14.6017 1.66797 18.3327 5.39893 18.3327 10.0013Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2736\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevInfo = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_2117_27532)\">\n <path d=\"M8.00065 10.6654V7.9987M8.00065 5.33203H8.00732M14.6673 7.9987C14.6673 11.6806 11.6825 14.6654 8.00065 14.6654C4.31875 14.6654 1.33398 11.6806 1.33398 7.9987C1.33398 4.3168 4.31875 1.33203 8.00065 1.33203C11.6825 1.33203 14.6673 4.3168 14.6673 7.9987Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_2117_27532\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevInfoMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21_2634)\">\n <path d=\"M10.0003 13.3346V10.0013M10.0003 6.66797H10.0087M18.3337 10.0013C18.3337 14.6037 14.6027 18.3346 10.0003 18.3346C5.39795 18.3346 1.66699 14.6037 1.66699 10.0013C1.66699 5.39893 5.39795 1.66797 10.0003 1.66797C14.6027 1.66797 18.3337 5.39893 18.3337 10.0013Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2634\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevInfoCircle = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.6668 7.99967C14.6668 11.6816 11.6821 14.6663 8.00016 14.6663C4.31826 14.6663 1.3335 11.6816 1.3335 7.99967C1.3335 4.31778 4.31826 1.33301 8.00016 1.33301C11.6821 1.33301 14.6668 4.31778 14.6668 7.99967ZM8.00016 11.833C8.2763 11.833 8.50016 11.6091 8.50016 11.333V7.33301C8.50016 7.05687 8.2763 6.83301 8.00016 6.83301C7.72402 6.83301 7.50016 7.05687 7.50016 7.33301V11.333C7.50016 11.6091 7.72402 11.833 8.00016 11.833ZM8.00016 4.66634C8.36835 4.66634 8.66683 4.96482 8.66683 5.33301C8.66683 5.7012 8.36835 5.99967 8.00016 5.99967C7.63197 5.99967 7.3335 5.7012 7.3335 5.33301C7.3335 4.96482 7.63197 4.66634 8.00016 4.66634Z\" fill=\"#1570EF\"/>\n</svg>\n`;\n\nconst duckDevInfoCircleBg = `\n<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <rect width=\"24\" height=\"24\" rx=\"8\" fill=\"#F0F7FF\"/>\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.6668 11.9997C18.6668 15.6816 15.6821 18.6663 12.0002 18.6663C8.31826 18.6663 5.3335 15.6816 5.3335 11.9997C5.3335 8.31778 8.31826 5.33301 12.0002 5.33301C15.6821 5.33301 18.6668 8.31778 18.6668 11.9997ZM12.0002 15.833C12.2763 15.833 12.5002 15.6091 12.5002 15.333V11.333C12.5002 11.0569 12.2763 10.833 12.0002 10.833C11.724 10.833 11.5002 11.0569 11.5002 11.333V15.333C11.5002 15.6091 11.724 15.833 12.0002 15.833ZM12.0002 8.66634C12.3684 8.66634 12.6668 8.96482 12.6668 9.33301C12.6668 9.7012 12.3684 9.99967 12.0002 9.99967C11.632 9.99967 11.3335 9.7012 11.3335 9.33301C11.3335 8.96482 11.632 8.66634 12.0002 8.66634Z\" fill=\"#1570EF\"/>\n</svg>\n`;\n\nconst duckDevAlertTriangle = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.0005 5.33412V8.00079M8.0005 10.6675H8.00717M6.8605 1.90745L1.21384 11.3341C1.09741 11.5357 1.03581 11.7643 1.03516 11.9971C1.03451 12.2299 1.09483 12.4589 1.21012 12.6611C1.32541 12.8634 1.49165 13.032 1.69231 13.15C1.89296 13.2681 2.12103 13.3316 2.35384 13.3341H13.6472C13.88 13.3316 14.108 13.2681 14.3087 13.15C14.5094 13.032 14.6756 12.8634 14.7909 12.6611C14.9062 12.4589 14.9665 12.2299 14.9658 11.9971C14.9652 11.7643 14.9036 11.5357 14.7872 11.3341L9.1405 1.90745C9.02165 1.71153 8.85432 1.54953 8.65463 1.43711C8.45495 1.32469 8.22966 1.26562 8.0005 1.26562C7.77135 1.26563 7.54606 1.32469 7.34637 1.43711C7.14669 1.54953 6.97935 1.71153 6.8605 1.90745Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevAlertTriangleMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M9.99965 6.66765V10.001M9.99965 13.3343H10.008M8.57465 2.38432L1.51632 14.1677C1.37079 14.4197 1.29379 14.7054 1.29298 14.9964C1.29216 15.2874 1.36756 15.5736 1.51167 15.8264C1.65579 16.0793 1.86359 16.2899 2.11441 16.4375C2.36523 16.5851 2.65032 16.6645 2.94132 16.6677H17.058C17.349 16.6645 17.6341 16.5851 17.8849 16.4375C18.1357 16.2899 18.3435 16.0793 18.4876 15.8264C18.6317 15.5736 18.7071 15.2874 18.7063 14.9964C18.7055 14.7054 18.6285 14.4197 18.483 14.1677L11.4247 2.38432C11.2761 2.13941 11.0669 1.93692 10.8173 1.79639C10.5677 1.65586 10.2861 1.58203 9.99965 1.58203C9.71321 1.58203 9.43159 1.65586 9.18199 1.79639C8.93238 1.93692 8.72321 2.13941 8.57465 2.38432Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevAlertCircle = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_29573_7576)\">\n <path d=\"M7.9987 14.6654C11.6806 14.6654 14.6654 11.6806 14.6654 7.9987C14.6654 4.3168 11.6806 1.33203 7.9987 1.33203C4.3168 1.33203 1.33203 4.3168 1.33203 7.9987C1.33203 11.6806 4.3168 14.6654 7.9987 14.6654Z\" stroke=\"#FC5555\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8 5.33203V7.9987\" stroke=\"#FC5555\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8 10.668H8.00667\" stroke=\"#FC5555\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_29573_7576\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDev2Layers = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M1.33398 9.66667L8.00065 13L14.6673 9.66667M8.00065 3L1.33398 6.33333L8.00065 9.66667L14.6673 6.33333L8.00065 3Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDev2LayersMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M1.66602 12.0833L9.99935 16.25L18.3327 12.0833M9.99935 3.75L1.66602 7.91667L9.99935 12.0833L18.3327 7.91667L9.99935 3.75Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDev3Layers = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_133120)\">\n <path d=\"M1.33301 11.332L7.99967 14.6654L14.6663 11.332M1.33301 7.9987L7.99967 11.332L14.6663 7.9987M7.99967 1.33203L1.33301 4.66536L7.99967 7.9987L14.6663 4.66536L7.99967 1.33203Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_133120\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDev3LayersMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <g clip-path=\"url(#clip0_21_2866)\">\n <path d=\"M1.66699 14.168L10.0003 18.3346L18.3337 14.168M1.66699 10.0013L10.0003 14.168L18.3337 10.0013M10.0003 1.66797L1.66699 5.83464L10.0003 10.0013L18.3337 5.83464L10.0003 1.66797Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2866\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevLearningMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M18.3523 7.29583V11.1387M4.81565 9.09375V14.2779C4.81565 14.2779 6.81982 16.25 9.59315 16.25C12.3669 16.25 14.3711 14.2779 14.3711 14.2779V9.09375M0.833984 7.25L9.59315 3.75L18.3523 7.25L9.59315 10.75L0.833984 7.25Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevBellMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M11.4417 17.5013C11.2952 17.7539 11.0849 17.9635 10.8319 18.1092C10.5788 18.255 10.292 18.3317 10 18.3317C9.70802 18.3317 9.42116 18.255 9.16814 18.1092C8.91513 17.9635 8.70484 17.7539 8.55833 17.5013M15 6.66797C15 5.34189 14.4732 4.07012 13.5355 3.13243C12.5979 2.19475 11.3261 1.66797 10 1.66797C8.67392 1.66797 7.40215 2.19475 6.46447 3.13243C5.52678 4.07012 5 5.34189 5 6.66797C5 12.5013 2.5 14.168 2.5 14.168H17.5C17.5 14.168 15 12.5013 15 6.66797Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevMessageCircle = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M14 7.66669C14.0023 8.5466 13.7967 9.41461 13.4 10.2C12.9296 11.1412 12.2065 11.9328 11.3116 12.4862C10.4168 13.0396 9.3855 13.3329 8.33333 13.3334C7.45342 13.3356 6.58541 13.1301 5.8 12.7334L2 14L3.26667 10.2C2.86995 9.41461 2.66437 8.5466 2.66667 7.66669C2.66707 6.61452 2.96041 5.58325 3.51381 4.68839C4.06722 3.79352 4.85884 3.0704 5.8 2.60002C6.58541 2.20331 7.45342 1.99772 8.33333 2.00002H8.66667C10.0562 2.07668 11.3687 2.66319 12.3528 3.64726C13.3368 4.63132 13.9233 5.94379 14 7.33335V7.66669Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevMessageCircleMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M17.5 9.58336C17.5029 10.6832 17.2459 11.7683 16.75 12.75C16.162 13.9265 15.2581 14.916 14.1395 15.6078C13.021 16.2995 11.7319 16.6662 10.4167 16.6667C9.31678 16.6696 8.23176 16.4126 7.25 15.9167L2.5 17.5L4.08333 12.75C3.58744 11.7683 3.33047 10.6832 3.33333 9.58336C3.33384 8.26815 3.70051 6.97907 4.39227 5.86048C5.08402 4.7419 6.07355 3.838 7.25 3.25002C8.23176 2.75413 9.31678 2.49716 10.4167 2.50002H10.8333C12.5703 2.59585 14.2109 3.32899 15.441 4.55907C16.671 5.78915 17.4042 7.42973 17.5 9.16669V9.58336Z\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevSlashDivider = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\">\n <line x1=\"4.25816\" y1=\"12.5543\" x2=\"9.54088\" y2=\"1.22544\" stroke=\"#6B7280\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevCaretDownFillXxs = `\n<svg width=\"12\" height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M5.54587 8.01299L2.65053 5.08183C2.30884 4.73695 2.58654 4.19531 3.10512 4.19531H8.89578C9.01184 4.19522 9.12547 4.22477 9.22306 4.2804C9.32064 4.33604 9.39806 4.41541 9.44602 4.50901C9.49399 4.60261 9.51048 4.70647 9.49352 4.80816C9.47655 4.90985 9.42685 5.00505 9.35037 5.08236L6.45503 8.01246C6.39837 8.06989 6.32849 8.11592 6.25009 8.14746C6.17168 8.179 6.08656 8.19531 6.00045 8.19531C5.91434 8.19531 5.82922 8.179 5.75082 8.14746C5.67241 8.11592 5.60253 8.06989 5.54587 8.01246V8.01299Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevCaretDownFill = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 17\" fill=\"none\">\n <path d=\"M7.24652 11.6035L2.45052 6.10753C1.88452 5.46089 2.34452 4.44531 3.20352 4.44531H12.7955C12.9878 4.44515 13.176 4.50054 13.3376 4.60486C13.4993 4.70918 13.6275 4.858 13.707 5.0335C13.7864 5.209 13.8137 5.40374 13.7856 5.5944C13.7575 5.78507 13.6752 5.96357 13.5485 6.10853L8.75252 11.6025C8.65866 11.7101 8.54291 11.7965 8.41303 11.8556C8.28316 11.9147 8.14216 11.9453 7.99952 11.9453C7.85688 11.9453 7.71589 11.9147 7.58601 11.8556C7.45614 11.7965 7.34038 11.7101 7.24652 11.6025V11.6035Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevDragHandleDots = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.86663 4.9332C6.02421 4.9332 6.18026 4.90216 6.32585 4.84186C6.47144 4.78155 6.60372 4.69316 6.71515 4.58173C6.82658 4.4703 6.91498 4.33801 6.97528 4.19242C7.03559 4.04683 7.06663 3.89079 7.06663 3.7332C7.06663 3.57562 7.03559 3.41957 6.97528 3.27398C6.91498 3.12839 6.82658 2.99611 6.71515 2.88468C6.60372 2.77324 6.47144 2.68485 6.32585 2.62455C6.18026 2.56424 6.02421 2.5332 5.86663 2.5332C5.54837 2.5332 5.24314 2.65963 5.0181 2.88468C4.79305 3.10972 4.66663 3.41494 4.66663 3.7332C4.66663 4.05146 4.79305 4.35669 5.0181 4.58173C5.24314 4.80677 5.54837 4.9332 5.86663 4.9332ZM10.1333 4.9332C10.2909 4.9332 10.4469 4.90216 10.5925 4.84186C10.7381 4.78155 10.8704 4.69316 10.9818 4.58173C11.0933 4.4703 11.1816 4.33801 11.2419 4.19242C11.3023 4.04683 11.3333 3.89079 11.3333 3.7332C11.3333 3.57562 11.3023 3.41957 11.2419 3.27398C11.1816 3.12839 11.0933 2.99611 10.9818 2.88468C10.8704 2.77324 10.7381 2.68485 10.5925 2.62455C10.4469 2.56424 10.2909 2.5332 10.1333 2.5332C9.81503 2.5332 9.50981 2.65963 9.28476 2.88468C9.05972 3.10972 8.93329 3.41494 8.93329 3.7332C8.93329 4.05146 9.05972 4.35669 9.28476 4.58173C9.50981 4.80677 9.81503 4.9332 10.1333 4.9332ZM11.3333 7.99987C11.3333 8.31813 11.2069 8.62335 10.9818 8.8484C10.7568 9.07344 10.4516 9.19987 10.1333 9.19987C9.81503 9.19987 9.50981 9.07344 9.28476 8.8484C9.05972 8.62335 8.93329 8.31813 8.93329 7.99987C8.93329 7.68161 9.05972 7.37639 9.28476 7.15134C9.50981 6.9263 9.81503 6.79987 10.1333 6.79987C10.4516 6.79987 10.7568 6.9263 10.9818 7.15134C11.2069 7.37639 11.3333 7.68161 11.3333 7.99987ZM5.86663 9.19987C6.18489 9.19987 6.49011 9.07344 6.71515 8.8484C6.9402 8.62335 7.06663 8.31813 7.06663 7.99987C7.06663 7.68161 6.9402 7.37639 6.71515 7.15134C6.49011 6.9263 6.18489 6.79987 5.86663 6.79987C5.54837 6.79987 5.24314 6.9263 5.0181 7.15134C4.79305 7.37639 4.66663 7.68161 4.66663 7.99987C4.66663 8.31813 4.79305 8.62335 5.0181 8.8484C5.24314 9.07344 5.54837 9.19987 5.86663 9.19987ZM11.3333 12.2665C11.3333 12.5848 11.2069 12.89 10.9818 13.1151C10.7568 13.3401 10.4516 13.4665 10.1333 13.4665C9.81503 13.4665 9.50981 13.3401 9.28476 13.1151C9.05972 12.89 8.93329 12.5848 8.93329 12.2665C8.93329 11.9483 9.05972 11.6431 9.28476 11.418C9.50981 11.193 9.81503 11.0665 10.1333 11.0665C10.4516 11.0665 10.7568 11.193 10.9818 11.418C11.2069 11.6431 11.3333 11.9483 11.3333 12.2665ZM5.86663 13.4665C6.18489 13.4665 6.49011 13.3401 6.71515 13.1151C6.9402 12.89 7.06663 12.5848 7.06663 12.2665C7.06663 11.9483 6.9402 11.6431 6.71515 11.418C6.49011 11.193 6.18489 11.0665 5.86663 11.0665C5.54837 11.0665 5.24314 11.193 5.0181 11.418C4.79305 11.6431 4.66663 11.9483 4.66663 12.2665C4.66663 12.5848 4.79305 12.89 5.0181 13.1151C5.24314 13.3401 5.54837 13.4665 5.86663 13.4665Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevPlayCircle = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <g clip-path=\"url(#clip0_21839_132888)\">\n <path d=\"M7.99967 14.6654C11.6816 14.6654 14.6663 11.6806 14.6663 7.9987C14.6663 4.3168 11.6816 1.33203 7.99967 1.33203C4.31778 1.33203 1.33301 4.3168 1.33301 7.9987C1.33301 11.6806 4.31778 14.6654 7.99967 14.6654Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M6.66634 5.33203L10.6663 7.9987L6.66634 10.6654V5.33203Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_132888\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevPlayCircleMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <g clip-path=\"url(#clip0_21_2356)\">\n <path d=\"M10.0003 18.3346C14.6027 18.3346 18.3337 14.6037 18.3337 10.0013C18.3337 5.39893 14.6027 1.66797 10.0003 1.66797C5.39795 1.66797 1.66699 5.39893 1.66699 10.0013C1.66699 14.6037 5.39795 18.3346 10.0003 18.3346Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M8.33366 6.66797L13.3337 10.0013L8.33366 13.3346V6.66797Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2356\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevUpload = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M14 10V12.6667C14 13.0203 13.8595 13.3594 13.6095 13.6095C13.3594 13.8595 13.0203 14 12.6667 14H3.33333C2.97971 14 2.64057 13.8595 2.39052 13.6095C2.14048 13.3594 2 13.0203 2 12.6667V10M11.3333 5.33333L8 2M8 2L4.66667 5.33333M8 2V10\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevUploadMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M17.5 12.5V15.8333C17.5 16.2754 17.3244 16.6993 17.0118 17.0118C16.6993 17.3244 16.2754 17.5 15.8333 17.5H4.16667C3.72464 17.5 3.30072 17.3244 2.98816 17.0118C2.67559 16.6993 2.5 16.2754 2.5 15.8333V12.5M14.1667 6.66667L10 2.5M10 2.5L5.83333 6.66667M10 2.5V12.5\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevMaximize = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M10 2H14M14 2V6M14 2L9.33333 6.66667M6 14H2M2 14V10M2 14L6.66667 9.33333\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevMaximizeMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M12.5 2.5H17.5M17.5 2.5V7.5M17.5 2.5L11.6667 8.33333M7.5 17.5H2.5M2.5 17.5V12.5M2.5 17.5L8.33333 11.6667\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevArrowUpRight = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M4.66699 11.3346L11.3337 4.66797M11.3337 4.66797H4.66699M11.3337 4.66797V11.3346\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevArrowUpRightMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M5.83301 14.1654L14.1663 5.83203M14.1663 5.83203H5.83301M14.1663 5.83203V14.1654\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevPaperclip = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_133059)\">\n <path d=\"M14.2929 7.36727L8.16621 13.4939C7.41565 14.2445 6.39766 14.6662 5.33621 14.6662C4.27475 14.6662 3.25677 14.2445 2.50621 13.4939C1.75565 12.7434 1.33398 11.7254 1.33398 10.6639C1.33398 9.60248 1.75565 8.58449 2.50621 7.83393L8.63288 1.70726C9.13325 1.20689 9.8119 0.925781 10.5195 0.925781C11.2272 0.925781 11.9058 1.20689 12.4062 1.70726C12.9066 2.20764 13.1877 2.88629 13.1877 3.59393C13.1877 4.30157 12.9066 4.98022 12.4062 5.4806L6.27288 11.6073C6.02269 11.8575 5.68336 11.998 5.32954 11.998C4.97572 11.998 4.6364 11.8575 4.38621 11.6073C4.13602 11.3571 3.99547 11.0178 3.99547 10.6639C3.99547 10.3101 4.13602 9.97079 4.38621 9.7206L10.0462 4.06726\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_133059\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevPaperclipMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M17.8666 9.2081L10.2082 16.8664C9.27005 17.8046 7.99757 18.3317 6.67075 18.3317C5.34393 18.3317 4.07145 17.8046 3.13325 16.8664C2.19505 15.9282 1.66797 14.6558 1.66797 13.3289C1.66797 12.0021 2.19505 10.7296 3.13325 9.79144L10.7916 2.1331C11.4171 1.50763 12.2654 1.15625 13.1499 1.15625C14.0345 1.15625 14.8828 1.50763 15.5082 2.1331C16.1337 2.75857 16.4851 3.60689 16.4851 4.49144C16.4851 5.37598 16.1337 6.2243 15.5082 6.84977L7.84158 14.5081C7.52885 14.8208 7.10469 14.9965 6.66242 14.9965C6.22014 14.9965 5.79598 14.8208 5.48325 14.5081C5.17051 14.1954 4.99482 13.7712 4.99482 13.3289C4.99482 12.8867 5.17051 12.4625 5.48325 12.1498L12.5582 5.0831\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevToolsMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M16.3578 15.3946L16.3578 11.4709C16.3578 11.4138 16.3466 11.3572 16.3247 11.3044C16.3028 11.2517 16.2708 11.2037 16.2304 11.1633C16.19 11.1229 16.142 11.0908 16.0892 11.069C16.0365 11.0471 15.9799 11.0359 15.9227 11.0359H13.2571L13.259 11.0352C13.2004 11.0329 13.1419 11.0424 13.0871 11.0632C13.0323 11.084 12.9822 11.1156 12.9399 11.1563C12.8977 11.1969 12.864 11.2457 12.8411 11.2996C12.8181 11.3536 12.8063 11.4117 12.8064 11.4703L12.8064 15.3953M14.5837 11.0315V5.83144M16.3579 15.1003L16.3579 17.0628C16.358 17.1214 16.3462 17.1795 16.3232 17.2334C16.3003 17.2874 16.2666 17.3362 16.2244 17.3768C16.1821 17.4174 16.132 17.4491 16.0772 17.4699C16.0224 17.4907 15.9639 17.5002 15.9053 17.4978L15.9072 17.4972H13.2416C13.1844 17.4972 13.1278 17.486 13.0751 17.4641C13.0223 17.4422 12.9743 17.4102 12.9339 17.3698C12.8935 17.3294 12.8615 17.2814 12.8396 17.2286C12.8177 17.1758 12.8065 17.1193 12.8065 17.0621L12.8065 15.1003M5.59605 9.88524L5.59605 15.9265C5.59596 16.0853 5.62718 16.2425 5.68791 16.3893C5.74864 16.536 5.8377 16.6693 5.94999 16.7816C6.06228 16.8939 6.19561 16.983 6.34234 17.0437C6.48908 17.1044 6.64634 17.1356 6.80515 17.1356C7.12558 17.1355 7.43287 17.0082 7.65945 16.7816C7.88603 16.555 8.01334 16.2477 8.01339 15.9273L8.01254 9.88524C9.29298 9.32598 10.4295 8.04852 10.4295 6.56172C10.4299 5.07534 9.22163 3.54068 8.01254 3.23905L8.01296 5.83711L6.80429 7.28675L5.59605 5.83669L5.59605 3.23905C4.38738 3.54111 3.17871 5.07534 3.17871 6.56214C3.17914 8.04852 4.3156 9.32598 5.59605 9.88524ZM14.9913 5.5635L14.125 5.5635L13.2586 4.69714L13.6918 2.53125L15.4245 2.53125L15.8577 4.69714L14.9913 5.5635Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevPartsMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M17.208 7.8125L16.333 6.9375L17.2705 6L13.9997 2.72917L13.0622 3.66667L12.1663 2.77083L12.7913 2.125C13.1108 1.80556 13.5066 1.64931 13.9788 1.65625C14.4511 1.66319 14.8469 1.82639 15.1663 2.14583L17.8538 4.83333C18.1733 5.15278 18.333 5.54514 18.333 6.01042C18.333 6.47569 18.1733 6.86806 17.8538 7.1875L17.208 7.8125ZM7.20801 17.8333C6.88856 18.1528 6.4962 18.3125 6.03092 18.3125C5.56565 18.3125 5.17329 18.1528 4.85384 17.8333L1.87467 14.8542C1.63856 14.6128 1.52051 14.3164 1.52051 13.9648C1.52051 13.6133 1.63856 13.3194 1.87467 13.0833L2.79134 12.1667L3.68717 13.0417L2.74967 13.9792L6.02051 17.25L6.95801 16.3125L7.83301 17.2083L7.20801 17.8333ZM15.4788 11.4167L17.2497 9.64583L10.3538 2.75L8.58301 4.52083L15.4788 11.4167ZM9.64551 17.25L11.4372 15.4583L4.54134 8.5625L2.74967 10.3542L9.64551 17.25ZM9.83301 12.0833L12.1038 9.8125L10.1872 7.89583L7.91634 10.1667L9.83301 12.0833ZM10.5205 18.125C10.2853 18.3611 9.99388 18.4792 9.64619 18.4792C9.29851 18.4792 9.00662 18.3611 8.77051 18.125L1.87467 11.2292C1.63856 10.994 1.52051 10.7025 1.52051 10.3549C1.52051 10.0072 1.63856 9.71528 1.87467 9.47917L3.64551 7.6875C3.88687 7.45139 4.18332 7.33333 4.53486 7.33333C4.8864 7.33333 5.18023 7.45139 5.41634 7.6875L7.02051 9.29167L9.31217 7L7.70801 5.39583C7.4719 5.16064 7.35384 4.8692 7.35384 4.52152C7.35384 4.17384 7.4719 3.88194 7.70801 3.64583L9.47884 1.85417C9.7202 1.61806 10.0167 1.5 10.3682 1.5C10.7197 1.5 11.0136 1.61806 11.2497 1.85417L18.1455 8.75C18.3816 8.99136 18.4997 9.28781 18.4997 9.63935C18.4997 9.9909 18.3816 10.2847 18.1455 10.5208L16.3538 12.2917C16.1186 12.5278 15.8272 12.6458 15.4795 12.6458C15.1318 12.6458 14.84 12.5278 14.6038 12.2917L12.9997 10.6875L10.708 12.9792L12.3122 14.5833C12.5483 14.8247 12.6663 15.1211 12.6663 15.4727C12.6663 15.8242 12.5483 16.1181 12.3122 16.3542L10.5205 18.125Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\n\nconst duckDevPrimitive = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M3.84376 6.66797L3.31889 6.87791C1.99497 7.40748 1.33301 7.67227 1.33301 8.0013C1.33301 8.33033 1.99497 8.59512 3.31889 9.12469L5.19121 9.87361C6.51513 10.4032 7.17709 10.668 7.99967 10.668C8.82226 10.668 9.48422 10.4032 10.8081 9.87361L12.6805 9.12469C14.0044 8.59512 14.6663 8.33033 14.6663 8.0013C14.6663 7.67227 14.0044 7.40748 12.6805 6.87791L12.1556 6.66797M3.84376 9.33464L3.31889 9.54458C1.99497 10.0742 1.33301 10.3389 1.33301 10.668C1.33301 10.997 1.99497 11.2618 3.31889 11.7914L5.19121 12.5403C6.51513 13.0699 7.17709 13.3346 7.99967 13.3346C8.82226 13.3346 9.48422 13.0699 10.8081 12.5403L12.6805 11.7914C14.0044 11.2618 14.6663 10.997 14.6663 10.668C14.6663 10.3389 14.0044 10.0742 12.6805 9.54458L12.1556 9.33464M10.8081 7.20695L12.6805 6.45802C14.0044 5.92845 14.6663 5.66367 14.6663 5.33464C14.6663 5.0056 14.0044 4.74082 12.6805 4.21125L10.8081 3.46232C9.48422 2.93275 8.82226 2.66797 7.99967 2.66797C7.17709 2.66797 6.51513 2.93275 5.19121 3.46232L3.31889 4.21125C1.99497 4.74082 1.33301 5.0056 1.33301 5.33464C1.33301 5.66367 1.99497 5.92845 3.31889 6.45802L5.19121 7.20695C6.51513 7.73652 7.17709 8.0013 7.99967 8.0013C8.82226 8.0013 9.48422 7.73652 10.8081 7.20695Z\" stroke=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevPrimitiveMedium = `\n<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M4.80543 8.33203L4.14935 8.59446C2.49445 9.25643 1.66699 9.58741 1.66699 9.9987C1.66699 10.41 2.49445 10.741 4.14935 11.4029L6.48974 12.3391C8.14465 13.001 8.9721 13.332 10.0003 13.332C11.0286 13.332 11.856 13.001 13.5109 12.3391L15.8513 11.4029C17.5062 10.741 18.3337 10.41 18.3337 9.9987C18.3337 9.58741 17.5062 9.25643 15.8513 8.59446L15.1952 8.33203M4.80543 11.6654L4.14935 11.9278C2.49445 12.5898 1.66699 12.9207 1.66699 13.332C1.66699 13.7433 2.49445 14.0743 4.14935 14.7363L6.48974 15.6724C8.14465 16.3344 8.9721 16.6654 10.0003 16.6654C11.0286 16.6654 11.856 16.3344 13.5109 15.6724L15.8513 14.7363C17.5062 14.0743 18.3337 13.7433 18.3337 13.332C18.3337 12.9207 17.5062 12.5898 15.8513 11.9278L15.1952 11.6654M13.5109 9.00575L15.8513 8.0696C17.5062 7.40764 18.3337 7.07666 18.3337 6.66536C18.3337 6.25407 17.5062 5.92309 15.8513 5.26113L13.5109 4.32497C11.856 3.66301 11.0286 3.33203 10.0003 3.33203C8.9721 3.33203 8.14465 3.66301 6.48974 4.32497L4.14935 5.26113C2.49445 5.92309 1.66699 6.25407 1.66699 6.66536C1.66699 7.07666 2.49445 7.40764 4.14935 8.0696L6.48974 9.00575C8.14465 9.66772 8.9721 9.9987 10.0003 9.9987C11.0286 9.9987 11.856 9.66772 13.5109 9.00575Z\" stroke=\"#595E6A\" stroke-width=\"1.5\"/>\n</svg>\n`;\n\nconst duckDevTank = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M9.34494 2.97285L9.51297 3.44377L9.34494 2.97285ZM4.01161 4.8758L3.84358 4.40488V4.40488L4.01161 4.8758ZM9.64612 6.97978C9.45086 7.17504 9.45086 7.49162 9.64612 7.68689C9.84138 7.88215 10.158 7.88215 10.3532 7.68689L9.64612 6.97978ZM11.0199 7.02022C11.2152 6.82496 11.2152 6.50838 11.0199 6.31311C10.8246 6.11785 10.508 6.11785 10.3128 6.31311L11.0199 7.02022ZM5.64612 7.68689C5.84138 7.88215 6.15797 7.88215 6.35323 7.68689C6.54849 7.49162 6.54849 7.17504 6.35323 6.97978L5.64612 7.68689ZM5.68656 6.31311C5.4913 6.11785 5.17472 6.11785 4.97945 6.31311C4.78419 6.50838 4.78419 6.82496 4.97945 7.02022L5.68656 6.31311ZM10.3532 10.9798C10.158 10.7845 9.84138 10.7845 9.64612 10.9798C9.45086 11.175 9.45086 11.4916 9.64612 11.6869L10.3532 10.9798ZM10.3128 12.3536C10.508 12.5488 10.8246 12.5488 11.0199 12.3536C11.2152 12.1583 11.2152 11.8417 11.0199 11.6464L10.3128 12.3536ZM6.35323 11.6869C6.54849 11.4916 6.54849 11.175 6.35323 10.9798C6.15797 10.7845 5.84138 10.7845 5.64612 10.9798L6.35323 11.6869ZM4.97945 11.6464C4.78419 11.8417 4.78419 12.1583 4.97945 12.3536C5.17472 12.5488 5.4913 12.5488 5.68656 12.3536L4.97945 11.6464ZM6.52445 2.70458L6.39262 3.18689L6.39262 3.18689L6.52445 2.70458ZM6.81224 3.61846C6.8824 3.88554 7.15579 4.04518 7.42287 3.97502C7.68995 3.90486 7.84959 3.63147 7.77943 3.36439L6.81224 3.61846ZM2.83301 4.70673C2.83301 4.98287 3.05687 5.20673 3.33301 5.20673C3.60915 5.20673 3.83301 4.98287 3.83301 4.70673H2.83301ZM3.55844 3.10202L3.15887 2.80144L3.55844 3.10202ZM3.75981 2.89661L3.45164 2.50288L3.45164 2.50288L3.75981 2.89661ZM4.17963 5.34672L9.51297 3.44377L9.17691 2.50193L3.84358 4.40488L4.17963 5.34672ZM14.1663 6.82167V10.5889H15.1663V6.82167H14.1663ZM10.6663 14.1667H5.33301V15.1667H10.6663V14.1667ZM1.83301 10.5889V8.72462H0.833008V10.5889H1.83301ZM5.33301 14.1667C4.3758 14.1667 3.70915 14.1656 3.20636 14.0967C2.71895 14.0298 2.46065 13.9079 2.27573 13.7194L1.56185 14.4196C1.96272 14.8283 2.46872 15.0049 3.07057 15.0874C3.65703 15.1678 4.4046 15.1667 5.33301 15.1667V14.1667ZM0.833008 10.5889C0.833008 11.5362 0.831985 12.296 0.910523 12.8915C0.99083 13.5004 1.1623 14.0123 1.56185 14.4196L2.27573 13.7194C2.0895 13.5295 1.96808 13.2622 1.90194 12.7607C1.83403 12.2458 1.83301 11.5639 1.83301 10.5889H0.833008ZM14.1663 10.5889C14.1663 11.5639 14.1653 12.2458 14.0974 12.7607C14.0313 13.2622 13.9098 13.5295 13.7236 13.7194L14.4375 14.4196C14.837 14.0123 15.0085 13.5004 15.0888 12.8915C15.1674 12.296 15.1663 11.5362 15.1663 10.5889H14.1663ZM10.6663 15.1667C11.5947 15.1667 12.3423 15.1678 12.9288 15.0874C13.5306 15.0049 14.0366 14.8283 14.4375 14.4196L13.7236 13.7194C13.5387 13.9079 13.2804 14.0298 12.793 14.0967C12.2902 14.1656 11.6236 14.1667 10.6663 14.1667V15.1667ZM9.51297 3.44377C10.7405 3.00577 11.6078 2.69774 12.2738 2.56663C12.9278 2.4379 13.2733 2.50409 13.5306 2.69018L14.1166 1.8799C13.5312 1.45648 12.8494 1.43413 12.0807 1.58546C11.324 1.73442 10.3733 2.07505 9.17691 2.50193L9.51297 3.44377ZM15.1663 6.82167C15.1663 5.52857 15.1676 4.50363 15.0559 3.7288C14.9428 2.94428 14.6995 2.30144 14.1166 1.8799L13.5306 2.69018C13.7905 2.87816 13.9685 3.1946 14.0661 3.87149C14.1651 4.55808 14.1663 5.4967 14.1663 6.82167H15.1663ZM3.84358 4.40488C3.20745 4.63185 2.69046 4.81551 2.28924 5.01272C1.87606 5.21582 1.54145 5.45346 1.29145 5.81269L2.11224 6.38392C2.23107 6.21317 2.40437 6.07041 2.73037 5.91017C3.06834 5.74404 3.52181 5.58144 4.17963 5.34672L3.84358 4.40488ZM1.83301 8.72462C1.83301 8.01467 1.83372 7.52297 1.87606 7.14124C1.91707 6.7716 1.99287 6.55543 2.11224 6.38392L1.29145 5.81269C1.04198 6.17114 0.933367 6.56935 0.88216 7.03099C0.832295 7.48053 0.833008 8.03701 0.833008 8.72462H1.83301ZM7.99967 10.8333C7.51413 10.8333 7.20028 10.8323 6.96903 10.8012C6.75216 10.772 6.68418 10.7249 6.64612 10.6869L5.93901 11.394C6.19384 11.6488 6.50802 11.7482 6.83578 11.7923C7.14915 11.8344 7.5424 11.8333 7.99967 11.8333V10.8333ZM5.49967 9.33333C5.49967 9.7906 5.49861 10.1839 5.54074 10.4972C5.58481 10.825 5.68418 11.1392 5.93901 11.394L6.64612 10.6869C6.60806 10.6488 6.56098 10.5809 6.53183 10.364C6.50074 10.1327 6.49967 9.81887 6.49967 9.33333H5.49967ZM9.49967 9.33333C9.49967 9.81887 9.49861 10.1327 9.46752 10.364C9.43836 10.5809 9.39129 10.6488 9.35323 10.6869L10.0603 11.394C10.3152 11.1392 10.4145 10.825 10.4586 10.4972C10.5007 10.1839 10.4997 9.7906 10.4997 9.33333H9.49967ZM7.99967 11.8333C8.45694 11.8333 8.85019 11.8344 9.16357 11.7923C9.49133 11.7482 9.8055 11.6488 10.0603 11.394L9.35323 10.6869C9.31517 10.7249 9.24719 10.772 9.03032 10.8012C8.79907 10.8323 8.48521 10.8333 7.99967 10.8333V11.8333ZM7.99967 7.83333C8.48521 7.83333 8.79907 7.8344 9.03032 7.86549C9.24719 7.89464 9.31517 7.94172 9.35323 7.97978L10.0603 7.27267C9.8055 7.01784 9.49133 6.91847 9.16357 6.8744C8.85019 6.83227 8.45694 6.83333 7.99967 6.83333V7.83333ZM10.4997 9.33333C10.4997 8.87606 10.5007 8.48281 10.4586 8.16944C10.4145 7.84168 10.3152 7.5275 10.0603 7.27267L9.35323 7.97978C9.39129 8.01784 9.43836 8.08582 9.46752 8.30269C9.49861 8.53394 9.49967 8.84779 9.49967 9.33333H10.4997ZM7.99967 6.83333C7.5424 6.83333 7.14915 6.83227 6.83578 6.8744C6.50802 6.91847 6.19384 7.01784 5.93901 7.27267L6.64612 7.97978C6.68418 7.94172 6.75216 7.89464 6.96903 7.86549C7.20028 7.8344 7.51413 7.83333 7.99967 7.83333V6.83333ZM6.49967 9.33333C6.49967 8.84779 6.50074 8.53394 6.53183 8.30269C6.56098 8.08582 6.60806 8.01784 6.64612 7.97978L5.93901 7.27267C5.68418 7.5275 5.58481 7.84168 5.54074 8.16944C5.49861 8.48281 5.49967 8.87606 5.49967 9.33333H6.49967ZM10.3532 7.68689L11.0199 7.02022L10.3128 6.31311L9.64612 6.97978L10.3532 7.68689ZM6.35323 6.97978L5.68656 6.31311L4.97945 7.02022L5.64612 7.68689L6.35323 6.97978ZM9.64612 11.6869L10.3128 12.3536L11.0199 11.6464L10.3532 10.9798L9.64612 11.6869ZM5.64612 10.9798L4.97945 11.6464L5.68656 12.3536L6.35323 11.6869L5.64612 10.9798ZM5.33301 3.16667H5.87846V2.16667H5.33301V3.16667ZM5.87846 3.16667C6.24941 3.16667 6.33493 3.17112 6.39262 3.18689L6.65627 2.22227C6.43651 2.16221 6.18386 2.16667 5.87846 2.16667V3.16667ZM6.39262 3.18689C6.59312 3.24169 6.75578 3.4035 6.81224 3.61846L7.77943 3.36439C7.63415 2.81133 7.2087 2.37326 6.65627 2.22227L6.39262 3.18689ZM3.83301 4.70673C3.83301 4.26031 3.83372 3.96654 3.85816 3.74542C3.88155 3.53375 3.92144 3.4512 3.95801 3.4026L3.15887 2.80144C2.97001 3.05251 2.89718 3.33731 2.86421 3.63557C2.83229 3.92438 2.83301 4.28312 2.83301 4.70673H3.83301ZM5.33301 2.16667C4.9184 2.16667 4.56476 2.16589 4.27961 2.19868C3.98373 2.23271 3.70035 2.30821 3.45164 2.50288L4.06799 3.29035C4.11307 3.25507 4.18982 3.2156 4.39385 3.19214C4.60862 3.16744 4.89468 3.16667 5.33301 3.16667V2.16667ZM3.95801 3.4026C3.98992 3.36018 4.02694 3.32248 4.06799 3.29035L3.45164 2.50288C3.34142 2.58915 3.24304 2.68956 3.15887 2.80144L3.95801 3.4026Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevTankMedium = `\n<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M9.34494 2.97285L9.51297 3.44377L9.34494 2.97285ZM4.01161 4.8758L3.84358 4.40488V4.40488L4.01161 4.8758ZM9.64612 6.97978C9.45086 7.17504 9.45086 7.49162 9.64612 7.68689C9.84138 7.88215 10.158 7.88215 10.3532 7.68689L9.64612 6.97978ZM11.0199 7.02022C11.2152 6.82496 11.2152 6.50838 11.0199 6.31311C10.8246 6.11785 10.508 6.11785 10.3128 6.31311L11.0199 7.02022ZM5.64612 7.68689C5.84138 7.88215 6.15797 7.88215 6.35323 7.68689C6.54849 7.49162 6.54849 7.17504 6.35323 6.97978L5.64612 7.68689ZM5.68656 6.31311C5.4913 6.11785 5.17472 6.11785 4.97945 6.31311C4.78419 6.50838 4.78419 6.82496 4.97945 7.02022L5.68656 6.31311ZM10.3532 10.9798C10.158 10.7845 9.84138 10.7845 9.64612 10.9798C9.45086 11.175 9.45086 11.4916 9.64612 11.6869L10.3532 10.9798ZM10.3128 12.3536C10.508 12.5488 10.8246 12.5488 11.0199 12.3536C11.2152 12.1583 11.2152 11.8417 11.0199 11.6464L10.3128 12.3536ZM6.35323 11.6869C6.54849 11.4916 6.54849 11.175 6.35323 10.9798C6.15797 10.7845 5.84138 10.7845 5.64612 10.9798L6.35323 11.6869ZM4.97945 11.6464C4.78419 11.8417 4.78419 12.1583 4.97945 12.3536C5.17472 12.5488 5.4913 12.5488 5.68656 12.3536L4.97945 11.6464ZM6.52445 2.70458L6.39262 3.18689L6.39262 3.18689L6.52445 2.70458ZM6.81224 3.61846C6.8824 3.88554 7.15579 4.04518 7.42287 3.97502C7.68995 3.90486 7.84959 3.63147 7.77943 3.36439L6.81224 3.61846ZM2.83301 4.70673C2.83301 4.98287 3.05687 5.20673 3.33301 5.20673C3.60915 5.20673 3.83301 4.98287 3.83301 4.70673H2.83301ZM3.55844 3.10202L3.15887 2.80144L3.55844 3.10202ZM3.75981 2.89661L3.45164 2.50288L3.45164 2.50288L3.75981 2.89661ZM4.17963 5.34672L9.51297 3.44377L9.17691 2.50193L3.84358 4.40488L4.17963 5.34672ZM14.1663 6.82167V10.5889H15.1663V6.82167H14.1663ZM10.6663 14.1667H5.33301V15.1667H10.6663V14.1667ZM1.83301 10.5889V8.72462H0.833008V10.5889H1.83301ZM5.33301 14.1667C4.3758 14.1667 3.70915 14.1656 3.20636 14.0967C2.71895 14.0298 2.46065 13.9079 2.27573 13.7194L1.56185 14.4196C1.96272 14.8283 2.46872 15.0049 3.07057 15.0874C3.65703 15.1678 4.4046 15.1667 5.33301 15.1667V14.1667ZM0.833008 10.5889C0.833008 11.5362 0.831985 12.296 0.910523 12.8915C0.99083 13.5004 1.1623 14.0123 1.56185 14.4196L2.27573 13.7194C2.0895 13.5295 1.96808 13.2622 1.90194 12.7607C1.83403 12.2458 1.83301 11.5639 1.83301 10.5889H0.833008ZM14.1663 10.5889C14.1663 11.5639 14.1653 12.2458 14.0974 12.7607C14.0313 13.2622 13.9098 13.5295 13.7236 13.7194L14.4375 14.4196C14.837 14.0123 15.0085 13.5004 15.0888 12.8915C15.1674 12.296 15.1663 11.5362 15.1663 10.5889H14.1663ZM10.6663 15.1667C11.5947 15.1667 12.3423 15.1678 12.9288 15.0874C13.5306 15.0049 14.0366 14.8283 14.4375 14.4196L13.7236 13.7194C13.5387 13.9079 13.2804 14.0298 12.793 14.0967C12.2902 14.1656 11.6236 14.1667 10.6663 14.1667V15.1667ZM9.51297 3.44377C10.7405 3.00577 11.6078 2.69774 12.2738 2.56663C12.9278 2.4379 13.2733 2.50409 13.5306 2.69018L14.1166 1.8799C13.5312 1.45648 12.8494 1.43413 12.0807 1.58546C11.324 1.73442 10.3733 2.07505 9.17691 2.50193L9.51297 3.44377ZM15.1663 6.82167C15.1663 5.52857 15.1676 4.50363 15.0559 3.7288C14.9428 2.94428 14.6995 2.30144 14.1166 1.8799L13.5306 2.69018C13.7905 2.87816 13.9685 3.1946 14.0661 3.87149C14.1651 4.55808 14.1663 5.4967 14.1663 6.82167H15.1663ZM3.84358 4.40488C3.20745 4.63185 2.69046 4.81551 2.28924 5.01272C1.87606 5.21582 1.54145 5.45346 1.29145 5.81269L2.11224 6.38392C2.23107 6.21317 2.40437 6.07041 2.73037 5.91017C3.06834 5.74404 3.52181 5.58144 4.17963 5.34672L3.84358 4.40488ZM1.83301 8.72462C1.83301 8.01467 1.83372 7.52297 1.87606 7.14124C1.91707 6.7716 1.99287 6.55543 2.11224 6.38392L1.29145 5.81269C1.04198 6.17114 0.933367 6.56935 0.88216 7.03099C0.832295 7.48053 0.833008 8.03701 0.833008 8.72462H1.83301ZM7.99967 10.8333C7.51413 10.8333 7.20028 10.8323 6.96903 10.8012C6.75216 10.772 6.68418 10.7249 6.64612 10.6869L5.93901 11.394C6.19384 11.6488 6.50802 11.7482 6.83578 11.7923C7.14915 11.8344 7.5424 11.8333 7.99967 11.8333V10.8333ZM5.49967 9.33333C5.49967 9.7906 5.49861 10.1839 5.54074 10.4972C5.58481 10.825 5.68418 11.1392 5.93901 11.394L6.64612 10.6869C6.60806 10.6488 6.56098 10.5809 6.53183 10.364C6.50074 10.1327 6.49967 9.81887 6.49967 9.33333H5.49967ZM9.49967 9.33333C9.49967 9.81887 9.49861 10.1327 9.46752 10.364C9.43836 10.5809 9.39129 10.6488 9.35323 10.6869L10.0603 11.394C10.3152 11.1392 10.4145 10.825 10.4586 10.4972C10.5007 10.1839 10.4997 9.7906 10.4997 9.33333H9.49967ZM7.99967 11.8333C8.45694 11.8333 8.85019 11.8344 9.16357 11.7923C9.49133 11.7482 9.8055 11.6488 10.0603 11.394L9.35323 10.6869C9.31517 10.7249 9.24719 10.772 9.03032 10.8012C8.79907 10.8323 8.48521 10.8333 7.99967 10.8333V11.8333ZM7.99967 7.83333C8.48521 7.83333 8.79907 7.8344 9.03032 7.86549C9.24719 7.89464 9.31517 7.94172 9.35323 7.97978L10.0603 7.27267C9.8055 7.01784 9.49133 6.91847 9.16357 6.8744C8.85019 6.83227 8.45694 6.83333 7.99967 6.83333V7.83333ZM10.4997 9.33333C10.4997 8.87606 10.5007 8.48281 10.4586 8.16944C10.4145 7.84168 10.3152 7.5275 10.0603 7.27267L9.35323 7.97978C9.39129 8.01784 9.43836 8.08582 9.46752 8.30269C9.49861 8.53394 9.49967 8.84779 9.49967 9.33333H10.4997ZM7.99967 6.83333C7.5424 6.83333 7.14915 6.83227 6.83578 6.8744C6.50802 6.91847 6.19384 7.01784 5.93901 7.27267L6.64612 7.97978C6.68418 7.94172 6.75216 7.89464 6.96903 7.86549C7.20028 7.8344 7.51413 7.83333 7.99967 7.83333V6.83333ZM6.49967 9.33333C6.49967 8.84779 6.50074 8.53394 6.53183 8.30269C6.56098 8.08582 6.60806 8.01784 6.64612 7.97978L5.93901 7.27267C5.68418 7.5275 5.58481 7.84168 5.54074 8.16944C5.49861 8.48281 5.49967 8.87606 5.49967 9.33333H6.49967ZM10.3532 7.68689L11.0199 7.02022L10.3128 6.31311L9.64612 6.97978L10.3532 7.68689ZM6.35323 6.97978L5.68656 6.31311L4.97945 7.02022L5.64612 7.68689L6.35323 6.97978ZM9.64612 11.6869L10.3128 12.3536L11.0199 11.6464L10.3532 10.9798L9.64612 11.6869ZM5.64612 10.9798L4.97945 11.6464L5.68656 12.3536L6.35323 11.6869L5.64612 10.9798ZM5.33301 3.16667H5.87846V2.16667H5.33301V3.16667ZM5.87846 3.16667C6.24941 3.16667 6.33493 3.17112 6.39262 3.18689L6.65627 2.22227C6.43651 2.16221 6.18386 2.16667 5.87846 2.16667V3.16667ZM6.39262 3.18689C6.59312 3.24169 6.75578 3.4035 6.81224 3.61846L7.77943 3.36439C7.63415 2.81133 7.2087 2.37326 6.65627 2.22227L6.39262 3.18689ZM3.83301 4.70673C3.83301 4.26031 3.83372 3.96654 3.85816 3.74542C3.88155 3.53375 3.92144 3.4512 3.95801 3.4026L3.15887 2.80144C2.97001 3.05251 2.89718 3.33731 2.86421 3.63557C2.83229 3.92438 2.83301 4.28312 2.83301 4.70673H3.83301ZM5.33301 2.16667C4.9184 2.16667 4.56476 2.16589 4.27961 2.19868C3.98373 2.23271 3.70035 2.30821 3.45164 2.50288L4.06799 3.29035C4.11307 3.25507 4.18982 3.2156 4.39385 3.19214C4.60862 3.16744 4.89468 3.16667 5.33301 3.16667V2.16667ZM3.95801 3.4026C3.98992 3.36018 4.02694 3.32248 4.06799 3.29035L3.45164 2.50288C3.34142 2.58915 3.24304 2.68956 3.15887 2.80144L3.95801 3.4026Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevVariant = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M4.9 4.90078C6.36135 3.43943 7.09203 2.70875 8 2.70875C8.90797 2.70875 9.63865 3.43943 11.1 4.90078C12.5614 6.36214 13.292 7.09281 13.292 8.00078C13.292 8.90875 12.5614 9.63943 11.1 11.1008C9.63865 12.5621 8.90797 13.2928 8 13.2928C7.09203 13.2928 6.36135 12.5621 4.9 11.1008C3.43865 9.63943 2.70797 8.90875 2.70797 8.00078C2.70797 7.09281 3.43865 6.36214 4.9 4.90078Z\" stroke=\"#595E6A\" stroke-width=\"1.5\"/>\n</svg>\n`;\n\nconst duckDevVariantMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M6.125 6.125C7.95169 4.29831 8.86504 3.38496 10 3.38496C11.135 3.38496 12.0483 4.29831 13.875 6.125C15.7017 7.95169 16.615 8.86504 16.615 10C16.615 11.135 15.7017 12.0483 13.875 13.875C12.0483 15.7017 11.135 16.615 10 16.615C8.86504 16.615 7.95169 15.7017 6.125 13.875C4.29831 12.0483 3.38496 11.135 3.38496 10C3.38496 8.86504 4.29831 7.95169 6.125 6.125Z\" stroke=\"#595E6A\" stroke-width=\"1.5\"/>\n</svg>\n`;\n\nconst duckDevChecklist = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M13.3359 3.33268H15.0026C15.4446 3.33268 15.8686 3.50828 16.1811 3.82084C16.4937 4.1334 16.6693 4.55732 16.6693 4.99935V16.666C16.6693 17.108 16.4937 17.532 16.1811 17.8445C15.8686 18.1571 15.4446 18.3327 15.0026 18.3327H5.0026C4.56058 18.3327 4.13665 18.1571 3.82409 17.8445C3.51153 17.532 3.33594 17.108 3.33594 16.666V4.99935C3.33594 4.55732 3.51153 4.1334 3.82409 3.82084C4.13665 3.50828 4.56058 3.33268 5.0026 3.33268H6.66927M7.5026 1.66602H12.5026C12.9628 1.66602 13.3359 2.03911 13.3359 2.49935V4.16602C13.3359 4.62625 12.9628 4.99935 12.5026 4.99935H7.5026C7.04237 4.99935 6.66927 4.62625 6.66927 4.16602V2.49935C6.66927 2.03911 7.04237 1.66602 7.5026 1.66602Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M7.5 11.168L8.92857 12.5013L12.5 9.16797\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevRefreshCcwMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M0.833008 3.33527V8.33527M0.833008 8.33527H5.83301M0.833008 8.33527L4.69967 4.70193C5.5953 3.80586 6.70332 3.15127 7.92035 2.79925C9.13738 2.44722 10.4238 2.40923 11.6594 2.68882C12.8951 2.96841 14.0398 3.55646 14.9868 4.39812C15.9337 5.23977 16.652 6.30759 17.0747 7.50193M19.1663 16.6686V11.6686M19.1663 11.6686H14.1663M19.1663 11.6686L15.2997 15.3019C14.4041 16.198 13.296 16.8526 12.079 17.2046C10.862 17.5567 9.5756 17.5946 8.33991 17.3151C7.10423 17.0355 5.95951 16.4474 5.01256 15.6058C4.06562 14.7641 3.34731 13.6963 2.92467 12.5019\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevRefreshCcw = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <g clip-path=\"url(#clip0_21839_133127)\">\n <path d=\"M0.666992 2.66509V6.66509M0.666992 6.66509H4.66699M0.666992 6.66509L3.76033 3.75842C4.47682 3.04157 5.36324 2.51789 6.33687 2.23627C7.31049 1.95465 8.33959 1.92426 9.32813 2.14793C10.3167 2.3716 11.2325 2.84205 11.99 3.51537C12.7476 4.18869 13.3222 5.04295 13.6603 5.99842M15.3337 13.3318V9.33176M15.3337 9.33176H11.3337M15.3337 9.33176L12.2403 12.2384C11.5238 12.9553 10.6374 13.479 9.66379 13.7606C8.69016 14.0422 7.66106 14.0726 6.67252 13.8489C5.68397 13.6252 4.76819 13.1548 4.01064 12.4815C3.25308 11.8082 2.67844 10.9539 2.34033 9.99842\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_133127\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n</svg>\n`;\n\nconst duckDevBarChartMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M10 16.6654V8.33203M15 16.6654V3.33203M5 16.6654V13.332\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevBarChart = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M8 13.3346V6.66797M12 13.3346V2.66797M4 13.3346V10.668\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevCurvedArrow = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" >\n <path d=\"M9.00033 5.66797L12.3337 9.0013M12.3337 9.0013L9.00033 12.3346M12.3337 9.0013L4.33366 9.0013C3.62641 9.0013 2.94814 8.72035 2.44804 8.22025C1.94794 7.72016 1.66699 7.04188 1.66699 6.33464L1.66699 1.66797\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevBulletMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"21\" height=\"21\" viewBox=\"0 0 21 21\" fill=\"none\">\n <circle cx=\"10.0488\" cy=\"10.5\" r=\"5\" fill=\"#DCDEE3\"/>\n</svg>\n`;\n\nconst duckDevBulletFillMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"21\" height=\"21\" viewBox=\"0 0 21 21\" fill=\"none\">\n <circle opacity=\"0.2\" cx=\"10.0488\" cy=\"10.5\" r=\"8\" fill=\"#0099FF\"/>\n <circle cx=\"10.0488\" cy=\"10.5\" r=\"4\" fill=\"#0099FF\"/>\n</svg>\n`;\nconst duckDevArrowRight = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M3.33301 7.9987H12.6663M12.6663 7.9987L7.99967 3.33203M12.6663 7.9987L7.99967 12.6654\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevArrowRightMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M4.16699 10.0013H15.8337M15.8337 10.0013L10.0003 4.16797M15.8337 10.0013L10.0003 15.8346\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>\n`;\n\nconst duckDevForkLift = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\">\n <path d=\"M13.3996 9.63322C13.731 9.63322 13.9996 9.36459 13.9996 9.03322C13.9996 8.70185 13.731 8.43322 13.3996 8.43322V9.63322ZM11.0237 0.890625C11.0237 0.559254 10.755 0.290625 10.4237 0.290625C10.0923 0.290625 9.82366 0.559254 9.82366 0.890625H11.0237ZM7.04311 1.7553C7.37448 1.7553 7.64311 1.48667 7.64311 1.1553C7.64311 0.823927 7.37448 0.555298 7.04311 0.555298V1.7553ZM4.76005 5.12275L5.18432 4.69849V4.69849L4.76005 5.12275ZM3.14066 8.88596C3.14066 9.42197 2.70614 9.85649 2.17013 9.85649V11.0565C3.36888 11.0565 4.34066 10.0847 4.34066 8.88596H3.14066ZM2.17013 9.85649C1.63413 9.85649 1.19961 9.42197 1.19961 8.88596H-0.000390649C-0.000390649 10.0847 0.971386 11.0565 2.17013 11.0565V9.85649ZM1.19961 8.88596C1.19961 8.34996 1.63413 7.91544 2.17013 7.91544V6.71544C0.971386 6.71544 -0.000390649 7.68721 -0.000390649 8.88596H1.19961ZM2.17013 7.91544C2.70614 7.91544 3.14066 8.34996 3.14066 8.88596H4.34066C4.34066 7.68721 3.36888 6.71544 2.17013 6.71544V7.91544ZM10.2985 8.63167C10.2985 9.16767 9.86399 9.60219 9.32799 9.60219V10.8022C10.5267 10.8022 11.4985 9.83042 11.4985 8.63167H10.2985ZM9.32799 9.60219C8.79198 9.60219 8.35746 9.16767 8.35746 8.63167H7.15746C7.15746 9.83042 8.12924 10.8022 9.32799 10.8022V9.60219ZM8.35746 8.63167C8.35746 8.09566 8.79198 7.66114 9.32799 7.66114V6.46114C8.12924 6.46114 7.15746 7.43292 7.15746 8.63167H8.35746ZM9.32799 7.66114C9.86399 7.66114 10.2985 8.09566 10.2985 8.63167H11.4985C11.4985 7.43292 10.5267 6.46114 9.32799 6.46114V7.66114ZM9.43988 6.85844L6.77368 0.759282L5.67415 1.23993L8.34034 7.33909L9.43988 6.85844ZM3.77699 9.63322H7.75811V8.43322H3.77699V9.63322ZM10.6481 9.63322H13.3996V8.43322H10.6481V9.63322ZM9.82366 0.890625V7.42831H11.0237V0.890625H9.82366ZM3.15033 1.7553H7.04311V0.555298H3.15033V1.7553ZM2.42178 4.87834V2.48385H1.22178V4.87834H2.42178ZM3.15033 0.555298C2.08522 0.555298 1.22178 1.41874 1.22178 2.48385H2.42178C2.42178 2.08148 2.74796 1.7553 3.15033 1.7553V0.555298ZM1.26389 5.52819H4.29034V4.32819H1.26389V5.52819ZM1.19961 8.90695V5.59247H-0.000390649V8.90695H1.19961ZM4.33579 5.54702L7.44346 8.65469L8.29199 7.80616L5.18432 4.69849L4.33579 5.54702ZM4.29034 5.52819C4.30739 5.52819 4.32374 5.53496 4.33579 5.54702L5.18432 4.69849C4.94722 4.46139 4.62565 4.32819 4.29034 4.32819V5.52819ZM1.26389 4.32819C0.565646 4.32819 -0.000390649 4.89423 -0.000390649 5.59247H1.19961C1.19961 5.55697 1.22839 5.52819 1.26389 5.52819V4.32819Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevForkLiftMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"15\" viewBox=\"0 0 18 15\" fill=\"none\">\n <path d=\"M17 12.4478C17.4142 12.4478 17.75 12.112 17.75 11.6978C17.75 11.2836 17.4142 10.9478 17 10.9478V12.4478ZM14.0301 1.51953C14.0301 1.10532 13.6943 0.769531 13.2801 0.769531C12.8658 0.769531 12.5301 1.10532 12.5301 1.51953H14.0301ZM9.05438 2.60037C9.46859 2.60037 9.80438 2.26459 9.80438 1.85037C9.80438 1.43616 9.46859 1.10037 9.05438 1.10037V2.60037ZM6.20056 6.80969L6.73089 6.27936L6.73089 6.27936L6.20056 6.80969ZM4.17631 11.5137C4.17631 12.1837 3.63316 12.7269 2.96316 12.7269V14.2269C4.46159 14.2269 5.67631 13.0121 5.67631 11.5137H4.17631ZM2.96316 12.7269C2.29315 12.7269 1.75 12.1837 1.75 11.5137H0.25C0.25 13.0121 1.46472 14.2269 2.96316 14.2269V12.7269ZM1.75 11.5137C1.75 10.8437 2.29315 10.3005 2.96316 10.3005V8.80055C1.46472 8.80055 0.25 10.0153 0.25 11.5137H1.75ZM2.96316 10.3005C3.63316 10.3005 4.17631 10.8437 4.17631 11.5137H5.67631C5.67631 10.0153 4.46159 8.80055 2.96316 8.80055V10.3005ZM13.1236 11.1958C13.1236 11.8658 12.5805 12.409 11.9105 12.409V13.909C13.4089 13.909 14.6236 12.6943 14.6236 11.1958H13.1236ZM11.9105 12.409C11.2405 12.409 10.6973 11.8658 10.6973 11.1958H9.19732C9.19732 12.6943 10.412 13.909 11.9105 13.909V12.409ZM10.6973 11.1958C10.6973 10.5258 11.2405 9.98268 11.9105 9.98268V8.48268C10.412 8.48268 9.19732 9.6974 9.19732 11.1958H10.6973ZM11.9105 9.98268C12.5805 9.98268 13.1236 10.5258 13.1236 11.1958H14.6236C14.6236 9.6974 13.4089 8.48268 11.9105 8.48268V9.98268ZM12.0503 8.9793L8.71759 1.35535L7.34317 1.95617L10.6759 9.58012L12.0503 8.9793ZM4.97172 12.4478H9.94813V10.9478H4.97172V12.4478ZM13.5606 12.4478H17V10.9478H13.5606V12.4478ZM12.5301 1.51953V9.69164H14.0301V1.51953H12.5301ZM4.1884 2.60037H9.05438V1.10037H4.1884V2.60037ZM3.27771 6.50418V3.51107H1.77771V6.50418H3.27771ZM4.1884 1.10037C2.85701 1.10037 1.77771 2.17968 1.77771 3.51107H3.27771C3.27771 3.00811 3.68544 2.60037 4.1884 2.60037V1.10037ZM1.83035 7.31649H5.61341V5.81649H1.83035V7.31649ZM1.75 11.5399V7.39683H0.25V11.5399H1.75ZM5.67023 7.34002L9.55482 11.2246L10.6155 10.164L6.73089 6.27936L5.67023 7.34002ZM5.61341 7.31649C5.63472 7.31649 5.65516 7.32495 5.67023 7.34002L6.73089 6.27936C6.43451 5.98299 6.03255 5.81649 5.61341 5.81649V7.31649ZM1.83035 5.81649C0.957546 5.81649 0.25 6.52403 0.25 7.39683H1.75C1.75 7.35246 1.78597 7.31649 1.83035 7.31649V5.81649Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevPartPrimitive = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M13.4 5.3L11.9 6.05L8 8M8 8L2.6 5.3M8 8V13.7M10.1468 2.8292L11.3468 3.4592C12.6374 4.1366 13.283 4.475 13.6418 5.084C14 5.6924 14 6.4502 14 7.964V8.0342C14 9.5492 14 10.307 13.6418 10.9154C13.283 11.5244 12.6374 11.8634 11.3468 12.5408L10.1468 13.1702C9.0932 13.7234 8.5664 14 8 14C7.4336 14 6.9068 13.724 5.8532 13.1708L4.6532 12.5408C3.3626 11.8634 2.717 11.525 2.3582 10.916C2 10.3076 2 9.5498 2 8.036V7.9658C2 6.4508 2 5.693 2.3582 5.0846C2.717 4.4756 3.3626 4.1366 4.6532 3.4598L5.8532 2.8298C6.9068 2.2766 7.4336 2 8 2C8.5664 2 9.0932 2.276 10.1468 2.8292Z\" stroke=\"#595E6A\" stroke-linecap=\"round\"/>\n <path d=\"M8 2L2.5 5L8 7.5L13.5 5L8 2Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevPartPrimitiveMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M13.4 5.3L11.9 6.05L8 8M8 8L2.6 5.3M8 8V13.7M10.1468 2.8292L11.3468 3.4592C12.6374 4.1366 13.283 4.475 13.6418 5.084C14 5.6924 14 6.4502 14 7.964V8.0342C14 9.5492 14 10.307 13.6418 10.9154C13.283 11.5244 12.6374 11.8634 11.3468 12.5408L10.1468 13.1702C9.0932 13.7234 8.5664 14 8 14C7.4336 14 6.9068 13.724 5.8532 13.1708L4.6532 12.5408C3.3626 11.8634 2.717 11.525 2.3582 10.916C2 10.3076 2 9.5498 2 8.036V7.9658C2 6.4508 2 5.693 2.3582 5.0846C2.717 4.4756 3.3626 4.1366 4.6532 3.4598L5.8532 2.8298C6.9068 2.2766 7.4336 2 8 2C8.5664 2 9.0932 2.276 10.1468 2.8292Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n <path d=\"M8 2L2.5 5L8 7.5L13.5 5L8 2Z\" fill=\"#595E6A\"/>\n</svg>\n`;\n\nconst duckDevCutLinear = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M13.4 5.3L8 8M8 8L2.6 5.3M8 8V13.7M5.3 3.5C5.70897 3.71525 6.44 4.1 6.44 4.1M9.86 5.9C9.86 5.9 8.49206 5.25898 8 5M11 8V9M11 10.5V11.5M10.1468 2.8292L11.3468 3.4592C12.6374 4.1366 13.283 4.475 13.6418 5.084C14 5.6924 14 6.4502 14 7.964V8.0342C14 9.5492 14 10.307 13.6418 10.9154C13.283 11.5244 12.6374 11.8634 11.3468 12.5408L10.1468 13.1702C9.0932 13.7234 8.5664 14 8 14C7.4336 14 6.9068 13.724 5.8532 13.1708L4.6532 12.5408C3.3626 11.8634 2.717 11.525 2.3582 10.916C2 10.3076 2 9.5498 2 8.036V7.9658C2 6.4508 2 5.693 2.3582 5.0846C2.717 4.4756 3.3626 4.1366 4.6532 3.4598L5.8532 2.8298C6.9068 2.2766 7.4336 2 8 2C8.5664 2 9.0932 2.276 10.1468 2.8292Z\" stroke=\"#595E6A\" stroke-linecap=\"round\"/>\n</svg>\n`;\n\nconst duckDevCutLinearMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M16.75 6.625L10 10M10 10L3.25 6.625M10 10V17.125M6.625 4.375C7.13621 4.64406 8.05 5.125 8.05 5.125M12.325 7.375C12.325 7.375 10.6151 6.57372 10 6.25M13.75 10V11.25M13.75 13.125V14.375M12.6835 3.5365L14.1835 4.324C15.7967 5.17075 16.6037 5.59375 17.0522 6.355C17.5 7.1155 17.5 8.06275 17.5 9.955V10.0428C17.5 11.9365 17.5 12.8837 17.0522 13.6442C16.6037 14.4055 15.7967 14.8293 14.1835 15.676L12.6835 16.4628C11.3665 17.1543 10.708 17.5 10 17.5C9.292 17.5 8.6335 17.155 7.3165 16.4635L5.8165 15.676C4.20325 14.8293 3.39625 14.4063 2.94775 13.645C2.5 12.8845 2.5 11.9373 2.5 10.045V9.95725C2.5 8.0635 2.5 7.11625 2.94775 6.35575C3.39625 5.5945 4.20325 5.17075 5.8165 4.32475L7.3165 3.53725C8.6335 2.84575 9.292 2.5 10 2.5C10.708 2.5 11.3665 2.845 12.6835 3.5365Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n</svg>\n`;\n\nconst duckDevChecklistsMedium = `\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <g clip-path=\"url(#clip0_27172_11150)\">\n <path d=\"M5.54343 12.6507C5.25776 12.3508 4.78303 12.3392 4.48308 12.6249C4.18314 12.9105 4.17156 13.3853 4.45722 13.6852L5.54343 12.6507ZM5.95271 14.168L5.4096 14.6852C5.55116 14.8338 5.74745 14.918 5.95271 14.918C6.15796 14.918 6.35425 14.8338 6.49581 14.6852L5.95271 14.168ZM8.87676 12.1852C9.16243 11.8853 9.15085 11.4105 8.8509 11.1249C8.55095 10.8392 8.07622 10.8508 7.79056 11.1507L8.87676 12.1852ZM5.54343 6.81739C5.25776 6.51745 4.78303 6.50587 4.48308 6.79153C4.18314 7.0772 4.17156 7.55193 4.45722 7.85188L5.54343 6.81739ZM5.95271 8.33464L5.4096 8.85188C5.55116 9.00051 5.74745 9.08464 5.95271 9.08464C6.15796 9.08464 6.35425 9.00051 6.49581 8.85188L5.95271 8.33464ZM8.87676 6.35188C9.16243 6.05193 9.15085 5.5772 8.8509 5.29153C8.55095 5.00587 8.07622 5.01745 7.79056 5.31739L8.87676 6.35188ZM10.8337 6.7513C10.4194 6.7513 10.0837 7.08709 10.0837 7.5013C10.0837 7.91552 10.4194 8.2513 10.8337 8.2513V6.7513ZM15.0003 8.2513C15.4145 8.2513 15.7503 7.91552 15.7503 7.5013C15.7503 7.08709 15.4145 6.7513 15.0003 6.7513V8.2513ZM10.8337 12.5846C10.4194 12.5846 10.0837 12.9204 10.0837 13.3346C10.0837 13.7488 10.4194 14.0846 10.8337 14.0846V12.5846ZM15.0003 14.0846C15.4145 14.0846 15.7503 13.7488 15.7503 13.3346C15.7503 12.9204 15.4145 12.5846 15.0003 12.5846V14.0846ZM10.0003 17.5846C8.01494 17.5846 6.60135 17.583 5.5283 17.4388C4.47682 17.2974 3.86533 17.0315 3.41771 16.5839L2.35705 17.6446C3.12982 18.4173 4.11062 18.7617 5.32842 18.9254C6.52466 19.0862 8.05734 19.0846 10.0003 19.0846V17.5846ZM0.916992 10.0013C0.916992 11.9443 0.915399 13.477 1.07623 14.6732C1.23996 15.891 1.58428 16.8718 2.35705 17.6446L3.41771 16.5839C2.97009 16.1363 2.70422 15.5248 2.56285 14.4733C2.41859 13.4003 2.41699 11.9867 2.41699 10.0013H0.916992ZM17.5837 10.0013C17.5837 11.9867 17.5821 13.4003 17.4378 14.4733C17.2964 15.5248 17.0306 16.1363 16.5829 16.5839L17.6436 17.6446C18.4164 16.8718 18.7607 15.891 18.9244 14.6732C19.0853 13.477 19.0837 11.9443 19.0837 10.0013H17.5837ZM10.0003 19.0846C11.9433 19.0846 13.476 19.0862 14.6722 18.9254C15.89 18.7617 16.8708 18.4173 17.6436 17.6446L16.5829 16.5839C16.1353 17.0315 15.5238 17.2974 14.4724 17.4388C13.3993 17.583 11.9857 17.5846 10.0003 17.5846V19.0846ZM10.0003 2.41797C11.9857 2.41797 13.3993 2.41956 14.4724 2.56383C15.5238 2.7052 16.1353 2.97107 16.5829 3.41869L17.6436 2.35803C16.8708 1.58526 15.89 1.24094 14.6722 1.07721C13.476 0.916376 11.9433 0.917969 10.0003 0.917969V2.41797ZM19.0837 10.0013C19.0837 8.05832 19.0853 6.52563 18.9244 5.3294C18.7607 4.11159 18.4164 3.1308 17.6436 2.35803L16.5829 3.41869C17.0306 3.8663 17.2964 4.4778 17.4378 5.52927C17.5821 6.60232 17.5837 8.01591 17.5837 10.0013H19.0837ZM10.0003 0.917969C8.05734 0.917969 6.52466 0.916376 5.32842 1.07721C4.11062 1.24094 3.12982 1.58526 2.35705 2.35803L3.41771 3.41869C3.86533 2.97107 4.47682 2.7052 5.5283 2.56383C6.60135 2.41956 8.01494 2.41797 10.0003 2.41797V0.917969ZM2.41699 10.0013C2.41699 8.01591 2.41859 6.60232 2.56285 5.52927C2.70422 4.4778 2.97009 3.8663 3.41771 3.41869L2.35705 2.35803C1.58428 3.1308 1.23996 4.11159 1.07623 5.3294C0.915399 6.52563 0.916992 8.05832 0.916992 10.0013H2.41699ZM4.45722 13.6852L5.4096 14.6852L6.49581 13.6507L5.54343 12.6507L4.45722 13.6852ZM6.49581 14.6852L8.87676 12.1852L7.79056 11.1507L5.4096 13.6507L6.49581 14.6852ZM4.45722 7.85188L5.4096 8.85188L6.49581 7.81739L5.54343 6.81739L4.45722 7.85188ZM6.49581 8.85188L8.87676 6.35188L7.79056 5.31739L5.4096 7.81739L6.49581 8.85188ZM10.8337 8.2513H15.0003V6.7513H10.8337V8.2513ZM10.8337 14.0846H15.0003V12.5846H10.8337V14.0846Z\" fill=\"#595E6A\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_27172_11150\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n `;\n\nconst duckDevImage = `\n <svg width=\"21\" height=\"21\" viewBox=\"0 0 21 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M4.66471 18H16.3314C17.2519 18 17.998 17.2538 17.998 16.3333V4.66667C17.998 3.74619 17.2519 3 16.3314 3H4.66471C3.74424 3 2.99805 3.74619 2.99805 4.66667V16.3333C2.99805 17.2538 3.74424 18 4.66471 18ZM4.66471 18L13.8314 8.83333L17.998 13M8.83138 7.58333C8.83138 8.27369 8.27174 8.83333 7.58138 8.83333C6.89102 8.83333 6.33138 8.27369 6.33138 7.58333C6.33138 6.89298 6.89102 6.33333 7.58138 6.33333C8.27174 6.33333 8.83138 6.89298 8.83138 7.58333Z\"\n stroke=\"#595E6A\"\n stroke-width=\"1.5\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n />\n </svg>\n `;\n\nconst duckDevMoon = `\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.9999 8.52667C13.8951 9.66147 13.4692 10.7429 12.7721 11.6445C12.075 12.5461 11.1356 13.2305 10.0637 13.6177C8.99188 14.0049 7.83192 14.0787 6.7196 13.8307C5.60728 13.5827 4.5886 13.023 3.78275 12.2172C2.97691 11.4113 2.41723 10.3927 2.16921 9.28033C1.92118 8.16801 1.99508 7.00806 2.38224 5.9362C2.7694 4.86434 3.45382 3.92491 4.35541 3.22784C5.257 2.53076 6.33847 2.10487 7.47327 2C6.80888 2.89884 6.48917 4.0063 6.57229 5.12094C6.65541 6.23559 7.13584 7.28337 7.9262 8.07373C8.71656 8.86409 9.76435 9.34452 10.879 9.42765C11.9936 9.51077 13.1011 9.19106 13.9999 8.52667Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevMoonMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M17.5004 10.6583C17.3693 12.0768 16.837 13.4287 15.9656 14.5557C15.0943 15.6826 13.92 16.5382 12.5802 17.0221C11.2403 17.5061 9.79039 17.5984 8.39999 17.2884C7.00959 16.9784 5.73623 16.2788 4.72893 15.2715C3.72162 14.2642 3.02202 12.9908 2.712 11.6004C2.40197 10.21 2.49434 8.76007 2.97829 7.42025C3.46224 6.08042 4.31777 4.90614 5.44475 4.03479C6.57174 3.16345 7.92357 2.63109 9.34207 2.5C8.51158 3.62356 8.11195 5.00787 8.21585 6.40118C8.31975 7.79448 8.92029 9.10422 9.90824 10.0922C10.8962 11.0801 12.2059 11.6807 13.5992 11.7846C14.9925 11.8885 16.3769 11.4888 17.5004 10.6583Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevSunMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M10.0003 1.66797V2.5013M10.0003 17.5013V18.3346M18.3337 10.0013H17.5003M2.50033 10.0013H1.66699M15.8927 4.10897L15.5653 4.43633M4.43514 15.5665L4.10778 15.8939M15.8927 15.8936L15.5653 15.5663M4.43514 4.43612L4.10778 4.10875M15.0003 10.0013C15.0003 12.7627 12.7617 15.0013 10.0003 15.0013C7.2389 15.0013 5.00033 12.7627 5.00033 10.0013C5.00033 7.23988 7.2389 5.0013 10.0003 5.0013C12.7617 5.0013 15.0003 7.23988 15.0003 10.0013Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n </svg>\n `;\n\nconst duckDevTool = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M9.7999 4.19722C9.67775 4.32184 9.60933 4.48938 9.60933 4.66389C9.60933 4.83839 9.67775 5.00593 9.7999 5.13055L10.8666 6.19722C10.9912 6.31937 11.1587 6.38779 11.3332 6.38779C11.5077 6.38779 11.6753 6.31937 11.7999 6.19722L14.3132 3.68389C14.6485 4.42468 14.75 5.25004 14.6042 6.04998C14.4585 6.84992 14.0724 7.58645 13.4974 8.16141C12.9225 8.73636 12.1859 9.12244 11.386 9.26819C10.5861 9.41394 9.7607 9.31244 9.0199 8.97722L4.41324 13.5839C4.14802 13.8491 3.78831 13.9981 3.41324 13.9981C3.03816 13.9981 2.67845 13.8491 2.41324 13.5839C2.14802 13.3187 1.99902 12.959 1.99902 12.5839C1.99902 12.2088 2.14802 11.8491 2.41324 11.5839L7.0199 6.97722C6.68468 6.23643 6.58318 5.41106 6.72893 4.61112C6.87468 3.81118 7.26076 3.07466 7.83572 2.4997C8.41067 1.92474 9.1472 1.53867 9.94714 1.39291C10.7471 1.24716 11.5724 1.34866 12.3132 1.68389L9.80657 4.19055L9.7999 4.19722Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevToolMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M12.2501 5.25043C12.0974 5.40621 12.0119 5.61564 12.0119 5.83376C12.0119 6.05189 12.0974 6.26132 12.2501 6.4171L13.5835 7.75043C13.7392 7.90312 13.9487 7.98865 14.1668 7.98865C14.3849 7.98865 14.5943 7.90312 14.7501 7.75043L17.8918 4.60876C18.3108 5.53476 18.4377 6.56646 18.2555 7.56639C18.0733 8.56631 17.5907 9.48697 16.872 10.2057C16.1533 10.9244 15.2327 11.407 14.2327 11.5891C13.2328 11.7713 12.2011 11.6445 11.2751 11.2254L5.51679 16.9838C5.18527 17.3153 4.73563 17.5015 4.26679 17.5015C3.79795 17.5015 3.34831 17.3153 3.01679 16.9838C2.68527 16.6522 2.49902 16.2026 2.49902 15.7338C2.49902 15.2649 2.68527 14.8153 3.01679 14.4838L8.77512 8.72543C8.35609 7.79944 8.22922 6.76774 8.41141 5.76781C8.5936 4.76788 9.0762 3.84723 9.79489 3.12853C10.5136 2.40984 11.4342 1.92724 12.4342 1.74505C13.4341 1.56286 14.4658 1.68973 15.3918 2.10876L12.2585 5.2421L12.2501 5.25043Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevCamera = `\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_2452_10842)\">\n <path d=\"M15.3332 12.6667C15.3332 13.0203 15.1927 13.3594 14.9426 13.6095C14.6926 13.8595 14.3535 14 13.9998 14H1.99984C1.64622 14 1.30708 13.8595 1.05703 13.6095C0.80698 13.3594 0.666504 13.0203 0.666504 12.6667V5.33333C0.666504 4.97971 0.80698 4.64057 1.05703 4.39052C1.30708 4.14048 1.64622 4 1.99984 4H4.6665L5.99984 2H9.99984L11.3332 4H13.9998C14.3535 4 14.6926 4.14048 14.9426 4.39052C15.1927 4.64057 15.3332 4.97971 15.3332 5.33333V12.6667Z\" stroke=\"#7D7D7D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M7.99984 11.3333C9.4726 11.3333 10.6665 10.1394 10.6665 8.66667C10.6665 7.19391 9.4726 6 7.99984 6C6.52708 6 5.33317 7.19391 5.33317 8.66667C5.33317 10.1394 6.52708 11.3333 7.99984 11.3333Z\" stroke=\"#7D7D7D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n </svg>\n `;\n\nconst duckDevPanModeMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M16.667 12.5013V6.22937C16.667 5.92693 16.5463 5.63688 16.3314 5.42302C16.1165 5.20917 15.8251 5.08902 15.5212 5.08902C15.2173 5.08902 14.9258 5.20917 14.7109 5.42302C14.496 5.63688 14.3753 5.92693 14.3753 6.22937V10.2206V3.94867C14.3753 3.64623 14.2546 3.35618 14.0397 3.14232C13.8248 2.92846 13.5334 2.80832 13.2295 2.80832C12.9256 2.80832 12.6342 2.92846 12.4193 3.14232C12.2044 3.35618 12.0837 3.64623 12.0837 3.94867V9.65042V2.80832C12.0837 2.50588 11.9629 2.21583 11.7481 2.00197C11.5332 1.78811 11.2417 1.66797 10.9378 1.66797C10.6339 1.66797 10.3425 1.78811 10.1276 2.00197C9.91271 2.21583 9.79199 2.50588 9.79199 2.80832V9.65042M9.79199 9.68606V4.51885C9.79199 4.21641 9.67127 3.92635 9.45639 3.7125C9.2415 3.49864 8.95005 3.3785 8.64616 3.3785C8.34226 3.3785 8.05082 3.49864 7.83593 3.7125C7.62105 3.92635 7.50033 4.21641 7.50033 4.51885V12.0846\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M16.667 12.0491C16.667 16.2414 14.3945 18.334 11.2699 18.334C8.14523 18.334 6.5541 16.729 5.83366 15.0006L3.75032 10.0007C3.51385 9.3561 3.62108 8.75833 4.1718 8.44373C4.72287 8.12877 5.44686 8.29089 5.74513 8.86081C5.74513 8.86081 6.81488 10.8253 7.50033 12.084\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevBin = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M11.8886 2.66797L10.7997 12.6044C10.7785 12.806 10.6873 12.9922 10.5437 13.127C10.4001 13.2619 10.2142 13.3359 10.0219 13.3346H5.96967C5.7774 13.3359 5.5915 13.2619 5.44787 13.127C5.30423 12.9922 5.21304 12.806 5.1919 12.6044L4.11079 2.66797M3.33301 2.66797H12.6663M7.99967 2.66797V13.3346M4.46856 5.95002H11.5308M4.87301 9.64232H11.1263\" stroke=\"#595E6A\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevBinMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M14.8614 3.33203L13.5003 15.7525C13.4739 16.0045 13.3599 16.2373 13.1804 16.4059C13.0008 16.5744 12.7685 16.6669 12.5281 16.6653H7.46283C7.22248 16.6669 6.99011 16.5744 6.81057 16.4059C6.63103 16.2373 6.51704 16.0045 6.4906 15.7525L5.13921 3.33203M4.16699 3.33203H15.8337M10.0003 3.33203V16.6653M5.58644 7.43459H14.4142M6.09199 12.05H13.9087\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevAccessories = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\">\n <g clip-path=\"url(#clip0_30729_11302)\">\n <path d=\"M2.78604 4.67122C2.9024 4.47811 3.06591 4.31754 3.26139 4.20467L7.92806 1.53801C8.13075 1.42098 8.36068 1.35938 8.59473 1.35938C8.82878 1.35938 9.0587 1.42098 9.26139 1.53801L11.3132 2.75474M2.78604 4.67122C2.78186 4.67814 2.77775 4.68511 2.7737 4.69212C2.65669 4.89455 2.59497 5.12419 2.59473 5.35801V10.6913C2.59497 10.9252 2.65669 11.1548 2.7737 11.3572C2.89071 11.5597 3.0589 11.7278 3.26139 11.8447L7.92806 14.5113C8.13075 14.6284 8.36068 14.69 8.59473 14.69M2.78604 4.67122L2.77473 4.66467M2.78604 4.67122L8.59473 8.03134M8.59473 14.69C8.82878 14.69 9.0587 14.6284 9.26139 14.5113L13.9281 11.8447C14.1306 11.7278 14.2987 11.5597 14.4158 11.3572C14.5328 11.1548 14.5945 10.9252 14.5947 10.6913V9.5702M8.59473 14.69V14.7447M8.59473 14.69V8.03134M8.59473 8.03134V8.02467M8.59473 8.03134L10.181 7.14595M13.4614 4.07467V5.74134M13.4614 5.74134V7.40801M13.4614 5.74134H11.7947M13.4614 5.74134H15.1281\" stroke=\"#595E6A\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_30729_11302\">\n <rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0.552734 0.0234375)\"/>\n </clipPath>\n </defs>\n </svg>\n `;\n\nconst duckDevAccessoriesMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"21\" viewBox=\"0 0 20 21\" fill=\"none\">\n <path d=\"M2.79187 5.97965C2.93733 5.73826 3.14172 5.53754 3.38607 5.39647L9.2194 2.06313C9.47277 1.91685 9.76017 1.83984 10.0527 1.83984C10.3453 1.83984 10.6327 1.91685 10.8861 2.06313L13.4508 3.58405M2.79187 5.97965C2.78666 5.9883 2.78152 5.99701 2.77645 6.00577C2.63019 6.25881 2.55303 6.54586 2.55273 6.83813V13.5048C2.55303 13.7971 2.63019 14.0841 2.77645 14.3372C2.92272 14.5902 3.13295 14.8003 3.38607 14.9465L9.2194 18.2798C9.47277 18.4261 9.76017 18.5031 10.0527 18.5031M2.79187 5.97965L2.77773 5.97147M2.79187 5.97965L10.0527 10.1798M10.0527 18.5031C10.3453 18.5031 10.6327 18.4261 10.8861 18.2798L16.7194 14.9465C16.9725 14.8003 17.1828 14.5902 17.329 14.3372C17.4753 14.0841 17.5524 13.7971 17.5527 13.5048V12.1034M10.0527 18.5031V18.5715M10.0527 18.5031V10.1798M10.0527 10.1798V10.1715M10.0527 10.1798L12.0356 9.07306M16.1361 5.23397V7.3173M16.1361 7.3173V9.40063M16.1361 7.3173H14.0527M16.1361 7.3173H18.2194\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevLogisticVehicle = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M15.8448 8.95608C15.8448 8.67994 15.6209 8.45608 15.3448 8.45608C15.0686 8.45608 14.8448 8.67994 14.8448 8.95608H15.8448ZM2.40039 8.95444L2.40052 8.45444C2.26789 8.45441 2.14068 8.50707 2.04688 8.60084C1.95309 8.69461 1.90039 8.82181 1.90039 8.95444H2.40039ZM8.88708 9.45608C9.16322 9.45615 9.38714 9.23235 9.38721 8.95621C9.38728 8.68006 9.16348 8.45615 8.88733 8.45608L8.88708 9.45608ZM13.39 4.30252L13.8508 4.10851C13.8468 4.09894 13.8425 4.0895 13.8379 4.0802L13.39 4.30252ZM11.7092 5.64719V6.14719V5.64719ZM11.2965 6.05992H11.7965H11.2965ZM11.2965 7.71322H10.7965H11.2965ZM11.7093 8.12595V7.62595V8.12595ZM3.80742 6.22319V5.72319C3.53128 5.72319 3.30742 5.94705 3.30742 6.22319H3.80742ZM6.93964 6.22319H7.43964C7.43964 5.94705 7.21578 5.72319 6.93964 5.72319V6.22319ZM14.8448 8.95608V10.8258H15.8448V8.95608H14.8448ZM2.90039 10.8258V8.95444H1.90039V10.8258H2.90039ZM2.40026 9.45444L8.88708 9.45608L8.88733 8.45608L2.40052 8.45444L2.40026 9.45444ZM10.9711 11.1378H7.08165V12.1378H10.9711V11.1378ZM4.2384 11.1378H3.21239V12.1378H4.2384V11.1378ZM14.5328 11.1378H13.9082V12.1378H14.5328V11.1378ZM1.90039 10.8258C1.90039 11.5504 2.48779 12.1378 3.21239 12.1378V11.1378C3.04008 11.1378 2.90039 10.9981 2.90039 10.8258H1.90039ZM14.8448 10.8258C14.8448 10.9981 14.7051 11.1378 14.5328 11.1378V12.1378C15.2574 12.1378 15.8448 11.5504 15.8448 10.8258H14.8448ZM15.8093 8.76043L13.8508 4.10851L12.9292 4.49652L14.8876 9.14845L15.8093 8.76043ZM12.6627 3.35156H9.70458V4.35156H12.6627V3.35156ZM8.39258 4.66356V8.95444H9.39258V4.66356H8.39258ZM9.70458 3.35156C8.97998 3.35156 8.39258 3.93896 8.39258 4.66356H9.39258C9.39258 4.49125 9.53226 4.35156 9.70458 4.35156V3.35156ZM13.8379 4.0802C13.6163 3.63386 13.161 3.35156 12.6627 3.35156V4.35156C12.7812 4.35156 12.8895 4.41869 12.9422 4.52483L13.8379 4.0802ZM13.9013 5.14719L11.7092 5.14719V6.14719L13.9013 6.14719V5.14719ZM10.7965 6.05992V7.71322H11.7965V6.05992H10.7965ZM11.7093 8.62595H14.9997V7.62595H11.7093V8.62595ZM10.7965 7.71322C10.7965 8.21731 11.2052 8.62595 11.7093 8.62595V7.62595C11.7574 7.62595 11.7965 7.66502 11.7965 7.71322H10.7965ZM11.7092 5.14719C11.2052 5.14719 10.7965 5.55584 10.7965 6.05992H11.7965C11.7965 6.10812 11.7574 6.14719 11.7092 6.14719V5.14719ZM3.80742 6.72319H6.93964V5.72319H3.80742V6.72319ZM4.30742 8.42998V6.22319H3.30742V8.42998H4.30742ZM6.43964 6.22319V8.42998H7.43964V6.22319H6.43964ZM6.44002 11.3965C6.44002 11.7822 6.12737 12.0948 5.74169 12.0948V13.0948C6.67965 13.0948 7.44002 12.3345 7.44002 11.3965H6.44002ZM5.74169 12.0948C5.35601 12.0948 5.04336 11.7822 5.04336 11.3965H4.04336C4.04336 12.3345 4.80373 13.0948 5.74169 13.0948V12.0948ZM5.04336 11.3965C5.04336 11.0108 5.35601 10.6982 5.74169 10.6982V9.69819C4.80373 9.69819 4.04336 10.4586 4.04336 11.3965H5.04336ZM5.74169 10.6982C6.12737 10.6982 6.44002 11.0108 6.44002 11.3965H7.44002C7.44002 10.4586 6.67965 9.69819 5.74169 9.69819V10.6982ZM13.0679 11.3972C13.0679 11.7832 12.755 12.0961 12.3689 12.0961V13.0961C13.3073 13.0961 14.0679 12.3355 14.0679 11.3972H13.0679ZM12.3689 12.0961C11.9829 12.0961 11.67 11.7832 11.67 11.3972H10.67C10.67 12.3355 11.4306 13.0961 12.3689 13.0961V12.0961ZM11.67 11.3972C11.67 11.0111 11.9829 10.6982 12.3689 10.6982V9.69819C11.4306 9.69819 10.67 10.4588 10.67 11.3972H11.67ZM12.3689 10.6982C12.755 10.6982 13.0679 11.0111 13.0679 11.3972H14.0679C14.0679 10.4588 13.3073 9.69819 12.3689 9.69819V10.6982Z\" fill=\"#595E6A\"/>\n </svg>\n `;\n\nconst duckDevLogisticVehicleMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M19.6883 11.365C19.6883 10.9508 19.3525 10.615 18.9383 10.615C18.5241 10.615 18.1883 10.9508 18.1883 11.365H19.6883ZM2.75781 11.363L2.758 10.613C2.55906 10.6129 2.36824 10.6919 2.22755 10.8326C2.08686 10.9732 2.00781 11.164 2.00781 11.363H2.75781ZM10.8661 12.115C11.2804 12.1151 11.6162 11.7794 11.6163 11.3652C11.6164 10.951 11.2807 10.6151 10.8665 10.615L10.8661 12.115ZM16.4948 5.54807L17.1861 5.25706C17.18 5.2427 17.1736 5.22854 17.1666 5.21459L16.4948 5.54807ZM14.3939 7.22891V7.97891V7.22891ZM13.878 7.74482H14.628H13.878ZM13.878 9.81145H13.128H13.878ZM14.3939 10.3274V9.57735V10.3274ZM4.5166 7.94891V7.19891C4.10239 7.19891 3.7666 7.53469 3.7666 7.94891H4.5166ZM8.43187 7.94891H9.18187C9.18187 7.53469 8.84608 7.19891 8.43187 7.19891V7.94891ZM18.1883 11.365V13.7022H19.6883V11.365H18.1883ZM3.50781 13.7022V11.363H2.00781V13.7022H3.50781ZM2.75762 12.113L10.8661 12.115L10.8665 10.615L2.758 10.613L2.75762 12.113ZM13.4712 13.9672H8.60938V15.4672H13.4712V13.9672ZM5.05533 13.9672H3.77281V15.4672H5.05533V13.9672ZM17.9233 13.9672H17.1425V15.4672H17.9233V13.9672ZM2.00781 13.7022C2.00781 14.677 2.79803 15.4672 3.77281 15.4672V13.9672C3.62646 13.9672 3.50781 13.8486 3.50781 13.7022H2.00781ZM18.1883 13.7022C18.1883 13.8486 18.0696 13.9672 17.9233 13.9672V15.4672C18.8981 15.4672 19.6883 14.677 19.6883 13.7022H18.1883ZM19.6341 11.072L17.1861 5.25706L15.8036 5.83908L18.2517 11.654L19.6341 11.072ZM15.5857 4.23438H11.888V5.73438H15.5857V4.23438ZM10.123 5.99937V11.363H11.623V5.99937H10.123ZM11.888 4.23438C10.9133 4.23438 10.123 5.02459 10.123 5.99937H11.623C11.623 5.85302 11.7417 5.73438 11.888 5.73438V4.23438ZM17.1666 5.21459C16.8686 4.61414 16.2561 4.23438 15.5857 4.23438V5.73438C15.6864 5.73438 15.7783 5.79139 15.8231 5.88154L17.1666 5.21459ZM17.134 6.47891L14.3939 6.47891V7.97891L17.134 7.97891V6.47891ZM13.128 7.74482V9.81145H14.628V7.74482H13.128ZM14.3939 11.0774H18.5069V9.57735H14.3939V11.0774ZM13.128 9.81145C13.128 10.5106 13.6947 11.0774 14.3939 11.0774V9.57735C14.5232 9.57735 14.628 9.68216 14.628 9.81145H13.128ZM14.3939 6.47891C13.6947 6.47891 13.128 7.04568 13.128 7.74482H14.628C14.628 7.87411 14.5232 7.97891 14.3939 7.97891V6.47891ZM4.5166 8.69891H8.43187V7.19891H4.5166V8.69891ZM5.2666 10.7074V7.94891H3.7666V10.7074H5.2666ZM7.68187 7.94891V10.7074H9.18187V7.94891H7.68187ZM7.68235 14.4156C7.68235 14.8286 7.3475 15.1635 6.93444 15.1635V16.6635C8.17592 16.6635 9.18235 15.6571 9.18235 14.4156H7.68235ZM6.93444 15.1635C6.52138 15.1635 6.18652 14.8286 6.18652 14.4156H4.68652C4.68652 15.6571 5.69295 16.6635 6.93444 16.6635V15.1635ZM6.18652 14.4156C6.18652 14.0025 6.52137 13.6677 6.93444 13.6677V12.1677C5.69295 12.1677 4.68652 13.1741 4.68652 14.4156H6.18652ZM6.93444 13.6677C7.3475 13.6677 7.68235 14.0025 7.68235 14.4156H9.18235C9.18235 13.1741 8.17592 12.1677 6.93444 12.1677V13.6677ZM15.9672 14.4164C15.9672 14.8299 15.632 15.1651 15.2185 15.1651V16.6651C16.4604 16.6651 17.4672 15.6583 17.4672 14.4164H15.9672ZM15.2185 15.1651C14.805 15.1651 14.4698 14.8299 14.4698 14.4164H12.9698C12.9698 15.6583 13.9766 16.6651 15.2185 16.6651V15.1651ZM14.4698 14.4164C14.4698 14.0029 14.805 13.6677 15.2185 13.6677V12.1677C13.9766 12.1677 12.9698 13.1744 12.9698 14.4164H14.4698ZM15.2185 13.6677C15.632 13.6677 15.9672 14.0029 15.9672 14.4164H17.4672C17.4672 13.1744 16.4604 12.1677 15.2185 12.1677V13.6677Z\" fill=\"#595E6A\"/>\n </svg>\n `;\n\nconst duckDevComputerChipMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <g clip-path=\"url(#clip0_29973_258335)\">\n <path d=\"M8.05748 4.64955V1.07812M13.7718 4.64955V1.07812M5.20034 13.221H1.62891M5.20034 7.5067H1.62891M13.7718 16.0781V19.6496M8.05748 16.0781V19.6496M16.6289 7.5067H20.2003M16.6289 13.221H20.2003M13.0575 11.0781H10.2003M15.2003 4.64955H6.62891C6.25003 4.64955 5.88666 4.80006 5.61875 5.06797C5.35084 5.33588 5.20034 5.69924 5.20034 6.07813V14.6496C5.20034 15.0284 5.35084 15.3918 5.61875 15.6597C5.88666 15.9276 6.25003 16.0781 6.62891 16.0781H15.2003C15.5792 16.0781 15.9426 15.9276 16.2105 15.6597C16.4784 15.3918 16.6289 15.0284 16.6289 14.6496V6.07813C16.6289 5.69924 16.4784 5.33588 16.2105 5.06797C15.9426 4.80006 15.5792 4.64955 15.2003 4.64955Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_29973_258335\">\n <rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(0.915039 0.367188)\"/>\n </clipPath>\n </defs>\n </svg>\n `;\n\n\nconst duckDevCollapse = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M4 3L8 6L12 3\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M12 12L8 9L4 12\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevCollapseMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M3.33301 15.8346V4.16797\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M11.6667 5.83464L7.5 10.0013M7.5 10.0013L11.6667 14.168M7.5 10.0013L17.5 10.0013\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevBookOpenMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M9.99935 5.83333C9.99935 4.94928 9.64816 4.10143 9.02304 3.47631C8.39792 2.85119 7.55007 2.5 6.66602 2.5H1.66602V15H7.49935C8.16239 15 8.79828 15.2634 9.26712 15.7322C9.73596 16.2011 9.99935 16.837 9.99935 17.5M9.99935 5.83333V17.5M9.99935 5.83333C9.99935 4.94928 10.3505 4.10143 10.9757 3.47631C11.6008 2.85119 12.4486 2.5 13.3327 2.5H18.3327V15H12.4993C11.8363 15 11.2004 15.2634 10.7316 15.7322C10.2627 16.2011 9.99935 16.837 9.99935 17.5\" stroke=\"#7F8493\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevBriefcaseMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.3327 17.5V4.16667C13.3327 3.72464 13.1571 3.30072 12.8445 2.98816C12.532 2.67559 12.108 2.5 11.666 2.5H8.33268C7.89065 2.5 7.46673 2.67559 7.15417 2.98816C6.84161 3.30072 6.66602 3.72464 6.66602 4.16667V17.5M3.33268 5.83333H16.666C17.5865 5.83333 18.3327 6.57953 18.3327 7.5V15.8333C18.3327 16.7538 17.5865 17.5 16.666 17.5H3.33268C2.41221 17.5 1.66602 16.7538 1.66602 15.8333V7.5C1.66602 6.57953 2.41221 5.83333 3.33268 5.83333Z\" stroke=\"#7F8493\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevCreditCardMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M0.833984 8.33398H19.1673M2.50065 3.33398H17.5007C18.4211 3.33398 19.1673 4.08018 19.1673 5.00065V15.0007C19.1673 15.9211 18.4211 16.6673 17.5007 16.6673H2.50065C1.58018 16.6673 0.833984 15.9211 0.833984 15.0007V5.00065C0.833984 4.08018 1.58018 3.33398 2.50065 3.33398Z\" stroke=\"#7F8493\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevBookOpen = `\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M7.99967 4.66667C7.99967 3.95942 7.71872 3.28115 7.21863 2.78105C6.71853 2.28095 6.04025 2 5.33301 2H1.33301V12H5.99967C6.53011 12 7.03882 12.2107 7.41389 12.5858C7.78896 12.9609 7.99967 13.4696 7.99967 14M7.99967 4.66667V14M7.99967 4.66667C7.99967 3.95942 8.28063 3.28115 8.78072 2.78105C9.28082 2.28095 9.9591 2 10.6663 2H14.6663V12H9.99967C9.46924 12 8.96053 12.2107 8.58546 12.5858C8.21039 12.9609 7.99967 13.4696 7.99967 14\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevBriefcase = `\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M10.6663 14V3.33333C10.6663 2.97971 10.5259 2.64057 10.2758 2.39052C10.0258 2.14048 9.68663 2 9.33301 2H6.66634C6.31272 2 5.97358 2.14048 5.72353 2.39052C5.47348 2.64057 5.33301 2.97971 5.33301 3.33333V14M2.66634 4.66667H13.333C14.0694 4.66667 14.6663 5.26362 14.6663 6V12.6667C14.6663 13.403 14.0694 14 13.333 14H2.66634C1.92996 14 1.33301 13.403 1.33301 12.6667V6C1.33301 5.26362 1.92996 4.66667 2.66634 4.66667Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevCreditCard = `\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_132902)\">\n <path d=\"M0.666992 6.66797H15.3337M2.00033 2.66797H14.0003C14.7367 2.66797 15.3337 3.26492 15.3337 4.0013V12.0013C15.3337 12.7377 14.7367 13.3346 14.0003 13.3346H2.00033C1.26395 13.3346 0.666992 12.7377 0.666992 12.0013V4.0013C0.666992 3.26492 1.26395 2.66797 2.00033 2.66797Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_132902\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n </svg>\n `;\n\nconst duckDevSlash = `\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21839_132959)\">\n <path d=\"M3.28634 3.28536L12.713 12.712M14.6663 7.9987C14.6663 11.6806 11.6816 14.6654 7.99967 14.6654C4.31778 14.6654 1.33301 11.6806 1.33301 7.9987C1.33301 4.3168 4.31778 1.33203 7.99967 1.33203C11.6816 1.33203 14.6663 4.3168 14.6663 7.9987Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21839_132959\">\n <rect width=\"16\" height=\"16\" fill=\"white\"/>\n </clipPath>\n </defs>\n </svg>\n `;\n\nconst duckDevSlashMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_21_2536)\">\n <path d=\"M4.10866 4.10964L15.892 15.893M18.3337 10.0013C18.3337 14.6037 14.6027 18.3346 10.0003 18.3346C5.39795 18.3346 1.66699 14.6037 1.66699 10.0013C1.66699 5.39893 5.39795 1.66797 10.0003 1.66797C14.6027 1.66797 18.3337 5.39893 18.3337 10.0013Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_21_2536\">\n <rect width=\"20\" height=\"20\" fill=\"white\"/>\n </clipPath>\n </defs>\n </svg>\n `;\n\nconst duckDevOrderMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\">\n <path d=\"M11.8541 1.66602L12.3844 1.13569C12.2438 0.995033 12.053 0.916016 11.8541 0.916016V1.66602ZM5.18742 1.66602V0.916016V1.66602ZM3.52075 3.33268H2.77075H3.52075ZM3.52075 16.666H2.77075H3.52075ZM4.00891 17.8445L3.47858 18.3749L4.00891 17.8445ZM16.3659 17.8445L16.8963 18.3749L16.3659 17.8445ZM16.8541 6.66602H17.6041C17.6041 6.4671 17.5251 6.27634 17.3844 6.13569L16.8541 6.66602ZM10.9374 6.66602C10.9374 6.2518 10.6016 5.91602 10.1874 5.91602C9.7732 5.91602 9.43742 6.2518 9.43742 6.66602H10.9374ZM11.1041 8.76602C11.1041 9.18023 11.4399 9.51602 11.8541 9.51602C12.2683 9.51602 12.6041 9.18023 12.6041 8.76602H11.1041ZM9.27075 11.766C9.27075 11.3518 8.93497 11.016 8.52075 11.016C8.10654 11.016 7.77075 11.3518 7.77075 11.766H9.27075ZM9.43742 14.166C9.43742 14.5802 9.7732 14.916 10.1874 14.916C10.6016 14.916 10.9374 14.5802 10.9374 14.166H9.43742ZM11.8541 1.66602V0.916016H5.18742V1.66602V2.41602H11.8541V1.66602ZM5.18742 1.66602V0.916016C4.54648 0.916016 3.93179 1.17063 3.47858 1.62384L4.00891 2.15417L4.53924 2.6845C4.71115 2.51259 4.9443 2.41602 5.18742 2.41602V1.66602ZM4.00891 2.15417L3.47858 1.62384C3.02536 2.07705 2.77075 2.69174 2.77075 3.33268H3.52075H4.27075C4.27075 3.08957 4.36733 2.85641 4.53924 2.6845L4.00891 2.15417ZM3.52075 3.33268H2.77075V16.666H3.52075H4.27075V3.33268H3.52075ZM3.52075 16.666H2.77075C2.77075 17.307 3.02536 17.9216 3.47858 18.3749L4.00891 17.8445L4.53924 17.3142C4.36733 17.1423 4.27075 16.9091 4.27075 16.666H3.52075ZM4.00891 17.8445L3.47858 18.3749C3.93179 18.8281 4.54648 19.0827 5.18742 19.0827V18.3327V17.5827C4.9443 17.5827 4.71115 17.4861 4.53924 17.3142L4.00891 17.8445ZM5.18742 18.3327V19.0827H15.1874V18.3327V17.5827H5.18742V18.3327ZM15.1874 18.3327V19.0827C15.8284 19.0827 16.443 18.8281 16.8963 18.3749L16.3659 17.8445L15.8356 17.3142C15.6637 17.4861 15.4305 17.5827 15.1874 17.5827V18.3327ZM16.3659 17.8445L16.8963 18.3749C17.3495 17.9216 17.6041 17.307 17.6041 16.666H16.8541H16.1041C16.1041 16.9091 16.0075 17.1423 15.8356 17.3142L16.3659 17.8445ZM16.8541 16.666H17.6041V6.66602H16.8541H16.1041V16.666H16.8541ZM16.8541 6.66602L17.3844 6.13569L12.3844 1.13569L11.8541 1.66602L11.3238 2.19635L16.3238 7.19635L16.8541 6.66602ZM10.1874 6.66602H9.43742V7.26602H10.1874H10.9374V6.66602H10.1874ZM11.8541 8.76602H12.6041C12.6041 7.45158 11.4461 6.51602 10.1874 6.51602V7.26602V8.01602C10.7699 8.01602 11.1041 8.42445 11.1041 8.76602H11.8541ZM10.1874 7.26602V6.51602C8.92876 6.51602 7.77075 7.45158 7.77075 8.76602H8.52075H9.27075C9.27075 8.42445 9.60496 8.01602 10.1874 8.01602V7.26602ZM8.52075 8.76602H7.77075C7.77075 9.45336 8.10237 9.96435 8.54935 10.3154C8.96608 10.6427 9.49344 10.843 9.97485 10.9853L10.1874 10.266L10.4 9.54677C9.9708 9.41993 9.66483 9.28419 9.47587 9.13578C9.31717 9.01113 9.27075 8.90667 9.27075 8.76602H8.52075ZM10.1874 10.266L9.97485 10.9853C10.404 11.1121 10.71 11.2478 10.899 11.3963C11.0577 11.5209 11.1041 11.6254 11.1041 11.766H11.8541H12.6041C12.6041 11.0787 12.2725 10.5677 11.8255 10.2166C11.4088 9.8893 10.8814 9.68904 10.4 9.54677L10.1874 10.266ZM11.8541 11.766H11.1041C11.1041 12.1076 10.7699 12.516 10.1874 12.516V13.266V14.016C11.4461 14.016 12.6041 13.0805 12.6041 11.766H11.8541ZM10.1874 13.266V12.516C9.60496 12.516 9.27075 12.1076 9.27075 11.766H8.52075H7.77075C7.77075 13.0805 8.92876 14.016 10.1874 14.016V13.266ZM10.1874 14.166H10.9374V13.266H10.1874H9.43742V14.166H10.1874Z\" fill=\"#595E6A\"/>\n </svg>\n `;\n\nconst duckDevCalendarMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\">\n <path d=\"M13.7381 1.66797V5.0013M7.07145 1.66797V5.0013M2.90479 8.33464H17.9048M4.57145 3.33464H16.2381C17.1586 3.33464 17.9048 4.08083 17.9048 5.0013V16.668C17.9048 17.5884 17.1586 18.3346 16.2381 18.3346H4.57145C3.65098 18.3346 2.90479 17.5884 2.90479 16.668V5.0013C2.90479 4.08083 3.65098 3.33464 4.57145 3.33464Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevBuildingMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M3.125 17.5H16.875M3.75 2.5H16.25M4.375 2.5V17.5M15.625 2.5V17.5M7.5 5.625H8.75M7.5 8.125H8.75M7.5 10.625H8.75M11.25 5.625H12.5M11.25 8.125H12.5M11.25 10.625H12.5M7.5 17.5V14.6875C7.5 14.17 7.92 13.75 8.4375 13.75H11.5625C12.08 13.75 12.5 14.17 12.5 14.6875V17.5\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevStopCircleMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 20C15.5228 20 20 15.5228 20 10C20 4.47715 15.5228 0 10 0C4.47715 0 0 4.47715 0 10C0 15.5228 4.47715 20 10 20ZM6.58579 6.58579C6 7.17157 6 8.11438 6 10C6 11.8856 6 12.8284 6.58579 13.4142C7.17157 14 8.11438 14 10 14C11.8856 14 12.8284 14 13.4142 13.4142C14 12.8284 14 11.8856 14 10C14 8.11438 14 7.17157 13.4142 6.58579C12.8284 6 11.8856 6 10 6C8.11438 6 7.17157 6 6.58579 6.58579Z\" fill=\"#FC5555\"/>\n </svg>\n `;\n\nconst duckDevPauseCircleMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 20C15.5228 20 20 15.5228 20 10C20 4.47715 15.5228 0 10 0C4.47715 0 0 4.47715 0 10C0 15.5228 4.47715 20 10 20ZM6.07612 6.61732C6 6.80109 6 7.03406 6 7.5V12.5C6 12.9659 6 13.1989 6.07612 13.3827C6.17761 13.6277 6.37229 13.8224 6.61732 13.9239C6.80109 14 7.03406 14 7.5 14C7.96594 14 8.19891 14 8.38268 13.9239C8.62771 13.8224 8.82239 13.6277 8.92388 13.3827C9 13.1989 9 12.9659 9 12.5V7.5C9 7.03406 9 6.80109 8.92388 6.61732C8.82239 6.37229 8.62771 6.17761 8.38268 6.07612C8.19891 6 7.96594 6 7.5 6C7.03406 6 6.80109 6 6.61732 6.07612C6.37229 6.17761 6.17761 6.37229 6.07612 6.61732ZM11.0761 6.61732C11 6.80109 11 7.03406 11 7.5V12.5C11 12.9659 11 13.1989 11.0761 13.3827C11.1776 13.6277 11.3723 13.8224 11.6173 13.9239C11.8011 14 12.0341 14 12.5 14C12.9659 14 13.1989 14 13.3827 13.9239C13.6277 13.8224 13.8224 13.6277 13.9239 13.3827C14 13.1989 14 12.9659 14 12.5V7.5C14 7.03406 14 6.80109 13.9239 6.61732C13.8224 6.37229 13.6277 6.17761 13.3827 6.07612C13.1989 6 12.9659 6 12.5 6C12.0341 6 11.8011 6 11.6173 6.07612C11.3723 6.17761 11.1776 6.37229 11.0761 6.61732Z\" fill=\"#595E6A\"/>\n </svg>\n\n `;\n\nconst duckDevPlayCircleFilledMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 20C15.5228 20 20 15.5228 20 10C20 4.47715 15.5228 0 10 0C4.47715 0 0 4.47715 0 10C0 15.5228 4.47715 20 10 20ZM8.69349 13.8458L13.4137 11.059C14.1954 10.5974 14.1954 9.40259 13.4137 8.94103L8.69349 6.15419C7.93371 5.70561 7 6.28947 7 7.21316V12.7868C7 13.7105 7.93371 14.2944 8.69349 13.8458Z\" fill=\"#29CC6A\"/>\n </svg>\n `;\n\nconst duckDevMenuMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2.5 10H17.5M2.5 5H17.5M2.5 15H17.5\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevTeaCupMedium = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M1.92869 10.5812C1.88707 10.2252 1.86627 10.0472 1.87502 9.90042C1.92093 9.13109 2.48824 8.49367 3.24698 8.35876C3.39172 8.33301 3.57094 8.33301 3.92937 8.33301H12.7358C13.0942 8.33301 13.2734 8.33301 13.4182 8.35876C14.1769 8.49367 14.7443 9.13109 14.7901 9.90042C14.7989 10.0472 14.7781 10.2252 14.7364 10.5812L14.4026 13.4378C14.2519 14.7271 13.5629 15.8925 12.506 16.6461C11.7273 17.2013 10.7948 17.4997 9.83835 17.4997H6.8268C5.87041 17.4997 4.93785 17.2013 4.15912 16.6461C3.1022 15.8925 2.41328 14.7271 2.26259 13.4378L1.92869 10.5812Z\" stroke=\"#6B7280\" stroke-width=\"1.5\"/>\n <path d=\"M14.166 14.167H15.8327C17.2134 14.167 18.3327 13.0477 18.3327 11.667C18.3327 10.2862 17.2134 9.16699 15.8327 9.16699H14.5827\" stroke=\"#6B7280\" stroke-width=\"1.5\"/>\n <path d=\"M8.33349 1.66699C7.87321 2.12723 7.87321 2.87343 8.33349 3.33366C8.79365 3.79389 8.79365 4.54009 8.33349 5.00033\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M4.16665 6.25033L4.26342 6.15356C4.68606 5.73092 4.73361 5.06183 4.37499 4.58366C4.01636 4.10549 4.06392 3.4364 4.48656 3.01376L4.58332 2.91699\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M12.0827 6.25033L12.1794 6.15356C12.6021 5.73092 12.6496 5.06183 12.291 4.58366C11.9324 4.10549 11.9799 3.4364 12.4026 3.01376L12.4994 2.91699\" stroke=\"#6B7280\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevSubstageInstructionMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.5391 3.33366H15.2057C15.6478 3.33366 16.0717 3.50925 16.3842 3.82181C16.6968 4.13437 16.8724 4.5583 16.8724 5.00033V16.667C16.8724 17.109 16.6968 17.5329 16.3842 17.8455C16.0717 18.1581 15.6478 18.3337 15.2057 18.3337H5.20573C4.7637 18.3337 4.33978 18.1581 4.02722 17.8455C3.71466 17.5329 3.53906 17.109 3.53906 16.667V5.00033C3.53906 4.5583 3.71466 4.13437 4.02722 3.82181C4.33978 3.50925 4.7637 3.33366 5.20573 3.33366H6.8724M7.70573 1.66699H12.7057C13.166 1.66699 13.5391 2.04009 13.5391 2.50033V4.16699C13.5391 4.62723 13.166 5.00033 12.7057 5.00033H7.70573C7.24549 5.00033 6.8724 4.62723 6.8724 4.16699V2.50033C6.8724 2.04009 7.24549 1.66699 7.70573 1.66699Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M12.5391 10.5938L14.5391 12.5938M14.5391 12.5938L12.5391 14.5938M14.5391 12.5938L9.03906 12.5938C8.50863 12.5938 7.99992 12.383 7.62485 12.008C7.24978 11.6329 7.03906 11.1242 7.03906 10.5938C7.03906 10.0633 7.24978 9.55461 7.62485 9.17954C7.99992 8.80447 8.50863 8.59375 9.03906 8.59375L9.53906 8.59375\" stroke=\"#595E6A\" stroke-width=\"1.25039\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevTaskInstructionMedium = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.5391 3.33366H15.2057C15.6478 3.33366 16.0717 3.50925 16.3842 3.82181C16.6968 4.13437 16.8724 4.5583 16.8724 5.00033V16.667C16.8724 17.109 16.6968 17.5329 16.3842 17.8455C16.0717 18.1581 15.6478 18.3337 15.2057 18.3337H5.20573C4.7637 18.3337 4.33978 18.1581 4.02722 17.8455C3.71466 17.5329 3.53906 17.109 3.53906 16.667V5.00033C3.53906 4.5583 3.71466 4.13437 4.02722 3.82181C4.33978 3.50925 4.7637 3.33366 5.20573 3.33366H6.8724M7.70573 1.66699H12.7057C13.166 1.66699 13.5391 2.04009 13.5391 2.50033V4.16699C13.5391 4.62723 13.166 5.00033 12.7057 5.00033H7.70573C7.24549 5.00033 6.8724 4.62723 6.8724 4.16699V2.50033C6.8724 2.04009 7.24549 1.66699 7.70573 1.66699Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <g clip-path=\"url(#clip0_3818_65351)\">\n <path d=\"M11.1315 11.5013C11.1315 11.9562 10.7628 12.3249 10.3079 12.3249C9.8531 12.3249 9.48438 11.9562 9.48438 11.5013C9.48438 11.0465 9.8531 10.6777 10.3079 10.6777C10.7628 10.6777 11.1315 11.0465 11.1315 11.5013Z\" fill=\"#595E6A\"/>\n <path d=\"M13.8516 7.41504C13.8516 7.82925 13.5158 8.16504 13.1016 8.16504C12.6873 8.16504 12.3516 7.82925 12.3516 7.41504C12.3516 7.00083 12.6873 6.66504 13.1016 6.66504C13.5158 6.66504 13.8516 7.00083 13.8516 7.41504Z\" fill=\"#595E6A\"/>\n <path d=\"M10.4453 7.74707C10.4453 8.16128 10.1095 8.49707 9.69531 8.49707C9.2811 8.49707 8.94531 8.16128 8.94531 7.74707C8.94531 7.33286 9.2811 6.99707 9.69531 6.99707C10.1095 6.99707 10.4453 7.33286 10.4453 7.74707Z\" fill=\"#595E6A\"/>\n <path d=\"M8.02344 9.16504C8.02344 9.57925 7.68765 9.91504 7.27344 9.91504C6.85922 9.91504 6.52344 9.57925 6.52344 9.16504C6.52344 8.75083 6.85922 8.41504 7.27344 8.41504C7.68765 8.41504 8.02344 8.75083 8.02344 9.16504Z\" fill=\"#595E6A\"/>\n <path d=\"M7.82812 13.5605C7.82812 13.9748 7.49234 14.3105 7.07812 14.3105C6.66391 14.3105 6.32812 13.9748 6.32812 13.5605C6.32812 13.1463 6.66391 12.8105 7.07812 12.8105C7.49234 12.8105 7.82812 13.1463 7.82812 13.5605Z\" fill=\"#595E6A\"/>\n <path d=\"M10.3672 16.1689C10.3672 16.5832 10.0314 16.9189 9.61719 16.9189C9.20297 16.9189 8.86719 16.5832 8.86719 16.1689C8.86719 15.7547 9.20297 15.4189 9.61719 15.4189C10.0314 15.4189 10.3672 15.7547 10.3672 16.1689Z\" fill=\"#595E6A\"/>\n <path d=\"M14.5156 14.8242C14.5156 15.2384 14.1798 15.5742 13.7656 15.5742C13.3514 15.5742 13.0156 15.2384 13.0156 14.8242C13.0156 14.41 13.3514 14.0742 13.7656 14.0742C14.1798 14.0742 14.5156 14.41 14.5156 14.8242Z\" fill=\"#595E6A\"/>\n <path d=\"M14.7891 12.25C14.7891 12.6642 14.4533 13 14.0391 13C13.6248 13 13.2891 12.6642 13.2891 12.25C13.2891 11.8358 13.6248 11.5 14.0391 11.5C14.4533 11.5 14.7891 11.8358 14.7891 12.25Z\" fill=\"#595E6A\"/>\n <path d=\"M9.61719 15.9775L10.3664 11.7418\" stroke=\"#595E6A\" stroke-width=\"0.559167\" stroke-linecap=\"round\"/>\n <path d=\"M13.4531 14.5537L10.3515 11.7388\" stroke=\"#595E6A\" stroke-width=\"0.559167\" stroke-linecap=\"round\"/>\n <path d=\"M7.07812 13.4541L9.92707 11.5028\" stroke=\"#595E6A\" stroke-width=\"0.559167\" stroke-linecap=\"round\"/>\n <path d=\"M9.71094 7.83887L10.2297 11.2381\" stroke=\"#595E6A\" stroke-width=\"0.559167\" stroke-linecap=\"round\"/>\n <path d=\"M13.1016 7.50879L11.7061 9.48585L10.3107 11.4629\" stroke=\"#595E6A\" stroke-width=\"0.559167\" stroke-linecap=\"round\"/>\n <path d=\"M14.0625 12.3242L10.4487 11.4645\" stroke=\"#595E6A\" stroke-width=\"0.559167\" stroke-linecap=\"round\"/>\n <path d=\"M7.32812 9.38867L9.92969 11.4629\" stroke=\"#595E6A\" stroke-width=\"0.559167\" stroke-linecap=\"round\"/>\n <path d=\"M10.3564 10.0068C11.7653 10.0068 13.0293 10.2083 13.9307 10.5244C14.3825 10.6829 14.7287 10.8652 14.9561 11.0537C15.1849 11.2436 15.2617 11.4112 15.2617 11.5459C15.2617 11.6806 15.1849 11.8482 14.9561 12.0381C14.7287 12.2266 14.3825 12.4089 13.9307 12.5674C13.0293 12.8835 11.7653 13.085 10.3564 13.085C8.94773 13.0849 7.68453 12.8835 6.7832 12.5674C6.33123 12.4089 5.98522 12.2266 5.75781 12.0381C5.52881 11.8482 5.45117 11.6806 5.45117 11.5459C5.45117 11.4112 5.52881 11.2436 5.75781 11.0537C5.98522 10.8652 6.33123 10.6829 6.7832 10.5244C7.68453 10.2083 8.94773 10.0069 10.3564 10.0068Z\" stroke=\"#595E6A\" stroke-width=\"0.559167\"/>\n <path d=\"M5.3418 11.502C5.3418 8.79574 7.56101 6.59668 10.3047 6.59668C13.0484 6.59668 15.2676 8.79574 15.2676 11.502C15.2674 14.208 13.0483 16.4072 10.3047 16.4072C7.5611 16.4072 5.34195 14.208 5.3418 11.502Z\" stroke=\"#595E6A\" stroke-width=\"0.559167\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_3818_65351\">\n <rect x=\"5.0625\" y=\"5.73535\" width=\"10.4844\" height=\"11.1833\" rx=\"1.37262\" fill=\"white\"/>\n </clipPath>\n </defs>\n </svg>\n `;\n\nconst duckDevToolsInstructionSm = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.5391 3.33366H15.2057C15.6478 3.33366 16.0717 3.50925 16.3842 3.82181C16.6968 4.13437 16.8724 4.5583 16.8724 5.00033V16.667C16.8724 17.109 16.6968 17.5329 16.3842 17.8455C16.0717 18.1581 15.6478 18.3337 15.2057 18.3337H5.20573C4.7637 18.3337 4.33978 18.1581 4.02722 17.8455C3.71466 17.5329 3.53906 17.109 3.53906 16.667V5.00033C3.53906 4.5583 3.71466 4.13437 4.02722 3.82181C4.33978 3.50925 4.7637 3.33366 5.20573 3.33366H6.8724M7.70573 1.66699H12.7057C13.166 1.66699 13.5391 2.04009 13.5391 2.50033V4.16699C13.5391 4.62723 13.166 5.00033 12.7057 5.00033H7.70573C7.24549 5.00033 6.8724 4.62723 6.8724 4.16699V2.50033C6.8724 2.04009 7.24549 1.66699 7.70573 1.66699Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M13.8511 14.4832L13.8511 12.2179C13.8511 12.1849 13.8446 12.1523 13.8319 12.1218C13.8193 12.0913 13.8008 12.0636 13.7775 12.0403C13.7542 12.017 13.7265 11.9985 13.696 11.9858C13.6655 11.9732 13.6329 11.9667 13.5999 11.9667H12.0609L12.062 11.9664C12.0282 11.965 11.9944 11.9705 11.9627 11.9825C11.9311 11.9945 11.9022 12.0128 11.8778 12.0362C11.8534 12.0597 11.8339 12.0879 11.8207 12.119C11.8074 12.1502 11.8006 12.1837 11.8007 12.2175L11.8007 14.4836M12.8268 11.9642V8.96199M13.8511 14.3133L13.8511 15.4463C13.8512 15.4802 13.8443 15.5137 13.8311 15.5448C13.8178 15.576 13.7984 15.6042 13.774 15.6276C13.7496 15.6511 13.7207 15.6694 13.689 15.6814C13.6574 15.6934 13.6236 15.6989 13.5898 15.6975L13.5909 15.6971H12.0519C12.0189 15.6971 11.9863 15.6906 11.9558 15.678C11.9253 15.6654 11.8976 15.6469 11.8743 15.6236C11.851 15.6002 11.8325 15.5726 11.8198 15.5421C11.8072 15.5116 11.8007 15.4789 11.8007 15.446L11.8007 14.3133M7.63782 11.3024L7.63782 14.7903C7.63777 14.882 7.65579 14.9728 7.69086 15.0575C7.72592 15.1422 7.77734 15.2192 7.84217 15.284C7.907 15.3488 7.98397 15.4002 8.06869 15.4353C8.15341 15.4704 8.2442 15.4884 8.33589 15.4883C8.52089 15.4883 8.6983 15.4148 8.82912 15.284C8.95993 15.1532 9.03343 14.9758 9.03346 14.7908L9.03297 11.3024C9.77223 10.9795 10.4284 10.242 10.4284 9.38361C10.4286 8.52545 9.73103 7.63943 9.03297 7.46528L9.03321 8.96526L8.3354 9.8022L7.63782 8.96501L7.63782 7.46528C6.94001 7.63968 6.24219 8.52546 6.24219 9.38385C6.24243 10.242 6.89857 10.9795 7.63782 11.3024ZM13.0621 8.80729L12.562 8.80729L12.0618 8.3071L12.3119 7.05664L13.3122 7.05664L13.5623 8.3071L13.0621 8.80729Z\" stroke=\"#595E6A\" stroke-width=\"0.866016\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevApprovalInstructionSm = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M13.5391 3.33366H15.2057C15.6478 3.33366 16.0717 3.50925 16.3842 3.82181C16.6968 4.13437 16.8724 4.5583 16.8724 5.00033V16.667C16.8724 17.109 16.6968 17.5329 16.3842 17.8455C16.0717 18.1581 15.6478 18.3337 15.2057 18.3337H5.20573C4.7637 18.3337 4.33978 18.1581 4.02722 17.8455C3.71466 17.5329 3.53906 17.109 3.53906 16.667V5.00033C3.53906 4.5583 3.71466 4.13437 4.02722 3.82181C4.33978 3.50925 4.7637 3.33366 5.20573 3.33366H6.8724M7.70573 1.66699H12.7057C13.166 1.66699 13.5391 2.04009 13.5391 2.50033V4.16699C13.5391 4.62723 13.166 5.00033 12.7057 5.00033H7.70573C7.24549 5.00033 6.8724 4.62723 6.8724 4.16699V2.50033C6.8724 2.04009 7.24549 1.66699 7.70573 1.66699Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M6.71875 9.36252L7.13939 9.89175L8.62398 8.48047M6.71875 11.8323L7.13939 12.3615L8.62398 10.9502M6.71875 14.302L7.13939 14.8313L8.62398 13.42M13.6469 14.1256H10.1828M13.6469 11.6559H10.1828M13.6469 9.18611H10.1828\" stroke=\"#595E6A\" stroke-width=\"0.866016\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevQuestionCircleBold = `\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.6496 8.00156C14.6496 11.6743 11.6723 14.6516 7.99961 14.6516C4.32692 14.6516 1.34961 11.6743 1.34961 8.00156C1.34961 4.32887 4.32692 1.35156 7.99961 1.35156C11.6723 1.35156 14.6496 4.32887 14.6496 8.00156ZM7.99961 5.17531C7.58643 5.17531 7.25148 5.51026 7.25148 5.92344C7.25148 6.19889 7.02819 6.42219 6.75273 6.42219C6.47728 6.42219 6.25398 6.19889 6.25398 5.92344C6.25398 4.95936 7.03553 4.17781 7.99961 4.17781C8.96369 4.17781 9.74523 4.95936 9.74523 5.92344C9.74523 6.39614 9.55668 6.82583 9.25178 7.1397C9.19042 7.20286 9.13189 7.26133 9.07606 7.31712C8.93253 7.46053 8.80679 7.58616 8.69647 7.72791C8.55081 7.91506 8.49836 8.05261 8.49836 8.16781V8.66656C8.49836 8.94201 8.27506 9.16531 7.99961 9.16531C7.72416 9.16531 7.50086 8.94201 7.50086 8.66656V8.16781C7.50086 7.73211 7.70369 7.37941 7.90928 7.11526C8.0614 6.9198 8.2526 6.72898 8.40777 6.57412C8.45458 6.5274 8.49811 6.48396 8.5363 6.44465C8.66766 6.30943 8.74773 6.12629 8.74773 5.92344C8.74773 5.51026 8.41279 5.17531 7.99961 5.17531ZM7.99961 11.3266C8.36688 11.3266 8.66461 11.0288 8.66461 10.6616C8.66461 10.2943 8.36688 9.99656 7.99961 9.99656C7.63234 9.99656 7.33461 10.2943 7.33461 10.6616C7.33461 11.0288 7.63234 11.3266 7.99961 11.3266Z\" fill=\"#AEB2BC\"/>\n </svg>\n `;\n\nconst duckDevTextSm = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M3 7H17M3 10.5H17M3 14H9\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevHammerBold = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M5.06887 3.06789C6.2261 1.91065 6.80472 1.33203 7.52374 1.33203C8.24276 1.33203 8.82138 1.91065 9.97861 3.06789L12.9245 6.01374C14.0817 7.17098 14.6603 7.7496 14.6603 8.46861C14.6603 9.18763 14.0817 9.76625 12.9245 10.9235C11.7672 12.0807 11.1886 12.6593 10.4696 12.6593C9.75057 12.6593 9.17195 12.0807 8.01471 10.9235L5.06887 7.97764C3.91163 6.8204 3.33301 6.24178 3.33301 5.52276C3.33301 4.80375 3.91163 4.22513 5.06887 3.06789Z\" fill=\"#AEB2BC\"/>\n <path d=\"M4.85567 9.17866L1.88355 12.1508C1.65525 12.3791 1.5411 12.4932 1.47254 12.612C1.2865 12.9342 1.2865 13.3312 1.47254 13.6535C1.5411 13.7722 1.65525 13.8864 1.88353 14.1147C2.11183 14.343 2.22599 14.4571 2.34474 14.5257C2.66699 14.7117 3.06401 14.7117 3.38625 14.5257C3.505 14.4571 3.61915 14.343 3.84745 14.1147L6.81957 11.1426L4.85567 9.17866Z\" fill=\"#AEB2BC\"/>\n <path d=\"M5.56278 8.47155L5.56571 8.46862L7.52961 10.4325L7.52668 10.4355L5.56278 8.47155Z\" fill=\"#AEB2BC\"/>\n <path d=\"M13.112 4.7871C13.2819 4.47023 13.2765 4.08713 13.096 3.77443C13.0274 3.65568 12.9133 3.54153 12.685 3.31324C12.4567 3.08494 12.3426 2.97079 12.2238 2.90223C11.9111 2.7217 11.528 2.71635 11.2111 2.88618L13.112 4.7871Z\" fill=\"#AEB2BC\"/>\n </svg>\n `;\n\nconst duckDevAlignLeftSm = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M14.1667 8.33333H2.5M17.5 5H2.5M17.5 11.6667H2.5M14.1667 15H2.5\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevChecklistSm = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M4 6.52778L4.72857 7.44444L7.3 5M4 10.8056L4.72857 11.7222L7.3 9.27778M4 15.0833L4.72857 16L7.3 13.5556M16 14.7778H10M16 10.5H10M16 6.22222H10\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevMessageSquare = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M14 10C14 10.3536 13.8595 10.6928 13.6095 10.9428C13.3594 11.1929 13.0203 11.3333 12.6667 11.3333H4.66667L2 14V3.33333C2 2.97971 2.14048 2.64057 2.39052 2.39052C2.64057 2.14048 2.97971 2 3.33333 2H12.6667C13.0203 2 13.3594 2.14048 13.6095 2.39052C13.8595 2.64057 14 2.97971 14 3.33333V10Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevSun = `\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M8.00065 1.33325V1.99992M8.00065 13.9999V14.6666M14.6673 7.99992H14.0007M2.00065 7.99992H1.33398M12.7145 3.28605L12.4526 3.54794M3.5485 12.4521L3.28661 12.714M12.7145 12.7138L12.4526 12.4519M3.5485 3.54777L3.28661 3.28588M12.0007 7.99992C12.0007 10.2091 10.2098 11.9999 8.00065 11.9999C5.79151 11.9999 4.00065 10.2091 4.00065 7.99992C4.00065 5.79078 5.79151 3.99992 8.00065 3.99992C10.2098 3.99992 12.0007 5.79078 12.0007 7.99992Z\" stroke=\"#ADBAC7\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\n </svg>\n `;\n\nconst duckDevMessageSquareSm = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M17.5 12.5C17.5 12.942 17.3244 13.366 17.0118 13.6785C16.6993 13.9911 16.2754 14.1667 15.8333 14.1667H5.83333L2.5 17.5V4.16667C2.5 3.72464 2.67559 3.30072 2.98816 2.98816C3.30072 2.67559 3.72464 2.5 4.16667 2.5H15.8333C16.2754 2.5 16.6993 2.67559 17.0118 2.98816C17.3244 3.30072 17.5 3.72464 17.5 4.16667V12.5Z\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevMinimize2Sm = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M3.33333 11.6667H8.33333M8.33333 11.6667V16.6667M8.33333 11.6667L2.5 17.5M16.6667 8.33333H11.6667M11.6667 8.33333V3.33333M11.6667 8.33333L17.5 2.5\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevMinimize2 = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\">\n <path d=\"M2.66667 9.33333H6.66667M6.66667 9.33333V13.3333M6.66667 9.33333L2 14M13.3333 6.66667H9.33333M9.33333 6.66667V2.66667M9.33333 6.66667L14 2\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevHistorySm = `\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n <path d=\"M1.66699 3.33337V8.33337M1.66699 8.33337H6.66699M1.66699 8.33337L5.53366 4.70004C6.68442 3.55122 8.17737 2.80751 9.78756 2.58097C11.3977 2.35442 13.0379 2.65732 14.461 3.44401C15.8841 4.2307 17.013 5.45857 17.6775 6.94262C18.3421 8.42667 18.5063 10.0865 18.1455 11.672C17.7847 13.2575 16.9184 14.6828 15.6771 15.7332C14.4358 16.7835 12.8868 17.402 11.2634 17.4954C9.64006 17.5889 8.03031 17.1522 6.67671 16.2512C5.32311 15.3502 4.29899 14.0337 3.75866 12.5\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n <path d=\"M10.833 6.66797V11.668L14.1663 13.3346\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\nconst duckDevGlobeSm = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M18.3327 10.0001C18.3327 14.6025 14.6017 18.3334 9.99935 18.3334M18.3327 10.0001C18.3327 5.39771 14.6017 1.66675 9.99935 1.66675M18.3327 10.0001H1.66602M9.99935 18.3334C5.39698 18.3334 1.66602 14.6025 1.66602 10.0001M9.99935 18.3334C12.0837 16.0515 13.2683 13.0901 13.3327 10.0001C13.2683 6.91011 12.0837 3.94871 9.99935 1.66675M9.99935 18.3334C7.91495 16.0515 6.73039 13.0901 6.66602 10.0001C6.73039 6.91011 7.91495 3.94871 9.99935 1.66675M1.66602 10.0001C1.66602 5.39771 5.39698 1.66675 9.99935 1.66675\" stroke=\"#595E6A\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n </svg>\n `;\n\nconst duckDevPaletteSm = `\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <g clip-path=\"url(#clip0_55509_18976)\">\n <path d=\"M1.66602 10.0218C1.66602 14.3104 4.88862 17.8442 9.03834 18.322C9.65068 18.3925 10.2442 18.1314 10.68 17.6945C11.2246 17.1485 11.2246 16.2633 10.68 15.7174C10.2442 15.2804 9.88889 14.6285 10.2176 14.1058C11.5315 12.0161 18.3327 16.8151 18.3327 10.0218C18.3327 5.40745 14.6017 1.66675 9.99935 1.66675C5.39698 1.66675 1.66602 5.40745 1.66602 10.0218Z\" stroke=\"#595E6A\" stroke-width=\"1.5\"/>\n <path d=\"M5.41602 9.08325C5.69209 9.08325 5.91591 9.3072 5.91602 9.58325C5.91602 9.85939 5.69216 10.0833 5.41602 10.0833C5.13987 10.0833 4.91602 9.85939 4.91602 9.58325C4.91612 9.3072 5.13994 9.08325 5.41602 9.08325ZM14.583 9.08325C14.8589 9.08343 15.0829 9.30731 15.083 9.58325C15.083 9.85929 14.859 10.0831 14.583 10.0833C14.3069 10.0833 14.083 9.85939 14.083 9.58325C14.0831 9.3072 14.3069 9.08325 14.583 9.08325ZM7.9873 5.33325C8.26324 5.3335 8.4873 5.55726 8.4873 5.83325C8.4873 6.10924 8.26324 6.33301 7.9873 6.33325C7.71116 6.33325 7.4873 6.10939 7.4873 5.83325C7.4873 5.55711 7.71116 5.33325 7.9873 5.33325ZM12.083 5.33325C12.3589 5.33343 12.5829 5.55731 12.583 5.83325C12.583 6.10929 12.359 6.33308 12.083 6.33325C11.8069 6.33325 11.583 6.10939 11.583 5.83325C11.5831 5.5572 11.8069 5.33325 12.083 5.33325Z\" stroke=\"#595E6A\" stroke-width=\"1.5\"/>\n </g>\n <defs>\n <clipPath id=\"clip0_55509_18976\">\n <rect width=\"20\" height=\"20\" rx=\"5\" fill=\"white\"/>\n </clipPath>\n </defs>\n </svg>\n `;\n\n\nexport const CUI_ICONS = {\n duckDevDockMedium,\n duckDevImageMedium,\n duckDevWordDockMedium,\n duckDevPrinterMedium,\n duckDevBuildMedium,\n duckDevCupMedium,\n duckDevSlashMedium,\n duckDevTextSm,\n duckDevSlash,\n duckDevCheck,\n duckDevCheckMedium,\n duckDevCheckCircle,\n duckDevCheckCircleMedium,\n duckDevCheckCircleV2,\n duckDevMoreVertical,\n duckDevMoreVerticalMedium,\n duckDevTrash,\n duckDevTrashMedium,\n duckDevEdit,\n duckDevEditMedium,\n duckDevArrowSortMedium,\n duckDevX,\n duckDevXMedium,\n duckDevXCircle,\n duckDevXCircleMedium,\n duckDevClear,\n duckDevClearMedium,\n duckDevEye,\n duckDevEyeMedium,\n duckDevEyeOff,\n duckDevEyeOffMedium,\n duckDevChevronUp,\n duckDevChevronUpMedium,\n duckDevChevronRight,\n duckDevChevronRightMedium,\n duckDevChevronDown,\n duckDevChevronDownMedium,\n duckDevChevronLeft,\n duckDevChevronLeftMedium,\n duckDevChevronsRight,\n duckDevChevronsRightMedium,\n duckDevChevronsLeft,\n duckDevChevronsLeftMedium,\n duckDevChevronsSwitch,\n duckDevDatabase,\n duckDevDatabaseMedium,\n duckDevHome,\n duckDevHomeMedium,\n duckDevUser,\n duckDevUserMedium,\n duckDevUsers,\n duckDevUsersBg,\n duckDevUsersMedium,\n duckDevUserPlus,\n duckDevUserPlusMedium,\n duckDevCopy,\n duckDevCopyMedium,\n duckDevSidebar,\n duckDevSidebarMedium,\n duckDevChart,\n duckDevFolder,\n duckDevFolderMedium,\n duckDevFolderOpen,\n duckDevFolderOpenMedium,\n duckDevPlus,\n duckDevPlusMedium,\n duckDevPlusCircle,\n duckDevFiltersLines,\n duckDevFiltersLinesMedium,\n duckDevSearch,\n duckDevSearchMedium,\n duckDevGrid,\n duckDevGridMedium,\n duckDevList,\n duckDevListMedium,\n duckDevSortAZMedium,\n duckDevFlagBold,\n duckDevFileText,\n duckDevFileTextMedium,\n duckDevLink,\n duckDevExternalLinkMedium,\n duckDevLinkBroken,\n duckDevLinkBrokenMedium,\n duckDevClockMedium,\n duckDevInfo,\n duckDevInfoMedium,\n duckDevInfoCircle,\n duckDevInfoCircleBg,\n duckDevAlertTriangle,\n duckDevAlertTriangleMedium,\n duckDevAlertCircle,\n duckDev2Layers,\n duckDev2LayersMedium,\n duckDev3Layers,\n duckDev3LayersMedium,\n duckDevLearningMedium,\n duckDevBellMedium,\n duckDevMessageCircle,\n duckDevMessageCircleMedium,\n duckDevSlashDivider,\n duckDevCaretDownFillXxs,\n duckDevCaretDownFill,\n duckDevDragHandleDots,\n duckDevPlayCircle,\n duckDevPlayCircleMedium,\n duckDevUpload,\n duckDevUploadMedium,\n duckDevMaximize,\n duckDevMaximizeMedium,\n duckDevArrowUpRight,\n duckDevArrowUpRightMedium,\n duckDevPaperclip,\n duckDevPaperclipMedium,\n duckDevToolsMedium,\n duckDevPartsMedium,\n duckDevPrimitive,\n duckDevPrimitiveMedium,\n duckDevTank,\n duckDevTankMedium,\n duckDevVariant,\n duckDevVariantMedium,\n duckDevChecklist,\n duckDevRefreshCcwMedium,\n duckDevRefreshCcw,\n duckDevBarChartMedium,\n duckDevBarChart,\n duckDevCurvedArrow,\n duckDevBulletFillMedium,\n duckDevBulletMedium,\n duckDevArrowRight,\n duckDevArrowRightMedium,\n duckDevImage,\n duckDevCutLinearMedium,\n duckDevCutLinear,\n duckDevForkLift,\n duckDevForkLiftMedium,\n duckDevPartPrimitive,\n duckDevPartPrimitiveMedium,\n duckDevChecklistsMedium,\n duckDevMoon,\n duckDevMoonMedium,\n duckDevSunMedium,\n duckDevTool,\n duckDevToolMedium,\n duckDevCamera,\n duckDevPanModeMedium,\n duckDevBin,\n duckDevBinMedium,\n duckDevComputerChipMedium,\n duckDevAccessories,\n duckDevAccessoriesMedium,\n duckDevLogisticVehicle,\n duckDevLogisticVehicleMedium,\n duckDevCollapse,\n duckDevCollapseMedium,\n duckDevBookOpenMedium,\n duckDevBriefcaseMedium,\n duckDevCreditCardMedium,\n duckDevBookOpen,\n duckDevBriefcase,\n duckDevCreditCard,\n duckDevLogOut,\n duckDevOrderMedium,\n duckDevCalendarMedium,\n duckDevMapPin,\n duckDevBuildingMedium,\n duckDevStopCircleMedium,\n duckDevPauseCircleMedium,\n duckDevPlayCircleFilledMedium,\n duckDevMenuMedium,\n duckDevTeaCupMedium,\n duckDevSubstageInstructionMedium,\n duckDevTaskInstructionMedium,\n duckDevToolsInstructionSm,\n duckDevApprovalInstructionSm,\n duckDevQuestionCircleBold,\n duckDevHammerBold,\n duckDevAlignLeftSm,\n duckDevChecklistSm,\n duckDevMessageSquare,\n duckDevMessageSquareSm,\n duckDevMinimize2,\n duckDevMinimize2Sm,\n duckDevHistorySm,\n duckDevSun,\n duckDevGlobeSm,\n duckDevPaletteSm,\n duckDevLogOutMedium,\n duckDevEyeBold,\n duckDevEyeBoldMedium\n};\n","import { CUI_ICONS } from './icons';\n\nexport interface SvgIcon {\n id: string;\n name: string;\n svg: string;\n}\n\nfunction camelToKebab(input: string): string {\n // Convert camelCase/PascalCase to kebab-case\n return input\n .replace(/([a-z0-9])([A-Z])/g, '$1-$2')\n .replace(/([A-Z])([A-Z][a-z])/g, '$1-$2')\n .toLowerCase();\n}\n\nfunction titleFromKey(key: string): string {\n const withoutPrefix = key.startsWith('duckDev') ? key.substring('duckDev'.length) : key;\n const words = withoutPrefix.replace(/([a-z0-9])([A-Z])/g, '$1 $2').replace(/([A-Z])([A-Z][a-z])/g, '$1 $2');\n // Trim and capitalize first letter of each word (keep existing upper case like V2)\n return words\n .trim()\n .split(/\\s+/)\n .map(w => w.charAt(0).toUpperCase() + w.slice(1))\n .join(' ');\n}\n\nexport const svgIcons: SvgIcon[] = Object.entries(CUI_ICONS).map(([key, svg]) => {\n const kebab = camelToKebab(key);\n const id = kebab.startsWith('duck-dev') ? kebab : `duck-dev-${kebab}`;\n return {\n id,\n name: titleFromKey(key),\n svg: svg as string,\n } as SvgIcon;\n});\n","import {Component, input} from '@angular/core';\nimport {FormGroup, ReactiveFormsModule} from '@angular/forms';\n\n@Component({\n selector: 'duck-dev-input',\n imports: [\n ReactiveFormsModule\n ],\n templateUrl: './duck-dev-input.html',\n styleUrl: './duck-dev-input.scss',\n})\nexport class DuckDevInput {\n public form = input.required<FormGroup>();\n public controlName = input.required<string>();\n public label = input<string>('');\n public placeholder = input<string>('');\n public type = input<string>('text');\n public formInputType = input<'input' | 'textarea' | 'checkbox'>('input');\n public errorMessage = input<string>('');\n}\n","<label\n [for]=\"controlName()\"\n class=\"form-label\"\n>\n {{ label() }}\n</label>\n\n<div\n class=\"form-field\"\n [class.checkbox-inout-field]=\"formInputType() === 'checkbox'\"\n [formGroup]=\"form()\"\n>\n @switch (formInputType()) {\n @case ('checkbox') {\n <div class=\"checkbox-wrapper\">\n <input\n class=\"inp-cbx\"\n [id]=\"controlName()\"\n type=\"checkbox\"\n formControlName=\"{{ controlName() }}\"\n />\n <label\n class=\"cbx\"\n [for]=\"controlName()\"\n >\n <span>\n <svg\n width=\"12px\"\n height=\"10px\"\n viewbox=\"0 0 12 10\"\n >\n <polyline points=\"1.5 6 4.5 9 10.5 1\" />\n </svg>\n </span>\n <span><ng-content /></span>\n </label>\n </div>\n }\n @case ('textarea') {\n <textarea\n [id]=\"controlName()\"\n formControlName=\"{{ controlName() }}\"\n class=\"form-input form-input_textarea\"\n [class.error]=\"form().get(controlName())?.invalid && form().get(controlName())?.touched\"\n [placeholder]=\"placeholder()\"\n ></textarea>\n }\n @default {\n <input\n [id]=\"controlName()\"\n [type]=\"type()\"\n formControlName=\"{{ controlName() }}\"\n class=\"form-input\"\n [class.error]=\"form().get(controlName())?.invalid && form().get(controlName())?.touched\"\n [placeholder]=\"placeholder()\"\n />\n }\n }\n\n @if (errorMessage()) {\n <div class=\"error-message\">\n {{ errorMessage() }}\n </div>\n }\n</div>\n","import { Injectable, signal } from '@angular/core';\nimport { NotificationPosition, NotificationType } from './duck-dev-notification/duck-dev-notification';\n\nexport interface NotificationItem {\n id: number;\n type: NotificationType;\n position: NotificationPosition;\n title: string;\n message: string;\n duration: number;\n}\n\n@Injectable({ providedIn: 'root' })\nexport class DuckDevNotificationService {\n private seq = 1;\n private timers = new Map<number, number>();\n\n readonly items = signal<NotificationItem[]>([]);\n\n show(options: Partial<Omit<NotificationItem, 'id'>> & Pick<NotificationItem, 'message'>): number {\n const id = this.seq++;\n const item: NotificationItem = {\n id,\n type: options.type ?? 'success',\n position: options.position ?? 'top',\n title: options.title ?? this.defaultTitle(options.type ?? 'success'),\n message: options.message,\n duration: options.duration ?? 3000,\n };\n\n this.items.update(list => [item, ...list]);\n\n if (item.duration > 0) {\n const t = window.setTimeout(() => this.remove(id), item.duration + 350);\n this.timers.set(id, t);\n }\n return id;\n }\n\n success(message: string, opts: Partial<Omit<NotificationItem, 'id' | 'type' | 'message'>> = {}): number {\n return this.show({ ...opts, type: 'success', message });\n }\n\n warning(message: string, opts: Partial<Omit<NotificationItem, 'id' | 'type' | 'message'>> = {}): number {\n return this.show({ ...opts, type: 'warning', message });\n }\n\n error(message: string, opts: Partial<Omit<NotificationItem, 'id' | 'type' | 'message'>> = {}): number {\n return this.show({ ...opts, type: 'error', message });\n }\n\n remove(id: number): void {\n const timer = this.timers.get(id);\n if (timer) {\n clearTimeout(timer);\n this.timers.delete(id);\n }\n this.items.update(list => list.filter(i => i.id !== id));\n }\n\n clear(): void {\n this.items().forEach(i => this.remove(i.id));\n }\n\n private defaultTitle(type: NotificationType): string {\n switch (type) {\n case 'success':\n return 'Success';\n case 'warning':\n return 'Warning';\n case 'error':\n return 'Error';\n }\n }\n}\n","import {Component, OnDestroy, computed, signal, inject} from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\nimport { TranslocoPipe } from '@jsverse/transloco';\nimport { svgIcons, SvgIcon } from '../../svg-source-code/icons';\nimport { DuckDevInput } from '../../duck-dev-input';\nimport { FormBuilder, FormGroup } from '@angular/forms';\nimport { Subscription } from 'rxjs';\nimport { ButtonFlip } from '../../duck-dev-button';\nimport {DuckDevNotificationService} from '../../duck-dev-notification/notification.service';\n\n@Component({\n selector: 'app-duck-dev-svg-block',\n imports: [TranslocoPipe, DuckDevInput, ButtonFlip],\n templateUrl: './duck-dev-svg-block.html',\n styleUrl: './duck-dev-svg-block.scss',\n})\nexport class DuckDevSvgBlock implements OnDestroy {\n private readonly notify = inject(DuckDevNotificationService);\n public icons: SvgIcon[] = svgIcons;\n\n public search = signal<string>('');\n public page = signal<number>(1);\n public readonly pageSize = 50;\n\n public searchForm: FormGroup;\n private sub?: Subscription;\n\n public copiedId = signal<string | null>(null);\n private copiedTimer?: any;\n\n // derived lists\n public filteredIcons = computed(() => {\n const q = this.search().trim().toLowerCase();\n if (!q) return this.icons;\n return this.icons.filter(i =>\n i.name.toLowerCase().includes(q) || i.id.toLowerCase().includes(q)\n );\n });\n\n public totalPages = computed(() => {\n const total = this.filteredIcons().length;\n return total === 0 ? 1 : Math.ceil(total / this.pageSize);\n });\n\n public paginatedIcons = computed(() => {\n const p = this.page();\n const size = this.pageSize;\n const start = (p - 1) * size;\n return this.filteredIcons().slice(start, start + size);\n });\n\n constructor(private sanitizer: DomSanitizer, fb: FormBuilder) {\n this.searchForm = fb.group({\n search: [''],\n });\n this.sub = this.searchForm.get('search')!.valueChanges.subscribe((value: string) => {\n this.search.set(value ?? '');\n this.page.set(1);\n });\n }\n\n ngOnDestroy(): void {\n this.sub?.unsubscribe();\n if (this.copiedTimer) clearTimeout(this.copiedTimer);\n }\n\n public getSafeHtml(svg: string): SafeHtml {\n return this.sanitizer.bypassSecurityTrustHtml(svg);\n }\n\n public async copyTag(id: string, event?: Event): Promise<void> {\n event?.stopPropagation?.();\n const tag = `<duck-dev-icon name=\"${id}\"></duck-dev-icon>`;\n try {\n if (navigator.clipboard?.writeText) {\n this.notify.success(`There is a tag in the clipboard ${tag}`);\n await navigator.clipboard.writeText(tag);\n } else {\n const textarea = document.createElement('textarea');\n textarea.value = tag;\n textarea.style.position = 'fixed';\n textarea.style.opacity = '0';\n document.body.appendChild(textarea);\n textarea.select();\n document.execCommand('copy');\n document.body.removeChild(textarea);\n }\n this.copiedId.set(id);\n if (this.copiedTimer) clearTimeout(this.copiedTimer);\n this.copiedTimer = setTimeout(() => this.copiedId.set(null), 1500);\n } catch (e) {\n // no-op\n }\n }\n\n public prevPage(): void {\n const p = this.page();\n if (p > 1) this.page.set(p - 1);\n }\n\n public nextPage(): void {\n const p = this.page();\n const max = this.totalPages();\n if (p < max) this.page.set(p + 1);\n }\n}\n","<div class=\"demo-container\">\n <h1>{{ 'svgComponent.title' | transloco }}</h1>\n\n <section class=\"component-section\">\n <h2>{{ 'svgComponent.description' | transloco }}</h2>\n <p class=\"description\">\n {{ 'svgComponent.descriptionText' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'svgComponent.usage' | transloco }}</h3>\n <p>{{ 'svgComponent.usageText1' | transloco }}</p>\n <p>{{ 'svgComponent.usageText2' | transloco }}</p>\n <p>{{ 'svgComponent.usageText3' | transloco }}</p>\n </div>\n\n <div class=\"example-block\">\n <h3>{{ 'svgComponent.availableIcons' | transloco }}</h3>\n\n <div class=\"icons-toolbar\">\n <duck-dev-input\n [form]=\"searchForm\"\n controlName=\"search\"\n [placeholder]=\"'svgComponent.searchPlaceholder' | transloco\"\n type=\"text\"\n />\n <div class=\"icons-stats\">\n Page {{ page() }} / {{ totalPages() }} •\n Showing\n {{ (paginatedIcons().length === 0) ? 0 : ((page() - 1) * pageSize + 1) }}–\n {{ ((page() - 1) * pageSize) + paginatedIcons().length }}\n of {{ filteredIcons().length }}\n </div>\n </div>\n\n @if (filteredIcons().length === 0) {\n <p>No icons found.</p>\n } @else {\n <div class=\"icons-showcase\">\n @for (icon of paginatedIcons(); track icon.id) {\n <div class=\"icon-card\" (click)=\"copyTag(icon.id)\" role=\"button\" tabindex=\"0\">\n <div class=\"icon-display\" [innerHTML]=\"getSafeHtml(icon.svg)\"></div>\n <div class=\"icon-name\">{{ icon.name }}</div>\n <div class=\"icon-id\">{{ icon.id }}</div>\n <code class=\"icon-tag\" [title]=\"(copiedId() === icon.id) ? ('svgComponent.copied' | transloco) : ('svgComponent.clickToCopy' | transloco)\">&lt;{{ icon.id }}&gt;</code>\n <div class=\"copy-hint\">{{ (copiedId() === icon.id) ? ('svgComponent.copied' | transloco) : ('svgComponent.clickToCopy' | transloco) }}</div>\n </div>\n }\n </div>\n\n <div class=\"pagination-controls\">\n <duck-dev-button-flip [text]=\"'Prev'\" (click)=\"prevPage()\" [direction]=\"'previous'\"></duck-dev-button-flip>\n <span>Page {{ page() }} of {{ totalPages() }}</span>\n <duck-dev-button-flip [text]=\"'Next'\" (click)=\"nextPage()\"></duck-dev-button-flip>\n </div>\n }\n </div>\n\n <div class=\"implementation-block\">\n <h3>{{ 'svgComponent.howToAdd' | transloco }}</h3>\n <ol>\n <li>{{ 'svgComponent.step1' | transloco }}</li>\n <li>{{ 'svgComponent.step2' | transloco }}</li>\n <li>{{ 'svgComponent.step3' | transloco }}</li>\n </ol>\n </div>\n </section>\n</div>\n","import { Component } from '@angular/core';\nimport {TranslocoPipe} from '@jsverse/transloco';\n\n@Component({\n selector: 'app-input-block',\n imports: [\n TranslocoPipe\n ],\n templateUrl: './input-block.html',\n styleUrl: './input-block.scss',\n})\nexport class InputBlock {\n\n}\n","<div class=\"demo-container\">\n <h1>{{ 'inputComponent.title' | transloco }}</h1>\n\n <!-- Input Field Component -->\n <section class=\"component-section\">\n <h2>{{ 'inputComponent.inputField.title' | transloco }}</h2>\n <p class=\"description\">\n {{ 'inputComponent.inputField.description' | transloco }}\n </p>\n\n <div class=\"usage-block\">\n <h3>{{ 'inputComponent.inputField.usage' | transloco }}</h3>\n <p>{{ 'inputComponent.inputField.usageText1' | transloco }}</p>\n <p>{{ 'inputComponent.inputField.usageText2' | transloco }}</p>\n <p>{{ 'inputComponent.inputField.usageText3' | transloco }}</p>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'inputComponent.inputField.inputs' | transloco }}</h3>\n <ul>\n <li><strong>form</strong> ({{ 'inputComponent.inputField.required' | transloco }}) - {{ 'inputComponent.inputField.inputForm' | transloco }}</li>\n <li><strong>controlName</strong> ({{ 'inputComponent.inputField.required' | transloco }}) - {{ 'inputComponent.inputField.inputControlName' | transloco }}</li>\n <li><strong>label</strong> ({{ 'inputComponent.inputField.optional' | transloco }}) - {{ 'inputComponent.inputField.inputLabel' | transloco }}</li>\n <li><strong>placeholder</strong> ({{ 'inputComponent.inputField.optional' | transloco }}) - {{ 'inputComponent.inputField.inputPlaceholder' | transloco }}</li>\n <li><strong>type</strong> ({{ 'inputComponent.inputField.optional' | transloco }}) - {{ 'inputComponent.inputField.inputType' | transloco }}</li>\n <li><strong>formInputType</strong> ({{ 'inputComponent.inputField.optional' | transloco }}) - {{ 'inputComponent.inputField.inputFormInputType' | transloco }}\n <ul>\n <li>'input' - {{ 'inputComponent.inputField.typeInput' | transloco }}</li>\n <li>'textarea' - {{ 'inputComponent.inputField.typeTextarea' | transloco }}</li>\n <li>'checkbox' - {{ 'inputComponent.inputField.typeCheckbox' | transloco }}</li>\n </ul>\n </li>\n <li><strong>errorMessage</strong> ({{ 'inputComponent.inputField.optional' | transloco }}) - {{ 'inputComponent.inputField.inputErrorMessage' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"features-block\">\n <h3>{{ 'inputComponent.inputField.features' | transloco }}</h3>\n <ul>\n <li>{{ 'inputComponent.inputField.feature1' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.feature2' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.feature3' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.feature4' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.feature5' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.feature6' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.feature7' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"api-block\">\n <h3>{{ 'inputComponent.inputField.api' | transloco }}</h3>\n <ul>\n <li><strong>form: FormGroup</strong> - {{ 'inputComponent.inputField.apiForm' | transloco }}</li>\n <li><strong>controlName: string</strong> - {{ 'inputComponent.inputField.apiControlName' | transloco }}</li>\n <li><strong>label?: string</strong> - {{ 'inputComponent.inputField.apiLabel' | transloco }}</li>\n <li><strong>placeholder?: string</strong> - {{ 'inputComponent.inputField.apiPlaceholder' | transloco }}</li>\n <li><strong>type?: string</strong> - {{ 'inputComponent.inputField.apiType' | transloco }}</li>\n <li><strong>formInputType?: 'input' | 'textarea' | 'checkbox'</strong> - {{ 'inputComponent.inputField.apiFormInputType' | transloco }}</li>\n <li><strong>errorMessage?: string</strong> - {{ 'inputComponent.inputField.apiErrorMessage' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"implementation-block\">\n <h3>{{ 'inputComponent.inputField.implementation' | transloco }}</h3>\n <ul>\n <li>{{ 'inputComponent.inputField.implementation1' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.implementation2' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.implementation3' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.implementation4' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.implementation5' | transloco }}</li>\n <li>{{ 'inputComponent.inputField.implementation6' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"example-block\">\n <h3>{{ 'inputComponent.inputField.example' | transloco }}</h3>\n <div class=\"example-wrapper\">\n <h4>{{ 'inputComponent.inputField.exampleComponent' | transloco }}</h4>\n <pre><code>import &#123; Component &#125; from '&#64;angular/core';\nimport &#123; FormBuilder, FormGroup, Validators &#125; from '&#64;angular/forms';\nimport &#123; InputFieldComponent &#125; from './input-field.component';\n\n &#64;Component(&#123;\n selector: 'app-example',\n imports: [InputFieldComponent],\n template: `\n &lt;form [formGroup]=\"exampleForm\"&gt;\n &lt;!-- Text Input --&gt;\n &lt;dd-input-field\n [form]=\"exampleForm\"\n controlName=\"username\"\n label=\"Username\"\n placeholder=\"Enter your username\"\n [errorMessage]=\"getUsernameError()\"\n /&gt;\n\n &lt;!-- Email Input --&gt;\n &lt;dd-input-field\n [form]=\"exampleForm\"\n controlName=\"email\"\n label=\"Email\"\n type=\"email\"\n placeholder=\"example&#64;mail.com\"\n [errorMessage]=\"getEmailError()\"\n /&gt;\n\n &lt;!-- Password Input --&gt;\n &lt;dd-input-field\n [form]=\"exampleForm\"\n controlName=\"password\"\n label=\"Password\"\n type=\"password\"\n placeholder=\"Enter password\"\n [errorMessage]=\"getPasswordError()\"\n /&gt;\n\n &lt;!-- Textarea --&gt;\n &lt;dd-input-field\n [form]=\"exampleForm\"\n controlName=\"description\"\n label=\"Description\"\n formInputType=\"textarea\"\n placeholder=\"Enter description\"\n /&gt;\n\n &lt;!-- Checkbox --&gt;\n &lt;dd-input-field\n [form]=\"exampleForm\"\n controlName=\"agree\"\n label=\"Agreement\"\n formInputType=\"checkbox\"\n &gt;\n I agree to the terms and conditions\n &lt;/dd-input-field&gt;\n &lt;/form&gt;\n `\n&#125;)\nexport class ExampleComponent &#123;\n exampleForm: FormGroup;\n\n constructor(private fb: FormBuilder) &#123;\n this.exampleForm = this.fb.group(&#123;\n username: ['', [Validators.required, Validators.minLength(3)]],\n email: ['', [Validators.required, Validators.email]],\n password: ['', [Validators.required, Validators.minLength(8)]],\n description: [''],\n agree: [false, Validators.requiredTrue]\n &#125;);\n &#125;\n\n getUsernameError(): string &#123;\n const control = this.exampleForm.get('username');\n if (control?.hasError('required') && control?.touched) &#123;\n return 'Username is required';\n &#125;\n if (control?.hasError('minlength') && control?.touched) &#123;\n return 'Username must be at least 3 characters';\n &#125;\n return '';\n &#125;\n\n getEmailError(): string &#123;\n const control = this.exampleForm.get('email');\n if (control?.hasError('required') && control?.touched) &#123;\n return 'Email is required';\n &#125;\n if (control?.hasError('email') && control?.touched) &#123;\n return 'Invalid email format';\n &#125;\n return '';\n &#125;\n\n getPasswordError(): string &#123;\n const control = this.exampleForm.get('password');\n if (control?.hasError('required') && control?.touched) &#123;\n return 'Password is required';\n &#125;\n if (control?.hasError('minlength') && control?.touched) &#123;\n return 'Password must be at least 8 characters';\n &#125;\n return '';\n &#125;\n&#125;</code></pre>\n </div>\n </div>\n </section>\n</div>\n","import { Component, inject } from '@angular/core';\nimport { TranslocoModule } from '@jsverse/transloco';\nimport { DuckDevNotificationService } from '../../duck-dev-notification/notification.service';\n\n@Component({\n selector: 'app-notification-block',\n imports: [TranslocoModule],\n templateUrl: './notification-block.html',\n styleUrl: './notification-block.scss',\n})\nexport class NotificationBlock {\n private readonly notify = inject(DuckDevNotificationService);\n\n showSample(): void {\n this.notify.success('Saved successfully', { title: 'Done', position: 'top', duration: 3000 });\n }\n\n successTop(): void {\n this.notify.success('All changes have been saved.', { title: 'Success', position: 'top' });\n }\n\n warningCenter(): void {\n this.notify.warning('Check the entered data.', { title: 'Warning', position: 'center', duration: 0 });\n }\n\n errorBottom(): void {\n this.notify.error('Something went wrong.', { title: 'Error', position: 'bottom' });\n }\n\n // Additional demos\n showTop(): void {\n this.notify.show({ message: 'Generic info message', title: 'Info', position: 'top', duration: 2500, type: 'success' });\n }\n\n showCenterNoAuto(): void {\n this.notify.show({ message: 'This will stay until you click it', title: 'Manual close', position: 'center', duration: 0, type: 'warning' });\n }\n\n showBottomLong(): void {\n this.notify.show({ message: 'Takes a bit longer to disappear', title: 'Longer duration', position: 'bottom', duration: 6000, type: 'success' });\n }\n\n clearAll(): void {\n this.notify.clear();\n }\n}\n","<div class=\"demo-container\">\n <h1>{{ 'notifications.title' | transloco }}</h1>\n\n <!-- Quick demo -->\n <div class=\"example-row quick-actions\">\n <button class=\"demo-btn\" (click)=\"showSample()\">{{ 'notifications.quickDemo' | transloco }}</button>\n <button class=\"demo-btn\" (click)=\"clearAll()\">{{ 'notifications.clearAll' | transloco }}</button>\n </div>\n\n <!-- Basics -->\n <section class=\"component-section\">\n <h2>{{ 'notifications.basic.title' | transloco }}</h2>\n <p class=\"description\">{{ 'notifications.basic.description' | transloco }}</p>\n\n <div class=\"usage-block\">\n <h3>{{ 'notifications.basic.usage' | transloco }}</h3>\n <pre><code>&lt;duck-dev-notification-container /&gt;\n\n// In your component:\nconstructor(private notify: DuckDevNotificationService) &#123;&#125;\n\nonSave() &#123;\n this.notify.success('Saved successfully', &#123; title: 'Done', position: 'top', duration: 3000 &#125;);\n&#125;\n</code></pre>\n </div>\n\n <div class=\"inputs-block\">\n <h3>{{ 'notifications.basic.inputs' | transloco }}</h3>\n <ul>\n <li><strong>type</strong> - {{ 'notifications.basic.inputType' | transloco }}</li>\n <li><strong>title</strong> - {{ 'notifications.basic.inputTitle' | transloco }}</li>\n <li><strong>message</strong> - {{ 'notifications.basic.inputMessage' | transloco }}</li>\n <li><strong>duration</strong> - {{ 'notifications.basic.inputDuration' | transloco }}</li>\n <li><strong>position</strong> - {{ 'notifications.basic.inputPosition' | transloco }}</li>\n </ul>\n </div>\n\n <div class=\"examples-block\">\n <h3>{{ 'notifications.basic.examples' | transloco }}</h3>\n <div class=\"example-row\">\n <button class=\"demo-btn\" (click)=\"successTop()\">{{ 'notifications.examples.successTop' | transloco }}</button>\n <button class=\"demo-btn\" (click)=\"warningCenter()\">{{ 'notifications.examples.warningCenter' | transloco }}</button>\n <button class=\"demo-btn\" (click)=\"errorBottom()\">{{ 'notifications.examples.errorBottom' | transloco }}</button>\n </div>\n </div>\n </section>\n\n <!-- Service and Container -->\n <section class=\"component-section\">\n <h2>{{ 'notifications.service.title' | transloco }}</h2>\n <p class=\"description\">{{ 'notifications.service.description' | transloco }}</p>\n\n <div class=\"usage-block\">\n <h3>{{ 'notifications.service.install' | transloco }}</h3>\n <pre><code>// 1) Place container once in app layout (e.g., AppComponent template)\n&lt;duck-dev-notification-container /&gt;\n\n// 2) Inject and use the service in any component\nconstructor(private notify: DuckDevNotificationService) &#123;&#125;\n\nthis.notify.show(&#123;\n type: 'success',\n title: '{{ 'notifications.snippets.titleSuccess' | transloco }}',\n message: '{{ 'notifications.snippets.sampleMessage' | transloco }}',\n position: 'top',\n duration: 3000\n&#125;);\n</code></pre>\n </div>\n\n <div class=\"api-block\">\n <h3>{{ 'notifications.api.title' | transloco }}</h3>\n <ul class=\"api-list\">\n <li><code>show(options: NotificationOptions)</code> — {{ 'notifications.api.show' | transloco }}</li>\n <li><code>success(message, options?)</code> — {{ 'notifications.api.success' | transloco }}</li>\n <li><code>warning(message, options?)</code> — {{ 'notifications.api.warning' | transloco }}</li>\n <li><code>error(message, options?)</code> — {{ 'notifications.api.error' | transloco }}</li>\n <li><code>remove(id)</code> — {{ 'notifications.api.remove' | transloco }}</li>\n <li><code>clear()</code> — {{ 'notifications.api.clear' | transloco }}</li>\n </ul>\n <h4>{{ 'notifications.api.optionsTitle' | transloco }}</h4>\n <pre><code>interface NotificationOptions &#123;\n type?: 'success' | 'warning' | 'error';\n title?: string;\n message: string;\n position?: 'top' | 'center' | 'bottom';\n duration?: number; // {{ 'notifications.api.durationHint' | transloco }}\n&#125;</code></pre>\n </div>\n </section>\n\n <!-- Positions & duration examples -->\n <section class=\"component-section\">\n <h2>{{ 'notifications.positions.title' | transloco }}</h2>\n <p class=\"description\">{{ 'notifications.positions.description' | transloco }}</p>\n <div class=\"examples-block\">\n <div class=\"example-row\">\n <button class=\"demo-btn\" (click)=\"showTop()\">{{ 'notifications.positions.top' | transloco }}</button>\n <button class=\"demo-btn\" (click)=\"showCenterNoAuto()\">{{ 'notifications.positions.centerNoAuto' | transloco }}</button>\n <button class=\"demo-btn\" (click)=\"showBottomLong()\">{{ 'notifications.positions.bottomLong' | transloco }}</button>\n </div>\n </div>\n <p class=\"tip\">{{ 'notifications.tip.clickToClose' | transloco }}</p>\n </section>\n\n <!-- Advanced -->\n <section class=\"component-section\">\n <h2>{{ 'notifications.advanced.title' | transloco }}</h2>\n <ul>\n <li>{{ 'notifications.advanced.cssOnly' | transloco }}</li>\n <li>{{ 'notifications.advanced.palette' | transloco }}</li>\n <li>{{ 'notifications.advanced.stacking' | transloco }}</li>\n <li>{{ 'notifications.advanced.accessibility' | transloco }}</li>\n </ul>\n </section>\n\n</div>\n","import { Component, input, computed } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\nimport { svgIcons } from '../svg-source-code/icons';\n\n@Component({\n selector: 'duck-dev-icon',\n standalone: true,\n template: `\n <span class=\"duck-dev-icon\" [innerHTML]=\"svgHtml()\"></span>\n `,\n styles: [\n `:host{display:inline-flex;line-height:0}\n .duck-dev-icon{display:inline-flex;}\n `\n ]\n})\nexport class DuckDevIcon {\n private static iconMap = new Map<string, string>(svgIcons.map(i => [i.id, i.svg]));\n\n public readonly name = input.required<string>();\n\n constructor(private sanitizer: DomSanitizer) {}\n\n readonly svgHtml = computed<SafeHtml>(() => {\n const n = this.name();\n const svg = DuckDevIcon.iconMap.get(n) ?? '';\n return this.sanitizer.bypassSecurityTrustHtml(svg);\n });\n}\n","import {Component, input, OnDestroy, OnInit, output, signal} from '@angular/core';\nimport { DuckDevIcon } from '../../duck-dev-icon/duck-dev-icon';\n\nexport type NotificationType = 'success' | 'warning' | 'error';\nexport type NotificationPosition = 'top' | 'center' | 'bottom';\n\n@Component({\n selector: 'duck-dev-notification',\n imports: [DuckDevIcon],\n templateUrl: './duck-dev-notification.html',\n styleUrl: './duck-dev-notification.scss'\n})\nexport class DuckDevNotification implements OnInit, OnDestroy {\n public readonly type = input<NotificationType>('success');\n public readonly title = input.required<string>();\n public readonly message = input.required<string>();\n public readonly duration = input<number>(3000);\n public readonly position = input<NotificationPosition>('top');\n\n public readonly closed = output<void>();\n\n isVisible = signal(false);\n state = signal<'enter' | 'leave'>('enter');\n\n private timer?: number;\n\n public ngOnInit() {\n // Start visible with CSS-only transition\n setTimeout(() => {\n this.isVisible.set(true);\n this.state.set('enter');\n }, 10);\n\n if (this.duration() > 0) {\n this.timer = window.setTimeout(() => {\n this.close();\n }, this.duration());\n }\n }\n\n public close() {\n this.state.set('leave');\n setTimeout(() => {\n this.isVisible.set(false);\n this.closed.emit();\n }, 300);\n }\n\n public ngOnDestroy() {\n if (this.timer) {\n clearTimeout(this.timer);\n }\n }\n}\n","@if (isVisible()) {\n <div\n [class]=\"'notification notification--' + type() + ' notification--pos-' + position() + ' notification--' + state()\"\n (click)=\"close()\">\n <div class=\"notification__icon\">\n <span>@switch (type()){\n @case('success'){\n <duck-dev-icon name=\"duck-dev-check\"></duck-dev-icon>\n }\n @case ('warning'){\n <duck-dev-icon name=\"duck-dev-alert-triangle\"></duck-dev-icon>\n }\n @case ('error'){\n <duck-dev-icon name=\"duck-dev-alert-circle\"></duck-dev-icon>\n }\n }</span>\n </div>\n <div class=\"notification__content\">\n <h4 class=\"notification__title\">{{ title() }}</h4>\n <p class=\"notification__message\">{{ message() }}</p>\n </div>\n <button\n class=\"notification__close\"\n (click)=\"close()\"\n type=\"button\"\n aria-label=\"Закрыть\">\n ×\n </button>\n </div>\n}\n","import { Component, ElementRef, OnDestroy, OnInit, inject } from '@angular/core';\nimport { DuckDevNotification } from './duck-dev-notification';\nimport { DuckDevNotificationService } from '../notification.service';\n\n@Component({\n selector: 'duck-dev-notification-container',\n standalone: true,\n imports: [DuckDevNotification],\n template: `\n @for (n of service.items(); track n.id) {\n <duck-dev-notification\n [type]=\"n.type\"\n [title]=\"n.title\"\n [message]=\"n.message\"\n [duration]=\"n.duration\"\n [position]=\"n.position\"\n (closed)=\"service.remove(n.id)\"\n />\n }\n `,\n styles: [\n `:host{display:contents;}`\n ]\n})\nexport class DuckDevNotificationContainer implements OnInit, OnDestroy {\n readonly service = inject(DuckDevNotificationService);\n private readonly hostRef = inject(ElementRef<HTMLElement>);\n private originalParent?: Node | null;\n private nextSibling?: Node | null;\n\n ngOnInit(): void {\n const el = this.hostRef.nativeElement;\n // Move host to document.body so fixed children are viewport-anchored and above app layout\n this.originalParent = el.parentNode;\n this.nextSibling = el.nextSibling;\n document.body.appendChild(el);\n }\n\n ngOnDestroy(): void {\n // Try to restore the element to its original place (useful in dev HMR or if component is destroyed)\n const el = this.hostRef.nativeElement;\n if (this.originalParent) {\n try {\n if (this.nextSibling && this.originalParent.contains(this.nextSibling)) {\n this.originalParent.insertBefore(el, this.nextSibling);\n } else {\n this.originalParent.appendChild(el);\n }\n } catch {\n // noop if parent is gone\n }\n } else if (el.parentNode === document.body) {\n document.body.removeChild(el);\n }\n }\n}\n","import {Component, signal, inject} from '@angular/core';\nimport {ButtonBlock} from './button-block';\nimport {DuckDevTabItem, DuckDevTabVertical} from '../index';\nimport {LoaderBlock} from './loader-block';\nimport {TabsBlock} from './tabs-block';\nimport {DuckDevSvgBlock} from './duck-dev-svg-block';\nimport {TranslocoService} from '@jsverse/transloco';\nimport {InputBlock} from './input-block/input-block';\nimport {NotificationBlock} from './notification-block';\nimport {DuckDevNotificationContainer} from '../duck-dev-notification/duck-dev-notification/duck-dev-notification-container';\n\n@Component({\n selector: 'duck-dev-main-documentation-page',\n imports: [\n ButtonBlock,\n LoaderBlock,\n TabsBlock,\n DuckDevSvgBlock,\n DuckDevTabVertical,\n InputBlock,\n NotificationBlock,\n DuckDevNotificationContainer\n ],\n templateUrl: './main-documentation-page.html',\n styleUrl: './main-documentation-page.scss',\n})\nexport class MainDocumentationPage {\n private translocoService = inject(TranslocoService);\n\n protected readonly title = signal('demo');\n\n protected readonly tabs: DuckDevTabItem[] = [\n { id: 'buttons', label: this.translocoService.translate('tabs.buttons') },\n { id: 'loaders', label: this.translocoService.translate('tabs.loaders') },\n { id: 'tabs', label: this.translocoService.translate('tabs.tabs') },\n { id: 'input', label: this.translocoService.translate('tabs.input') },\n { id: 'notifications', label: this.translocoService.translate('tabs.notifications') },\n { id: 'svg', label: this.translocoService.translate('tabs.svg') }\n ];\n\n protected readonly activeTab = signal<DuckDevTabItem>(this.tabs[0]);\n\n protected onTabChange(tab: DuckDevTabItem): void {\n this.activeTab.set(tab);\n }\n}\n","<duck-dev-tab-vertical [tabs]=\"tabs\" (tabChange)=\"onTabChange($event)\">\n @if (activeTab().id === 'buttons') {\n <app-button-block />\n }\n @if (activeTab().id === 'loaders') {\n <app-loader-block />\n }\n @if (activeTab().id === 'tabs') {\n <app-tabs-block />\n }\n @if(activeTab().id === 'input'){\n <app-input-block />\n }\n @if(activeTab().id === 'notifications'){\n <app-notification-block />\n }\n @if (activeTab().id === 'svg') {\n <app-duck-dev-svg-block />\n }\n</duck-dev-tab-vertical>\n\n<duck-dev-notification-container />\n","import { Translation } from '@jsverse/transloco';\n\nexport const DuckDevLibTranslations: Record<string, Promise<Translation>> = {\n en: import('../i18n/en.json'),\n ru: import('../i18n/ru.json')\n} as const;\n","/*\n * Public API Surface of duck-dev-lib\n */\nexport * from './lib'\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i1","i2"],"mappings":"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"}