Button update (#3413)

* New icons added

push-small, pull-small, rebase-small, local-remote, remote. local

* added new button properties

- `badgeLabel` and `badgeIcon`
This commit is contained in:
Pavel Laptev 2024-04-03 01:33:31 +02:00 committed by GitHub
parent 3c2b3b0de1
commit b47acdfc33
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 128 additions and 32 deletions

View File

@ -19,14 +19,11 @@
// Interaction props
export let element: HTMLAnchorElement | HTMLButtonElement | HTMLElement | null = null;
export let icon: keyof typeof iconsJson | undefined = undefined;
export let isDropdownChild = false;
export let disabled = false;
export let clickable = false;
export let id: string | undefined = undefined;
export let loading = false;
export let tabindex = 0;
export let help = '';
export let type: 'submit' | 'reset' | undefined = undefined;
// Layout props
export let width: number | undefined = undefined;
@ -35,9 +32,15 @@
export let wide = false;
export let grow = false;
export let align: 'flex-start' | 'center' | 'flex-end' | 'stretch' | 'baseline' | 'auto' = 'auto';
export let isDropdownChild = false;
// Style props
export let style: ButtonStyle = 'neutral';
export let kind: ButtonKind = 'soft';
// Additional elements
export let icon: keyof typeof iconsJson | undefined = undefined;
export let help = '';
export let badgeLabel: string | number | undefined = undefined;
export let badgeIcon: keyof typeof iconsJson | undefined = undefined;
const SLOTS = $$props.$$slots;
@ -70,6 +73,18 @@
<slot />
</span>
{/if}
{#if badgeLabel}
<div class="badge">
<span class="text-base-11 text-semibold badge-label">
{badgeLabel}
</span>{#if badgeIcon}
<div class="badge-icon">
<Icon name={badgeIcon} />
</div>{/if}
</div>
{/if}
{#if icon && !loading}
<Icon name={icon} />
{:else if loading}
@ -87,7 +102,7 @@
padding: var(--size-4) var(--size-6);
border-radius: var(--radius-m);
flex-shrink: 0;
gap: var(--size-2);
gap: var(--size-4);
border: 1px solid transparent;
transition:
background var(--transition-fast),
@ -96,6 +111,7 @@
cursor: pointer;
/* component variables */
--label-color: var(--clr-scale-ntrl-100);
--soft-bg-ratio: transparent 80%;
--soft-hover-ratio: transparent 75%;
@ -144,6 +160,32 @@
padding: 0 var(--size-2);
}
/* BADGE */
.badge {
display: flex;
align-items: center;
justify-content: center;
height: var(--size-control-icon);
min-width: var(--size-control-icon);
padding: 0 var(--size-4);
border-radius: var(--radius-s);
}
.badge-label {
transform: translateY(0.031rem);
color: var(--label-color);
}
.badge-icon {
display: flex;
align-items: center;
justify-content: center;
width: var(--size-control-icon);
height: var(--size-control-icon);
margin-right: -0.125rem;
color: var(--label-color);
}
/* STYLES */
.neutral {
/* kind */
@ -155,6 +197,11 @@
color: var(--clr-scale-ntrl-30);
background: color-mix(in srgb, var(--clr-core-ntrl-50), var(--soft-hover-ratio));
}
& .badge {
--label-color: var(--clr-scale-ntrl-100);
background: var(--clr-scale-ntrl-30);
}
}
&.solid {
color: var(--clr-scale-ntrl-100);
@ -163,6 +210,11 @@
&:not(.not-button, &:disabled):hover {
background: var(--clr-scale-ntrl-30);
}
& .badge {
--label-color: var(--clr-scale-ntrl-30);
background: var(--clr-scale-ntrl-100);
}
}
}
@ -175,6 +227,11 @@
color: var(--clr-scale-ntrl-30);
background: color-mix(in srgb, transparent, var(--darken-tint-light));
}
& .badge {
--label-color: var(--clr-scale-ntrl-100);
background: var(--clr-scale-ntrl-30);
}
}
&.solid {
@ -196,6 +253,11 @@
color: var(--clr-scale-pop-10);
background: color-mix(in srgb, var(--clr-core-pop-50), var(--soft-hover-ratio));
}
& .badge {
--label-color: var(--clr-scale-ntrl-100);
background: var(--clr-scale-pop-20);
}
}
&.solid {
color: var(--clr-theme-pop-on-element);
@ -204,6 +266,11 @@
&:not(.not-button, &:disabled):hover {
background: color-mix(in srgb, var(--clr-theme-pop-element), var(--darken-mid));
}
& .badge {
--label-color: var(--clr-theme-pop-element);
background: var(--clr-core-ntrl-100);
}
}
}
@ -216,6 +283,11 @@
color: var(--clr-scale-succ-10);
background: color-mix(in srgb, var(--clr-core-succ-50), var(--soft-hover-ratio));
}
& .badge {
--label-color: var(--clr-scale-ntrl-100);
background: var(--clr-scale-succ-20);
}
}
&.solid {
color: var(--clr-theme-succ-on-element);
@ -224,6 +296,11 @@
&:not(.not-button, &:disabled):hover {
background: color-mix(in srgb, var(--clr-theme-succ-element), var(--darken-mid));
}
& .badge {
--label-color: var(--clr-theme-succ-element);
background: var(--clr-core-ntrl-100);
}
}
}
@ -236,6 +313,11 @@
color: var(--clr-scale-err-10);
background: color-mix(in srgb, var(--clr-core-err-50), var(--soft-hover-ratio));
}
& .badge {
--label-color: var(--clr-scale-ntrl-100);
background: var(--clr-scale-err-20);
}
}
&.solid {
color: var(--clr-theme-err-on-element);
@ -244,6 +326,11 @@
&:not(.not-button, &:disabled):hover {
background: color-mix(in srgb, var(--clr-theme-err-element), var(--darken-mid));
}
& .badge {
--label-color: var(--clr-theme-err-element);
background: var(--clr-core-ntrl-100);
}
}
}
@ -256,6 +343,11 @@
color: var(--clr-scale-warn-10);
background: color-mix(in srgb, var(--clr-core-warn-50), var(--soft-hover-ratio));
}
& .badge {
--label-color: var(--clr-scale-ntrl-100);
background: var(--clr-scale-warn-20);
}
}
&.solid {
color: var(--clr-theme-warn-on-element);
@ -264,6 +356,11 @@
&:not(.not-button, &:disabled):hover {
background: color-mix(in srgb, var(--clr-theme-warn-element), var(--darken-mid));
}
& .badge {
--label-color: var(--clr-theme-warn-element);
background: var(--clr-core-ntrl-100);
}
}
}
@ -276,6 +373,11 @@
color: var(--clr-scale-purple-10);
background: color-mix(in srgb, var(--clr-core-purple-50), var(--soft-hover-ratio));
}
& .badge {
--label-color: var(--clr-scale-ntrl-100);
background: var(--clr-scale-purple-20);
}
}
&.solid {
color: var(--clr-theme-purple-on-element);
@ -284,6 +386,11 @@
&:not(.not-button, &:disabled):hover {
background: color-mix(in srgb, var(--clr-theme-purple-element), var(--darken-mid));
}
& .badge {
--label-color: var(--clr-theme-purple-element);
background: var(--clr-core-ntrl-100);
}
}
}

View File

@ -10,6 +10,8 @@
export let loading = false;
export let wide = false;
export let help = '';
export let badgeLabel: string | number | undefined = undefined;
export let badgeIcon: keyof typeof iconsJson | undefined = undefined;
let visible = false;
export function show() {
@ -32,13 +34,14 @@
{icon}
{kind}
{help}
{badgeLabel}
{badgeIcon}
iconAlign="left"
disabled={disabled || loading}
isDropdownChild
on:click><slot /></Button
>
<Button
class="dropdown__icon-btn"
bind:element={iconElt}
{style}
{kind}
@ -70,26 +73,6 @@
position: relative;
}
.dropdown-wrapper :global(.dropdown__text-btn) {
z-index: 1;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
&:hover {
z-index: 2;
}
}
.dropdown-wrapper :global(.dropdown__icon-btn) {
z-index: 1;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
&:hover {
z-index: 2;
}
}
.dropdown {
display: flex;
flex-grow: 1;

View File

@ -1,8 +1,10 @@
{
"ai-small": "M2.83484 9.45537C2.6525 9.39459 2.6525 9.13668 2.83484 9.0759L4.66852 8.46467C5.26573 8.2656 5.73436 7.79697 5.93343 7.19976L6.54465 5.36609C6.60543 5.18375 6.86334 5.18375 6.92412 5.36609L7.53535 7.19976C7.73442 7.79697 8.20305 8.26561 8.80026 8.46468L10.6339 9.0759C10.8163 9.13668 10.8163 9.39459 10.6339 9.45537L8.80026 10.0666C8.20305 10.2657 7.73442 10.7343 7.53535 11.3315L6.92412 13.1652C6.86334 13.3475 6.60543 13.3475 6.54465 13.1652L5.93343 11.3315C5.73436 10.7343 5.26573 10.2657 4.66852 10.0666L2.83484 9.45537Z M8.56922 5.11994C8.38688 5.05916 8.38688 4.80125 8.56922 4.74047L9.72332 4.35577C10.0219 4.25623 10.2562 4.02192 10.3558 3.72331L10.7405 2.56921C10.8013 2.38687 11.0592 2.38687 11.1199 2.56921L11.5046 3.72331C11.6042 4.02192 11.8385 4.25623 12.1371 4.35577L13.2912 4.74047C13.4735 4.80125 13.4735 5.05916 13.2912 5.11994L12.1371 5.50464C11.8385 5.60417 11.6042 5.83849 11.5046 6.13709L11.1199 7.29119C11.0592 7.47353 10.8013 7.47353 10.7405 7.29119L10.3558 6.13709C10.2562 5.83849 10.0219 5.60417 9.72332 5.50464L8.56922 5.11994Z",
"ai": "M0.703924 10.0391C0.432026 9.94966 0.432025 9.57 0.703923 9.48054L3.43823 8.58081C4.32877 8.28777 5.02758 7.59794 5.32442 6.71884L6.23586 4.01965C6.32649 3.75125 6.71108 3.75125 6.80171 4.01965L7.71315 6.71884C8.01 7.59794 8.7088 8.28777 9.59934 8.58081L12.3336 9.48054C12.6055 9.57 12.6055 9.94966 12.3336 10.0391L9.59934 10.9389C8.7088 11.2319 8.01 11.9217 7.71315 12.8008L6.80171 15.5C6.71108 15.7684 6.32649 15.7684 6.23586 15.5L5.32442 12.8008C5.02758 11.9217 4.32877 11.2319 3.43823 10.9389L0.703924 10.0391Z M8.5 4.45601C8.2281 4.36654 8.2281 3.98689 8.5 3.89742L10.221 3.33114C10.6662 3.18462 11.0156 2.83971 11.164 2.40016L11.7377 0.701309C11.8283 0.432904 12.2129 0.432904 12.3036 0.701309L12.8772 2.40016C13.0256 2.83971 13.375 3.18462 13.8203 3.33114L15.5413 3.89742C15.8132 3.98689 15.8132 4.36654 15.5413 4.45601L13.8203 5.02229C13.375 5.16881 13.0256 5.51373 12.8772 5.95328L12.3036 7.65213C12.2129 7.92053 11.8283 7.92053 11.7377 7.65212L11.164 5.95328C11.0156 5.51373 10.6662 5.16881 10.221 5.02229L8.5 4.45601Z",
"ai-small": "M2.83484 9.45537C2.6525 9.39459 2.6525 9.13668 2.83484 9.0759L4.66852 8.46467C5.26573 8.2656 5.73436 7.79697 5.93343 7.19976L6.54465 5.36609C6.60543 5.18375 6.86334 5.18375 6.92412 5.36609L7.53535 7.19976C7.73442 7.79697 8.20305 8.26561 8.80026 8.46468L10.6339 9.0759C10.8163 9.13668 10.8163 9.39459 10.6339 9.45537L8.80026 10.0666C8.20305 10.2657 7.73442 10.7343 7.53535 11.3315L6.92412 13.1652C6.86334 13.3475 6.60543 13.3475 6.54465 13.1652L5.93343 11.3315C5.73436 10.7343 5.26573 10.2657 4.66852 10.0666L2.83484 9.45537Z M8.56922 5.11994C8.38688 5.05916 8.38688 4.80125 8.56922 4.74047L9.72332 4.35577C10.0219 4.25623 10.2562 4.02192 10.3558 3.72331L10.7405 2.56921C10.8013 2.38687 11.0592 2.38687 11.1199 2.56921L11.5046 3.72331C11.6042 4.02192 11.8385 4.25623 12.1371 4.35577L13.2912 4.74047C13.4735 4.80125 13.4735 5.05916 13.2912 5.11994L12.1371 5.50464C11.8385 5.60417 11.6042 5.83849 11.5046 6.13709L11.1199 7.29119C11.0592 7.47353 10.8013 7.47353 10.7405 7.29119L10.3558 6.13709C10.2562 5.83849 10.0219 5.60417 9.72332 5.50464L8.56922 5.11994Z",
"bin": "M6.04999 11V8H7.54999V11H6.04999Z M8.45001 8V11H9.95001V8H8.45001Z M11.15 3V4.85H15.2V6.35H13.55V12C13.55 13.5188 12.3188 14.75 10.8 14.75H5.20001C3.68123 14.75 2.45001 13.5188 2.45001 12V6.35H0.799988V4.85H4.84998V3C4.84998 2.0335 5.63348 1.25 6.59998 1.25H9.39998C10.3665 1.25 11.15 2.0335 11.15 3ZM6.34998 3C6.34998 2.86193 6.46191 2.75 6.59998 2.75H9.39998C9.53805 2.75 9.64998 2.86193 9.64998 3V4.85H6.34998V3ZM3.95001 6.35H12.05V12C12.05 12.6904 11.4904 13.25 10.8 13.25H5.20001C4.50966 13.25 3.95001 12.6904 3.95001 12V6.35Z",
"bin-small": "M6.25 10.5V8H7.75V10.5H6.25Z M8.25 8V10.5H9.75V8H8.25Z M10.75 4V5.25H14V6.75H12.75V11C12.75 12.5188 11.5188 13.75 10 13.75H6C4.48122 13.75 3.25 12.5188 3.25 11V6.75H2V5.25H5.25V4C5.25 3.0335 6.0335 2.25 7 2.25H9C9.9665 2.25 10.75 3.0335 10.75 4ZM6.75 4C6.75 3.86193 6.86193 3.75 7 3.75H9C9.13807 3.75 9.25 3.86193 9.25 4V5.25H6.75V4ZM4.75 6.75H11.25V11C11.25 11.6904 10.6904 12.25 10 12.25H6C5.30964 12.25 4.75 11.6904 4.75 11V6.75Z",
"blitz": "M7.864 3.6025L5.55525 7.2965C5.15978 7.92925 5.61469 8.75 6.36085 8.75H8.64681L6.864 11.6025L8.136 12.3975L10.4447 8.7035C10.8402 8.07075 10.3853 7.25 9.63915 7.25H7.35319L9.136 4.3975L7.864 3.6025Z M8 0.25C3.71979 0.25 0.25 3.71979 0.25 8C0.25 12.2802 3.71979 15.75 8 15.75C12.2802 15.75 15.75 12.2802 15.75 8C15.75 3.71979 12.2802 0.25 8 0.25ZM1.75 8C1.75 4.54822 4.54822 1.75 8 1.75C11.4518 1.75 14.25 4.54822 14.25 8C14.25 11.4518 11.4518 14.25 8 14.25C4.54822 14.25 1.75 11.4518 1.75 8Z",
"blitz-small": "M8 2.5C4.96243 2.5 2.5 4.96243 2.5 8C2.5 11.0376 4.96243 13.5 8 13.5C11.0376 13.5 13.5 11.0376 13.5 8C13.5 4.96243 11.0376 2.5 8 2.5ZM7.739 4.6025L6.05525 7.2965C5.65979 7.92925 6.11469 8.75 6.86085 8.75L8.14682 8.75L6.989 10.6025L8.261 11.3975L9.94475 8.7035C10.3402 8.07075 9.88532 7.25 9.13915 7.25L7.85319 7.25L9.011 5.3975L7.739 4.6025Z",
"branch": "M8.75 3C8.75 1.48122 9.98122 0.25 11.5 0.25C13.0188 0.25 14.25 1.48122 14.25 3C14.25 4.27987 13.3757 5.35553 12.1917 5.66227C11.8789 7.41747 10.3451 8.75 8.5 8.75H7.5C6.47256 8.75 5.60597 9.43866 5.33663 10.3796C6.44632 10.7336 7.24999 11.7729 7.24999 13C7.24999 14.5188 6.01878 15.75 4.5 15.75C2.98122 15.75 1.75 14.5188 1.75 13C1.75 11.7412 2.59575 10.68 3.75 10.3535L3.75 5.64648C2.59575 5.32001 1.75 4.25877 1.75 3C1.75 1.48122 2.98122 0.25 4.5 0.25C6.01878 0.25 7.24999 1.48122 7.24999 3C7.24999 4.25877 6.40425 5.32001 5.25 5.64648V7.99973C5.87675 7.52896 6.6558 7.25 7.5 7.25H8.5C9.52744 7.25 10.394 6.56134 10.6634 5.62042C9.55368 5.26643 8.75 4.22707 8.75 3ZM11.5 1.75C10.8096 1.75 10.25 2.30964 10.25 3C10.25 3.69035 10.8096 4.24999 11.5 4.24999C12.1904 4.24999 12.75 3.69035 12.75 3C12.75 2.30964 12.1904 1.75 11.5 1.75ZM4.5 11.75C3.80964 11.75 3.25 12.3096 3.25 13C3.25 13.6904 3.80964 14.25 4.5 14.25C5.19035 14.25 5.74999 13.6904 5.74999 13C5.74999 12.3096 5.19035 11.75 4.5 11.75ZM3.25 3C3.25 2.30964 3.80964 1.75 4.5 1.75C5.19035 1.75 5.74999 2.30964 5.74999 3C5.74999 3.69035 5.19035 4.24999 4.5 4.24999C3.80964 4.24999 3.25 3.69035 3.25 3Z",
"chevron-down": "M8.17677 9.76257C8.07914 9.8602 7.92085 9.8602 7.82322 9.76257L3.53033 5.46967L2.46967 6.53033L6.76256 10.8232C7.44598 11.5066 8.55402 11.5066 9.23743 10.8232L13.5303 6.53033L12.4697 5.46967L8.17677 9.76257Z",
"chevron-down-small": "M8.17678 8.76256C8.07915 8.86019 7.92086 8.86019 7.82323 8.76256L4.53033 5.46967L3.46967 6.53033L6.76257 9.82322C7.44599 10.5066 8.55402 10.5066 9.23744 9.82322L12.5303 6.53033L11.4697 5.46967L8.17678 8.76256Z",
@ -39,16 +41,16 @@
"git": "M9.23744 1.17678C8.55402 0.49336 7.44598 0.493358 6.76257 1.17678L1.17678 6.76256C0.493362 7.44598 0.49336 8.55402 1.17678 9.23744L6.76257 14.8232C7.44598 15.5066 8.55402 15.5066 9.23744 14.8232L14.8232 9.23744C15.5066 8.55402 15.5066 7.44598 14.8232 6.76256L9.23744 1.17678ZM7.82323 2.23744C7.92086 2.13981 8.07915 2.13981 8.17678 2.23744L13.7626 7.82322C13.8602 7.92085 13.8602 8.07914 13.7626 8.17678L8.17678 13.7626C8.07915 13.8602 7.92086 13.8602 7.82323 13.7626L2.23744 8.17678C2.13981 8.07915 2.13981 7.92086 2.23744 7.82322L5.5 4.56066L7.43934 6.5L4.96967 8.96967L6.03033 10.0303L8.5 7.56066L10.4697 9.53033L11.5303 8.46967L9.03033 5.96967L6.56066 3.5L7.82323 2.23744Z",
"github": "M8.00579 1C4.13177 1 1 4.20832 1 8.17745C1 11.3502 3.00663 14.0358 5.79036 14.9864C6.1384 15.0578 6.26589 14.8319 6.26589 14.6419C6.26589 14.4755 6.25442 13.9052 6.25442 13.3109C4.30557 13.7388 3.89974 12.4553 3.89974 12.4553C3.58655 11.6235 3.1225 11.4097 3.1225 11.4097C2.48465 10.97 3.16896 10.97 3.16896 10.97C3.87651 11.0175 4.24778 11.7067 4.24778 11.7067C4.87402 12.7999 5.88315 12.491 6.28912 12.3009C6.34705 11.8374 6.53276 11.5166 6.72994 11.3384C5.1756 11.172 3.54023 10.5541 3.54023 7.79712C3.54023 7.01283 3.81844 6.37117 4.25926 5.87213C4.1897 5.69392 3.94606 4.95703 4.32895 3.97076C4.32895 3.97076 4.92048 3.78059 6.25427 4.70751C6.82531 4.55039 7.41422 4.47047 8.00579 4.4698C8.59733 4.4698 9.20034 4.55307 9.75717 4.70751C11.0911 3.78059 11.6826 3.97076 11.6826 3.97076C12.0655 4.95703 11.8217 5.69392 11.7522 5.87213C12.2046 6.37117 12.4714 7.01283 12.4714 7.79712C12.4714 10.5541 10.836 11.16 9.27003 11.3384C9.52529 11.5641 9.74555 11.9919 9.74555 12.6692C9.74555 13.6317 9.73408 14.4042 9.73408 14.6418C9.73408 14.8319 9.86171 15.0578 10.2096 14.9865C12.9933 14.0357 15 11.3502 15 8.17745C15.0114 4.20832 11.8682 1 8.00579 1Z",
"home": "M6 10C5.44772 10 5 10.4477 5 11C5 11.5523 5.44772 12 6 12H10C10.5523 12 11 11.5523 11 11C11 10.4477 10.5523 10 10 10H6Z M1 6.77009C1 6.17653 1.26365 5.61364 1.71963 5.23365L6.71963 1.06698C7.46132 0.448905 8.53868 0.448905 9.28037 1.06698L14.2804 5.23365C14.7364 5.61364 15 6.17653 15 6.77009V13C15 14.1046 14.1046 15 13 15H3C1.89543 15 1 14.1046 1 13V6.77009ZM13.5 6.77009V13C13.5 13.2761 13.2761 13.5 13 13.5H3C2.72386 13.5 2.5 13.2761 2.5 13V6.77009C2.5 6.6217 2.56591 6.48098 2.67991 6.38598L7.67991 2.21931C7.86533 2.06479 8.13467 2.06479 8.32009 2.21931L13.3201 6.38598C13.4341 6.48098 13.5 6.6217 13.5 6.77009Z",
"idea": "M2.25 5.94187C2.25 3.07448 4.57448 0.75 7.44187 0.75H8.55813C11.4255 0.75 13.75 3.07448 13.75 5.94187C13.75 7.1208 13.3488 8.26463 12.6123 9.18521L11.6201 10.4254C11.4453 10.644 11.35 10.9156 11.35 11.1955V11.9C11.35 13.7502 9.85015 15.25 8 15.25C6.14985 15.25 4.65 13.7502 4.65 11.9V11.1955C4.65 10.9156 4.55474 10.644 4.37988 10.4254L3.3877 9.18521C2.65123 8.26463 2.25 7.1208 2.25 5.94187ZM7.44187 2.25C5.40291 2.25 3.75 3.90291 3.75 5.94187C3.75 6.78019 4.03531 7.59355 4.55901 8.24817L5.55118 9.48839C5.7476 9.73391 5.89871 10.0096 6 10.3026V10.25H7.25V7.81066L5.46967 6.03033L6.53033 4.96967L8 6.43934L9.46967 4.96967L10.5303 6.03033L8.75 7.81066V10.25H10V10.3026C10.1013 10.0096 10.2524 9.73391 10.4488 9.48839L11.441 8.24817C11.9647 7.59355 12.25 6.78019 12.25 5.94187C12.25 3.90291 10.5971 2.25 8.55813 2.25H7.44187ZM6.15 11.9V11.75H9.85V11.9C9.85 12.9217 9.02173 13.75 8 13.75C6.97827 13.75 6.15 12.9217 6.15 11.9Z",
"idea-small": "M3.40384 6.41683C3.40384 4.11555 5.26939 2.25 7.57067 2.25H8.42932C10.7306 2.25 12.5961 4.11555 12.5961 6.41683C12.5961 7.36299 12.2741 8.28099 11.6831 9.01982L10.9199 9.97384C10.8099 10.1113 10.75 10.2821 10.75 10.4581V11C10.75 12.5188 9.51878 13.75 7.99999 13.75C6.48121 13.75 5.24999 12.5188 5.24999 11V10.4581C5.24999 10.2821 5.19009 10.1113 5.08013 9.97384L4.31692 9.01982C3.72585 8.28099 3.40384 7.36299 3.40384 6.41683ZM7.57067 3.75C6.09782 3.75 4.90384 4.94398 4.90384 6.41683C4.90384 7.02239 5.10993 7.60992 5.48822 8.08278L6.25144 9.03679C6.37941 9.19676 6.48428 9.37211 6.56425 9.55769H7.25001V7.92605L5.93121 6.60725L6.99187 5.54659L8 6.55473L9.00814 5.54659L10.0688 6.60725L8.75 7.92605V9.55769H9.43573C9.51571 9.37211 9.62058 9.19676 9.74855 9.03679L10.5118 8.08278C10.8901 7.60992 11.0961 7.02239 11.0961 6.41683C11.0961 4.94398 9.90217 3.75 8.42932 3.75H7.57067ZM7.99999 12.25C7.32897 12.25 6.78145 11.7213 6.7513 11.0577H9.24868C9.21854 11.7213 8.67101 12.25 7.99999 12.25Z",
"info": "M8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1ZM9 8.5C9 7.94772 8.55229 7.5 8 7.5C7.44772 7.5 7 7.94771 7 8.5V10.5C7 11.0523 7.44772 11.5 8 11.5C8.55229 11.5 9 11.0523 9 10.5V8.5ZM9 5.5C9 4.94771 8.55229 4.5 8 4.5C7.44772 4.5 7 4.94771 7 5.5C7 6.05228 7.44772 6.5 8 6.5C8.55229 6.5 9 6.05228 9 5.5Z",
"info-small": "M8 2.5C4.96244 2.5 2.5 4.96243 2.5 8C2.5 11.0376 4.96243 13.5 8 13.5C11.0376 13.5 13.5 11.0376 13.5 8C13.5 4.96243 11.0376 2.5 8 2.5ZM9 8.57143C9 8.01914 8.55229 7.57143 8 7.57143C7.44772 7.57143 7 8.01914 7 8.57143V10C7 10.5523 7.44772 11 8 11C8.55229 11 9 10.5523 9 10V8.57143ZM9 5.85714C9 5.38376 8.61625 5 8.14286 5H7.85715C7.38376 5 7 5.38376 7 5.85714C7 6.33053 7.38376 6.71429 7.85714 6.71429H8.14286C8.61625 6.71429 9 6.33053 9 5.85714Z",
"instagram": "M1 5C1 2.79086 2.79086 1 5 1H11C13.2091 1 15 2.79086 15 5V11C15 13.2091 13.2091 15 11 15H5C2.79086 15 1 13.2091 1 11V5ZM11 8C11 9.65685 9.65685 11 8 11C6.34315 11 5 9.65685 5 8C5 6.34315 6.34315 5 8 5C9.65685 5 11 6.34315 11 8ZM4 5C4.55228 5 5 4.55228 5 4C5 3.44772 4.55228 3 4 3C3.44772 3 3 3.44772 3 4C3 4.55228 3.44772 5 4 5Z",
"integrations": "M4.96429 2C4.96429 1.0335 5.74779 0.25 6.71429 0.25H7.5C8.4665 0.25 9.25 1.0335 9.25 2V2.78571C9.25 2.92379 9.36193 3.03571 9.5 3.03571H11.2143C12.1808 3.03571 12.9643 3.81922 12.9643 4.78571V6.5C12.9643 6.63807 13.0762 6.75 13.2143 6.75H14C14.9665 6.75 15.75 7.5335 15.75 8.5V9.28571C15.75 10.2522 14.9665 11.0357 14 11.0357H13.2143C13.0762 11.0357 12.9643 11.1476 12.9643 11.2857V13C12.9643 13.9665 12.1808 14.75 11.2143 14.75H9.5C8.5335 14.75 7.75 13.9665 7.75 13V12.2143C7.75 12.0762 7.63807 11.9643 7.5 11.9643H6.71429C6.57621 11.9643 6.46429 12.0762 6.46429 12.2143V13C6.46429 13.9665 5.68078 14.75 4.71429 14.75H3C2.0335 14.75 1.25 13.9665 1.25 13V11.2857C1.25 10.3192 2.0335 9.53571 3 9.53571H3.78571C3.92379 9.53571 4.03571 9.42379 4.03571 9.28571V8.5C4.03571 8.36193 3.92379 8.25 3.78571 8.25H3C2.0335 8.25 1.25 7.4665 1.25 6.5V4.78571C1.25 3.81922 2.0335 3.03571 3 3.03571H4.71429C4.85236 3.03571 4.96429 2.92379 4.96429 2.78571V2ZM6.71429 1.75C6.57621 1.75 6.46429 1.86193 6.46429 2V2.78571C6.46429 3.75221 5.68078 4.53571 4.71429 4.53571H3C2.86193 4.53571 2.75 4.64764 2.75 4.78571V6.5C2.75 6.63807 2.86193 6.75 3 6.75H3.78571C4.75221 6.75 5.53571 7.5335 5.53571 8.5V9.28571C5.53571 10.2522 4.75221 11.0357 3.78571 11.0357H3C2.86193 11.0357 2.75 11.1476 2.75 11.2857V13C2.75 13.1381 2.86193 13.25 3 13.25H4.71429C4.85236 13.25 4.96429 13.1381 4.96429 13V12.2143C4.96429 11.2478 5.74779 10.4643 6.71429 10.4643H7.5C8.4665 10.4643 9.25 11.2478 9.25 12.2143V13C9.25 13.1381 9.36193 13.25 9.5 13.25H11.2143C11.3524 13.25 11.4643 13.1381 11.4643 13V11.2857C11.4643 10.3192 12.2478 9.53571 13.2143 9.53571H14C14.1381 9.53571 14.25 9.42379 14.25 9.28571V8.5C14.25 8.36193 14.1381 8.25 14 8.25H13.2143C12.2478 8.25 11.4643 7.4665 11.4643 6.5V4.78571C11.4643 4.64764 11.3524 4.53571 11.2143 4.53571H9.5C8.5335 4.53571 7.75 3.75221 7.75 2.78571V2C7.75 1.86193 7.63807 1.75 7.5 1.75H6.71429Z",
"idea": "M2.25 5.94187C2.25 3.07448 4.57448 0.75 7.44187 0.75H8.55813C11.4255 0.75 13.75 3.07448 13.75 5.94187C13.75 7.1208 13.3488 8.26463 12.6123 9.18521L11.6201 10.4254C11.4453 10.644 11.35 10.9156 11.35 11.1955V11.9C11.35 13.7502 9.85015 15.25 8 15.25C6.14985 15.25 4.65 13.7502 4.65 11.9V11.1955C4.65 10.9156 4.55474 10.644 4.37988 10.4254L3.3877 9.18521C2.65123 8.26463 2.25 7.1208 2.25 5.94187ZM7.44187 2.25C5.40291 2.25 3.75 3.90291 3.75 5.94187C3.75 6.78019 4.03531 7.59355 4.55901 8.24817L5.55118 9.48839C5.7476 9.73391 5.89871 10.0096 6 10.3026V10.25H7.25V7.81066L5.46967 6.03033L6.53033 4.96967L8 6.43934L9.46967 4.96967L10.5303 6.03033L8.75 7.81066V10.25H10V10.3026C10.1013 10.0096 10.2524 9.73391 10.4488 9.48839L11.441 8.24817C11.9647 7.59355 12.25 6.78019 12.25 5.94187C12.25 3.90291 10.5971 2.25 8.55813 2.25H7.44187ZM6.15 11.9V11.75H9.85V11.9C9.85 12.9217 9.02173 13.75 8 13.75C6.97827 13.75 6.15 12.9217 6.15 11.9Z",
"idea-small": "M3.40384 6.41683C3.40384 4.11555 5.26939 2.25 7.57067 2.25H8.42932C10.7306 2.25 12.5961 4.11555 12.5961 6.41683C12.5961 7.36299 12.2741 8.28099 11.6831 9.01982L10.9199 9.97384C10.8099 10.1113 10.75 10.2821 10.75 10.4581V11C10.75 12.5188 9.51878 13.75 7.99999 13.75C6.48121 13.75 5.24999 12.5188 5.24999 11V10.4581C5.24999 10.2821 5.19009 10.1113 5.08013 9.97384L4.31692 9.01982C3.72585 8.28099 3.40384 7.36299 3.40384 6.41683ZM7.57067 3.75C6.09782 3.75 4.90384 4.94398 4.90384 6.41683C4.90384 7.02239 5.10993 7.60992 5.48822 8.08278L6.25144 9.03679C6.37941 9.19676 6.48428 9.37211 6.56425 9.55769H7.25001V7.92605L5.93121 6.60725L6.99187 5.54659L8 6.55473L9.00814 5.54659L10.0688 6.60725L8.75 7.92605V9.55769H9.43573C9.51571 9.37211 9.62058 9.19676 9.74855 9.03679L10.5118 8.08278C10.8901 7.60992 11.0961 7.02239 11.0961 6.41683C11.0961 4.94398 9.90217 3.75 8.42932 3.75H7.57067ZM7.99999 12.25C7.32897 12.25 6.78145 11.7213 6.7513 11.0577H9.24868C9.21854 11.7213 8.67101 12.25 7.99999 12.25Z",
"blitz": "M7.864 3.6025L5.55525 7.2965C5.15978 7.92925 5.61469 8.75 6.36085 8.75H8.64681L6.864 11.6025L8.136 12.3975L10.4447 8.7035C10.8402 8.07075 10.3853 7.25 9.63915 7.25H7.35319L9.136 4.3975L7.864 3.6025Z M8 0.25C3.71979 0.25 0.25 3.71979 0.25 8C0.25 12.2802 3.71979 15.75 8 15.75C12.2802 15.75 15.75 12.2802 15.75 8C15.75 3.71979 12.2802 0.25 8 0.25ZM1.75 8C1.75 4.54822 4.54822 1.75 8 1.75C11.4518 1.75 14.25 4.54822 14.25 8C14.25 11.4518 11.4518 14.25 8 14.25C4.54822 14.25 1.75 11.4518 1.75 8Z",
"blitz-small": "M8 2.5C4.96243 2.5 2.5 4.96243 2.5 8C2.5 11.0376 4.96243 13.5 8 13.5C11.0376 13.5 13.5 11.0376 13.5 8C13.5 4.96243 11.0376 2.5 8 2.5ZM7.739 4.6025L6.05525 7.2965C5.65979 7.92925 6.11469 8.75 6.86085 8.75L8.14682 8.75L6.989 10.6025L8.261 11.3975L9.94475 8.7035C10.3402 8.07075 9.88532 7.25 9.13915 7.25L7.85319 7.25L9.011 5.3975L7.739 4.6025Z",
"kebab": "M4 8C4 8.82843 3.32843 9.5 2.5 9.5C1.67157 9.5 1 8.82843 1 8C1 7.17157 1.67157 6.5 2.5 6.5C3.32843 6.5 4 7.17157 4 8Z M9.5 8C9.5 8.82843 8.82843 9.5 8 9.5C7.17157 9.5 6.5 8.82843 6.5 8C6.5 7.17157 7.17157 6.5 8 6.5C8.82843 6.5 9.5 7.17157 9.5 8Z M13.5 9.5C14.3284 9.5 15 8.82843 15 8C15 7.17157 14.3284 6.5 13.5 6.5C12.6716 6.5 12 7.17157 12 8C12 8.82843 12.6716 9.5 13.5 9.5Z",
"list-view": "M2 3.25H14V4.75H2V3.25Z M2 7.25H14V8.75H2V7.25Z M14 11.25H2V12.75H14V11.25Z",
"local": "M3.25 10.25V5.25C3.25 4.2835 4.0335 3.5 5 3.5H11C11.9665 3.5 12.75 4.2835 12.75 5.25V10.25H14V11.25C14 11.8023 13.5523 12.25 13 12.25H3C2.44772 12.25 2 11.8023 2 11.25V10.25H3.25ZM4.75 5.25C4.75 5.11193 4.86193 5 5 5H11C11.1381 5 11.25 5.11193 11.25 5.25V10.25H4.75V5.25Z",
"local-remote": "M1 6.70993C1 8.04296 2.14412 9 3.55546 9H4.42188V10.8999H3.67188V11.8999C3.67188 12.4522 4.11959 12.8999 4.67188 12.8999H12.6719C13.2242 12.8999 13.6719 12.4522 13.6719 11.8999V10.8999H12.9219V7.39993C12.9219 6.43343 12.1384 5.64993 11.1719 5.64993H10.782C10.3951 4.68813 9.54183 4.07807 8.61905 4.07807C8.33064 3.0452 7.51663 2 5.8747 2C4.23277 2 3.44223 3.09997 3.20308 4.18752C1.64626 4.47114 1 5.37691 1 6.70993ZM11.4219 10.8999V7.39993C11.4219 7.26186 11.3099 7.14993 11.1719 7.14993H6.17188C6.0338 7.14993 5.92188 7.26186 5.92188 7.39993V10.8999H11.4219Z",
"locked": "M8.75 9V12H7.25V9H8.75Z M8 1.25C5.92893 1.25 4.25 2.92893 4.25 5V6.25H4C3.0335 6.25 2.25 7.0335 2.25 8V13C2.25 13.9665 3.0335 14.75 4 14.75H12C12.9665 14.75 13.75 13.9665 13.75 13V8C13.75 7.0335 12.9665 6.25 12 6.25H11.75V5C11.75 2.92893 10.0711 1.25 8 1.25ZM10.25 6.25V5C10.25 3.75736 9.24264 2.75 8 2.75C6.75736 2.75 5.75 3.75736 5.75 5V6.25H10.25ZM3.75 8C3.75 7.86193 3.86193 7.75 4 7.75H12C12.1381 7.75 12.25 7.86193 12.25 8V13C12.25 13.1381 12.1381 13.25 12 13.25H4C3.86193 13.25 3.75 13.1381 3.75 13V8Z",
"locked-small": "M8 3.25C6.48122 3.25 5.25 4.48122 5.25 6V6.63323C4.48466 6.82016 3.91666 7.51041 3.91666 8.33333V11C3.91666 11.9665 4.70016 12.75 5.66666 12.75H10.3333C11.2998 12.75 12.0833 11.9665 12.0833 11V8.33333C12.0833 7.51042 11.5153 6.82017 10.75 6.63324V6C10.75 4.48122 9.51878 3.25 8 3.25ZM9.25 6.58333V6C9.25 5.30964 8.69036 4.75 8 4.75C7.30964 4.75 6.75 5.30964 6.75 6V6.58333H9.25ZM5.41666 8.33333C5.41666 8.19526 5.52858 8.08333 5.66666 8.08333H10.3333C10.4714 8.08333 10.5833 8.19526 10.5833 8.33333V11C10.5833 11.1381 10.4714 11.25 10.3333 11.25H5.66666C5.52859 11.25 5.41666 11.1381 5.41666 11V8.33333Z",
"logs": "M3 11.75H13V10.25H3V11.75Z M13 8.75L9 8.75V7.25L13 7.25V8.75Z M8.17154 6.5L4.48014 3.42384L3.51987 4.57617L5.82847 6.5L3.51987 8.42384L4.48014 9.57617L8.17154 6.5Z M0 5.83C0 4.12153 0 3.26729 0.33776 2.61708C0.622386 2.06915 1.06915 1.62239 1.61708 1.33776C2.26729 1 3.12153 1 4.83 1H11.17C12.8785 1 13.7327 1 14.3829 1.33776C14.9309 1.62239 15.3776 2.06915 15.6622 2.61708C16 3.26729 16 4.12153 16 5.83V10.17C16 11.8785 16 12.7327 15.6622 13.3829C15.3776 13.9309 14.9309 14.3776 14.3829 14.6622C13.7327 15 12.8785 15 11.17 15H4.83C3.12153 15 2.26729 15 1.61708 14.6622C1.06915 14.3776 0.622386 13.9309 0.33776 13.3829C0 12.7327 0 11.8785 0 10.17V5.83ZM4.83 2.5H11.17C12.0494 2.5 12.6173 2.50121 13.0492 2.53707C13.4631 2.57145 13.6161 2.62976 13.6915 2.66888C13.9654 2.81119 14.1888 3.03457 14.3311 3.30854C14.3702 3.38385 14.4285 3.53687 14.4629 3.95083C14.4988 4.38275 14.5 4.95059 14.5 5.83V10.17C14.5 11.0494 14.4988 11.6173 14.4629 12.0492C14.4285 12.4631 14.3702 12.6161 14.3311 12.6915C14.1888 12.9654 13.9654 13.1888 13.6915 13.3311C13.6161 13.3702 13.4631 13.4285 13.0492 13.4629C12.6173 13.4988 12.0494 13.5 11.17 13.5H4.83C3.95059 13.5 3.38275 13.4988 2.95083 13.4629C2.53687 13.4285 2.38385 13.3702 2.30854 13.3311C2.03457 13.1888 1.81119 12.9654 1.66888 12.6915C1.62976 12.6161 1.57145 12.4631 1.53707 12.0492C1.50121 11.6173 1.5 11.0494 1.5 10.17V5.83C1.5 4.95059 1.50121 4.38275 1.53707 3.95083C1.57145 3.53687 1.62976 3.38385 1.66888 3.30854C1.81119 3.03457 2.03457 2.81119 2.30854 2.66888C2.38385 2.62976 2.53687 2.57145 2.95083 2.53707C3.38275 2.50121 3.95059 2.5 4.83 2.5Z",
@ -66,7 +68,11 @@
"pr-draft": "M4.5 0.75C2.98122 0.75 1.75 1.98122 1.75 3.5C1.75 4.75878 2.59575 5.82002 3.75 6.14648V9.85352C2.59575 10.18 1.75 11.2412 1.75 12.5C1.75 14.0188 2.98122 15.25 4.5 15.25C6.01878 15.25 7.25 14.0188 7.25 12.5C7.25 11.2412 6.40425 10.18 5.25 9.85352V6.14648C6.40425 5.82002 7.25 4.75878 7.25 3.5C7.25 1.98122 6.01878 0.75 4.5 0.75ZM3.25 3.5C3.25 2.80964 3.80964 2.25 4.5 2.25C5.19036 2.25 5.75 2.80964 5.75 3.5C5.75 4.19036 5.19036 4.75 4.5 4.75C3.80964 4.75 3.25 4.19036 3.25 3.5ZM3.25 12.5C3.25 11.8096 3.80964 11.25 4.5 11.25C5.19036 11.25 5.75 11.8096 5.75 12.5C5.75 13.1904 5.19036 13.75 4.5 13.75C3.80964 13.75 3.25 13.1904 3.25 12.5Z M10.75 2V3.5H12.25V2H10.75Z M10.75 7V5H12.25V7H10.75Z M10.75 8.5V9.85352C9.59575 10.18 8.75 11.2412 8.75 12.5C8.75 14.0188 9.98122 15.25 11.5 15.25C13.0188 15.25 14.25 14.0188 14.25 12.5C14.25 11.2412 13.4043 10.18 12.25 9.85352V8.5H10.75ZM11.5 11.25C10.8096 11.25 10.25 11.8096 10.25 12.5C10.25 13.1904 10.8096 13.75 11.5 13.75C12.1904 13.75 12.75 13.1904 12.75 12.5C12.75 11.8096 12.1904 11.25 11.5 11.25Z",
"pr-small": "M3 6L8 3V5.25H10C11.5188 5.25 12.75 6.48122 12.75 8V13H11.25V8C11.25 7.30964 10.6904 6.75 10 6.75H8V9L3 6Z M4.25 9L4.25 13H5.75L5.75 9H4.25Z",
"profile": "M4.25 5C4.25 2.92893 5.92893 1.25 8 1.25C10.0711 1.25 11.75 2.92893 11.75 5V6C11.75 8.07107 10.0711 9.75 8 9.75C5.92893 9.75 4.25 8.07107 4.25 6V5ZM8 2.75C6.75736 2.75 5.75 3.75736 5.75 5V6C5.75 7.24264 6.75736 8.25 8 8.25C9.24264 8.25 10.25 7.24264 10.25 6V5C10.25 3.75736 9.24264 2.75 8 2.75Z M2.25 14C2.25 11.9289 3.92893 10.25 6 10.25H10C12.0711 10.25 13.75 11.9289 13.75 14H12.25C12.25 12.7574 11.2426 11.75 10 11.75H6C4.75736 11.75 3.75 12.7574 3.75 14H2.25Z",
"pull-small": "M8.74996 9.91806L12.0017 7.02758L12.9983 8.14869L9.16266 11.5581C8.49961 12.1475 7.50043 12.1475 6.83738 11.5581L3.00175 8.14869L3.99829 7.02758L7.24996 9.91795V4.58795H8.74996V9.91806Z",
"push-small": "M7.2501 6.08194L3.99832 8.97242L3.00177 7.8513L6.83741 4.44185C7.50046 3.85247 8.49963 3.85247 9.16268 4.44185L12.9983 7.8513L12.0018 8.97242L8.7501 6.08205V11.412H7.2501V6.08194Z",
"question-mark": "M8 1.75C4.54822 1.75 1.75 4.54822 1.75 8C1.75 11.4518 4.54822 14.25 8 14.25C11.4518 14.25 14.25 11.4518 14.25 8C14.25 4.54822 11.4518 1.75 8 1.75ZM0.25 8C0.25 3.71979 3.71979 0.25 8 0.25C12.2802 0.25 15.75 3.71979 15.75 8C15.75 12.2802 12.2802 15.75 8 15.75C3.71979 15.75 0.25 12.2802 0.25 8Z M8 4.75C7.30964 4.75 6.75 5.30964 6.75 6V7H5.25V6C5.25 4.48122 6.48122 3.25 8 3.25C9.51878 3.25 10.75 4.48122 10.75 6V6.12132C10.75 6.88284 10.4475 7.61317 9.90901 8.15165L8.53033 9.53033L7.46967 8.46967L8.84835 7.09099C9.10552 6.83382 9.25 6.48502 9.25 6.12132V6C9.25 5.30964 8.69036 4.75 8 4.75Z M9 11C9 11.5523 8.55229 12 8 12C7.44772 12 7 11.5523 7 11C7 10.4477 7.44772 10 8 10C8.55229 10 9 10.4477 9 11Z",
"rebase-small": "M11.5 12C12.3284 12 13 11.3284 13 10.5C13 9.94479 12.6984 9.46003 12.25 9.20067V4.25H7.5V5.75H10.75V9.20067C10.3016 9.46003 10 9.94479 10 10.5C10 11.3284 10.6716 12 11.5 12Z M6 5.5C6 6.05521 5.69835 6.53997 5.25 6.79933V10.25H8.5V11.75H3.75V6.79933C3.30165 6.53997 3 6.05521 3 5.5C3 4.67157 3.67157 4 4.5 4C5.32843 4 6 4.67157 6 5.5Z",
"remote": "M4 6.5C4 4.84315 5.34315 3.5 7 3.5C8.65685 3.5 10 4.84315 10 6.5H11C12.6569 6.5 14 7.84315 14 9.5C14 11.1569 12.6569 12.5 11 12.5H5C3.34315 12.5 2 11.1569 2 9.5C2 8.19378 2.83481 7.08254 4 6.67071V6.5ZM5.5 7.73147L4.49987 8.08497C3.91525 8.2916 3.5 8.84923 3.5 9.5C3.5 10.3284 4.17157 11 5 11H11C11.8284 11 12.5 10.3284 12.5 9.5C12.5 8.67157 11.8284 8 11 8H8.5V6.5C8.5 5.67157 7.82843 5 7 5C6.17157 5 5.5 5.67157 5.5 6.5V7.73147Z",
"remote-branch-small": "M5.75 7.99973V4H4.25V12H5.75V10.9988C5.75065 9.75671 6.75776 8.75 8 8.75C10.0711 8.75 11.75 7.07107 11.75 5V4H10.25V5C10.25 6.24264 9.24264 7.25 8 7.25C7.1558 7.25 6.37675 7.52896 5.75 7.99973Z",
"removed-branch-small": "M3.38588 10.6431L8.00002 7.87463L12.6142 10.6431L13.3859 9.35687L9.45775 6.99999L13.3859 4.64311L12.6141 3.35687L8.00002 6.12534L3.38589 3.35687L2.61415 4.64311L6.54228 6.99999L2.61414 9.35687L3.38588 10.6431Z M8.75002 13V9.99999H7.25002V13H8.75002Z",
"repo-book": "M5.53149 3.58565L7.55804 5.20689L6.3292 7.66459L7.67084 8.33541L8.74735 6.18239L11.0199 8.07617L11.9802 6.92383L8.97439 4.41903L6.46854 2.41435L5.53149 3.58565Z M7 12H3V13C3 13.5523 3.44772 14 4 14H6C6.55228 14 7 13.5523 7 13V12Z M0 11.17C0 11.7039 0 12.1544 0.0103077 12.5413C0.00347971 12.6266 0 12.7129 0 12.8C0 13.0455 0.0276545 13.2846 0.0800187 13.5143C0.129319 13.8575 0.208995 14.135 0.33776 14.3829C0.622386 14.9309 1.06915 15.3776 1.61708 15.6622C1.86496 15.791 2.1425 15.8707 2.48571 15.92C2.71539 15.9723 2.95446 16 3.2 16L16 16V0H4.83C3.12153 0 2.26729 0 1.61708 0.33776C1.06915 0.622386 0.622386 1.06915 0.33776 1.61708C0 2.26729 0 3.12153 0 4.83V11.17ZM14.5 1.5H4.83C3.98356 1.5 3.42577 1.50112 3 1.53318V9.60615C3.06614 9.60207 3.13283 9.6 3.2 9.6H14.5V1.5ZM1.53707 13.0492C1.54276 13.1176 1.5491 13.179 1.5559 13.234C1.71126 13.8241 2.17589 14.2887 2.76599 14.4441C2.82102 14.4509 2.88235 14.4572 2.95083 14.4629C3.37618 14.4982 3.93335 14.5 4.7901 14.5L14.5 14.5V11.1H3.2C2.33098 11.1 1.61426 11.7521 1.5124 12.5936C1.51787 12.7627 1.52574 12.9127 1.53707 13.0492Z",

View File

@ -77,7 +77,7 @@
--clr-core-warn-20: #4e3513;
--clr-core-warn-30: #7e551b;
--clr-core-warn-40: #b5751c;
--clr-core-warn-50: #d99b45;
--clr-core-warn-50: #eaa516;
--clr-core-warn-60: #e5ba7c;
--clr-core-warn-70: #fadbaf;
--clr-core-warn-80: #ffeed6;
@ -173,7 +173,7 @@
--clr-theme-succ-container: var(--clr-core-succ-90);
--clr-theme-succ-element: var(--clr-core-succ-50);
--clr-theme-succ-on-container: var(--clr-core-succ-40);
--clr-theme-succ-on-element: var(--clr-core-succ-90);
--clr-theme-succ-on-element: var(--clr-core-succ-95);
--clr-theme-succ-outline: var(--clr-core-succ-40);
--clr-theme-warn-container: var(--clr-core-warn-90);
--clr-theme-warn-element: var(--clr-core-warn-50);