Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update deps #59

Merged
merged 3 commits into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
Expand All @@ -32,16 +32,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Install Packages
run: npm ci
- name: Unit Tests
- name: Run Tests
run: npm run test

7 changes: 4 additions & 3 deletions .github/workflows/main-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Install Packages
run: npm ci
shell: bash
- name: Build Storybook
run: npx sb build
run: npx storybook build
shell: bash
- name: Upload to S3
uses: gravity-ui/preview-upload-to-s3-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-preview-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: gravity-ui/preview-build-action@v1
- uses: gravity-ui/preview-build-action@v2
with:
node-version: 18
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-preview-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
github.event.workflow_run.conclusion == 'success'
runs-on: ubuntu-latest
steps:
- uses: gravity-ui/preview-deploy-action@v1
- uses: gravity-ui/preview-deploy-action@v2
with:
project: icons
github-token: ${{ secrets.GRAVITY_UI_BOT_GITHUB_TOKEN }}
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
Expand All @@ -30,12 +30,15 @@ jobs:
- name: Create TS/JS Files
run: npm run src:icons
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GRAVITY_UI_BOT_GITHUB_TOKEN }}
author: 'gravity-ui-bot <[email protected]>'
committer: 'gravity-ui-bot <[email protected]>'
commit-message: 'feat: sync icons'
branch: sync-icons
delete-branch: true
reviewers: amje
title: 'feat: sync icons'
body: ''

3 changes: 0 additions & 3 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx commitlint -e
3 changes: 0 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx nano-staged
5 changes: 4 additions & 1 deletion .storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ const config: StorybookConfig = {
options: {fastRefresh: true},
},
stories: ['./**/*.stories.@(ts|tsx)'],
addons: [{name: '@storybook/preset-scss', options: {rule: {sideEffects: true}}}],
addons: [
{name: '@storybook/preset-scss', options: {rule: {sideEffects: true}}},
'@storybook/addon-webpack5-compiler-swc',
],
};

export default config;
2 changes: 1 addition & 1 deletion .storybook/src/IconTooltip/IconTooltip.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@use '~@gravity-ui/uikit/styles/mixins';

.icon-tooltip {
--yc-popover-max-width: 1000px;
--g-popover-max-width: 1000px;

&__grid {
display: grid;
Expand Down
10 changes: 5 additions & 5 deletions .storybook/src/Showcase.stories.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@
&-input {
width: 300px;
padding: 0 0 0.2em;
color: var(--yc-color-text-primary);
color: var(--g-color-text-primary);
background: transparent;
border: none;
border-bottom: 1px solid var(--yc-color-line-generic);
border-bottom: 1px solid var(--g-color-line-generic);
outline: none;
font-family: monospace;
font-size: 28px;
line-height: 32px;
text-align: center;

&::placeholder {
color: var(--yc-color-text-hint);
color: var(--g-color-text-hint);
}
}
}
Expand All @@ -31,10 +31,10 @@
}

&__empty {
font-size: var(--yc-text-body-3-font-size);
font-size: var(--g-text-body-3-font-size);
line-height: 44px;
font-style: italic;
font-family: serif;
color: var(--yc-color-text-hint);
color: var(--g-color-text-hint);
}
}
2 changes: 1 addition & 1 deletion lib/AbbrApi.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const AbbrApi = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M5.02 11.419 4.691 10H2.808l-.327 1.419a.75.75 0 1 1-1.462-.338L2.407 5.07a1.379 1.379 0 0 1 2.686 0l1.388 6.012a.75.75 0 1 1-1.462.338Zm-1.27-5.5L4.346 8.5H3.154l.596-2.581ZM14.5 4.75a.75.75 0 1 0-1.5 0v6.5a.75.75 0 0 0 1.5 0v-6.5ZM8.25 4a.75.75 0 0 0-.75.75v6.5a.75.75 0 0 0 1.5 0V9.5h.5a2.75 2.75 0 0 0 0-5.5H8.25ZM9.5 8H9V5.5h.5a1.25 1.25 0 0 1 0 2.5Z"
d="M5.02 11.419 4.691 10H2.808l-.327 1.419a.75.75 0 1 1-1.462-.338L2.407 5.07a1.379 1.379 0 0 1 2.686 0l1.388 6.012a.75.75 0 1 1-1.462.338m-1.27-5.5.597 2.58H3.155zM14.5 4.75a.75.75 0 0 0-1.5 0v6.5a.75.75 0 0 0 1.5 0zM8.25 4a.75.75 0 0 0-.75.75v6.5a.75.75 0 0 0 1.5 0V9.5h.5a2.75 2.75 0 0 0 0-5.5zM9.5 8H9V5.5h.5a1.25 1.25 0 0 1 0 2.5"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/AbbrMl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const AbbrMl = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M2.5 11.25V6.672l1.436 3.39a1.129 1.129 0 0 0 2.076.008l1.513-3.492v4.672a.75.75 0 0 0 1.5 0V5.218a1.218 1.218 0 0 0-2.335-.484L4.98 8.679 3.307 4.732A1.201 1.201 0 0 0 1 5.202v6.048a.75.75 0 1 0 1.5 0Zm9.5-6.5a.75.75 0 0 0-1.5 0v6.5c0 .414.336.75.75.75h3.5a.75.75 0 0 0 0-1.5H12V4.75Z"
d="M2.5 11.25V6.672l1.436 3.39a1.129 1.129 0 0 0 2.076.008l1.513-3.492v4.672a.75.75 0 0 0 1.5 0V5.218a1.218 1.218 0 0 0-2.335-.484L4.98 8.679 3.307 4.732A1.201 1.201 0 0 0 1 5.202v6.048a.75.75 0 1 0 1.5 0m9.5-6.5a.75.75 0 0 0-1.5 0v6.5c0 .414.336.75.75.75h3.5a.75.75 0 0 0 0-1.5H12z"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/AbbrQl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const AbbrQl = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M10.75 4a.75.75 0 0 1 .75.75v5.75h2.75a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75v-6.5a.75.75 0 0 1 .75-.75Zm-3.21 6.997c.611-.666.96-1.665.96-2.997 0-2.667-1.4-4-3.5-4S1.5 5.333 1.5 8s1.4 4 3.5 4c.448 0 .864-.06 1.24-.182l1.456 1.461a.75.75 0 1 0 1.063-1.058L7.54 10.997ZM7 8c0 1.083-.282 1.675-.567 1.985-.27.294-.708.515-1.433.515-.725 0-1.163-.22-1.433-.515C3.282 9.675 3 9.083 3 8c0-1.082.282-1.675.567-1.985.27-.294.708-.515 1.433-.515.725 0 1.163.22 1.433.515C6.718 6.325 7 6.918 7 8Z"
d="M10.75 4a.75.75 0 0 1 .75.75v5.75h2.75a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75v-6.5a.75.75 0 0 1 .75-.75m-3.21 6.997c.611-.666.96-1.665.96-2.997 0-2.667-1.4-4-3.5-4S1.5 5.333 1.5 8s1.4 4 3.5 4q.674 0 1.24-.182l1.456 1.461a.75.75 0 1 0 1.063-1.058zM7 8c0 1.083-.282 1.675-.567 1.985-.27.294-.708.515-1.433.515s-1.163-.22-1.433-.515C3.282 9.675 3 9.083 3 8c0-1.082.282-1.675.567-1.985C3.837 5.72 4.275 5.5 5 5.5s1.163.22 1.433.515C6.718 6.325 7 6.918 7 8"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/AbbrSql.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const AbbrSql = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M13.5 4.75a.75.75 0 0 0-1.5 0v6.5c0 .414.336.75.75.75h2.5a.75.75 0 0 0 0-1.5H13.5V4.75ZM11 8c0 1.32-.257 2.314-.709 2.98l.99.99a.75.75 0 1 1-1.061 1.06l-1.132-1.132a2.43 2.43 0 0 1-.713.102C6.8 12 5.75 10.667 5.75 8S6.8 4 8.375 4 11 5.333 11 8Zm-1.957 2.15c.222-.322.457-.98.457-2.149 0-1.168-.235-1.826-.457-2.149-.175-.254-.366-.35-.668-.35-.302 0-.493.096-.668.35-.222.323-.457.981-.457 2.15 0 1.167.235 1.826.457 2.148.175.254.366.351.668.351.302 0 .493-.097.668-.351ZM2.562 4.002c-.689 0-1.285.249-1.702.713C.453 5.17.277 5.76.277 6.352c0 .732.326 1.28.759 1.658.41.358.908.561 1.305.684.398.122.684.217.89.372.147.113.27.266.27.625 0 .29-.109.469-.253.589a1.08 1.08 0 0 1-.686.222c-.202 0-.438-.093-.658-.293a1.391 1.391 0 0 1-.423-.684.75.75 0 1 0-1.462.333c.127.557.453 1.079.878 1.463.426.386 1.006.681 1.665.681.578 0 1.177-.18 1.647-.57.485-.405.791-1.006.791-1.74 0-.843-.352-1.433-.864-1.82-.434-.33-.962-.492-1.306-.597l-.047-.015c-.31-.095-.579-.221-.76-.38a.65.65 0 0 1-.246-.528c0-.304.09-.512.2-.635.099-.11.27-.215.585-.215.322 0 .498.099.612.206.13.123.233.313.3.56a.75.75 0 1 0 1.449-.386c-.113-.42-.325-.892-.719-1.263-.409-.387-.961-.617-1.642-.617Z"
d="M13.5 4.75a.75.75 0 0 0-1.5 0v6.5c0 .414.336.75.75.75h2.5a.75.75 0 0 0 0-1.5H13.5zM11 8c0 1.32-.257 2.314-.709 2.98l.99.99a.75.75 0 1 1-1.061 1.06l-1.132-1.132Q8.753 12 8.375 12C6.8 12 5.75 10.667 5.75 8S6.8 4 8.375 4 11 5.333 11 8m-1.957 2.15c.222-.322.457-.98.457-2.149 0-1.168-.235-1.826-.457-2.149-.175-.254-.366-.35-.668-.35s-.493.096-.668.35c-.222.323-.457.981-.457 2.15 0 1.167.235 1.826.457 2.148.175.254.366.351.668.351s.493-.097.668-.351M2.562 4.002c-.689 0-1.285.249-1.702.713C.453 5.17.277 5.76.277 6.352c0 .732.326 1.28.759 1.658.41.358.908.561 1.305.684.398.122.684.217.89.372.147.113.27.266.27.625 0 .29-.109.468-.253.589a1.08 1.08 0 0 1-.686.222c-.202 0-.438-.093-.658-.293a1.4 1.4 0 0 1-.423-.684.75.75 0 0 0-1.462.333c.127.557.453 1.079.878 1.463.426.386 1.006.681 1.665.681.578 0 1.177-.18 1.647-.57.485-.405.791-1.006.791-1.74 0-.843-.352-1.433-.864-1.821-.434-.329-.962-.49-1.306-.596l-.047-.015c-.31-.095-.579-.221-.76-.38a.65.65 0 0 1-.246-.528c0-.304.09-.512.2-.635.099-.11.27-.215.585-.215.322 0 .498.099.612.206.13.123.233.313.3.56a.75.75 0 0 0 1.449-.386c-.113-.42-.325-.892-.719-1.263-.409-.387-.961-.617-1.642-.617"
clipRule="evenodd"
/>
</g>
Expand Down
2 changes: 1 addition & 1 deletion lib/AbbrZip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const AbbrZip = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M1 4.75A.75.75 0 0 1 1.75 4h3.113a1.137 1.137 0 0 1 .96 1.748L2.797 10.5H5.25a.75.75 0 0 1 0 1.5H2.137a1.137 1.137 0 0 1-.96-1.748L4.203 5.5H1.75A.75.75 0 0 1 1 4.75ZM7.75 4a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-1.5 0v-6.5A.75.75 0 0 1 7.75 4Zm3 0a.75.75 0 0 0-.75.75v6.5a.75.75 0 0 0 1.5 0V9.5h.5A2.75 2.75 0 1 0 12 4h-1.25ZM12 8h-.5V5.5h.5A1.25 1.25 0 1 1 12 8Z"
d="M1 4.75A.75.75 0 0 1 1.75 4h3.113a1.137 1.137 0 0 1 .96 1.748L2.797 10.5H5.25a.75.75 0 0 1 0 1.5H2.137a1.137 1.137 0 0 1-.96-1.748L4.203 5.5H1.75A.75.75 0 0 1 1 4.75M7.75 4a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-1.5 0v-6.5A.75.75 0 0 1 7.75 4m3 0a.75.75 0 0 0-.75.75v6.5a.75.75 0 0 0 1.5 0V9.5h.5A2.75 2.75 0 1 0 12 4zM12 8h-.5V5.5h.5A1.25 1.25 0 1 1 12 8"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/AntennaSignal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const AntennaSignal = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M5.56 4.403c.27.314.223.784-.015 1.123A2.986 2.986 0 0 0 5 7.25c0 .642.202 1.237.545 1.724.238.339.284.809.015 1.123-.27.315-.75.354-1.015.036A4.482 4.482 0 0 1 3.5 7.25c0-1.097.393-2.102 1.045-2.883.266-.318.745-.279 1.015.036Zm4.88 0c-.27.314-.223.784.015 1.123.344.487.545 1.082.545 1.724 0 .642-.201 1.237-.545 1.724-.238.339-.284.809-.015 1.123.27.315.75.354 1.015.036A4.482 4.482 0 0 0 12.5 7.25a4.482 4.482 0 0 0-1.045-2.883c-.265-.318-.745-.279-1.015.036Zm1.953-2.278c-.27.315-.23.785.05 1.092A5.978 5.978 0 0 1 14 7.25c0 1.553-.59 2.968-1.558 4.033-.278.307-.319.777-.05 1.092.27.314.747.353 1.033.053A7.474 7.474 0 0 0 15.5 7.25c0-2.008-.79-3.832-2.075-5.178-.286-.3-.763-.261-1.032.053Zm-8.786 0c-.27-.314-.746-.353-1.032-.053A7.475 7.475 0 0 0 .5 7.25c0 2.008.79 3.832 2.075 5.178.286.3.763.261 1.032-.053.27-.315.23-.785-.05-1.092A5.978 5.978 0 0 1 2 7.25c0-1.553.59-2.968 1.558-4.033.278-.307.319-.777.05-1.092ZM8.75 8.55a1.5 1.5 0 1 0-1.5 0v5.701a.75.75 0 0 0 1.5 0v-5.7Z"
d="M5.56 4.403c.27.314.223.784-.015 1.123A3 3 0 0 0 5 7.25c0 .642.202 1.237.545 1.724.238.339.284.809.015 1.123-.27.315-.75.354-1.015.036A4.48 4.48 0 0 1 3.5 7.25c0-1.097.393-2.102 1.045-2.883.266-.318.745-.279 1.015.036m4.88 0c-.27.314-.223.784.015 1.123.344.487.545 1.082.545 1.724s-.201 1.237-.545 1.724c-.238.339-.284.809-.015 1.123.27.315.75.354 1.015.036A4.48 4.48 0 0 0 12.5 7.25a4.48 4.48 0 0 0-1.045-2.883c-.265-.318-.745-.279-1.015.036m1.953-2.278c-.27.315-.23.785.05 1.092A5.98 5.98 0 0 1 14 7.25c0 1.553-.59 2.968-1.558 4.033-.278.307-.319.777-.05 1.092.27.314.747.353 1.033.053A7.47 7.47 0 0 0 15.5 7.25c0-2.008-.79-3.832-2.075-5.178-.286-.3-.763-.261-1.032.053m-8.786 0c-.27-.314-.746-.353-1.032-.053A7.48 7.48 0 0 0 .5 7.25c0 2.008.79 3.832 2.075 5.178.286.3.763.261 1.032-.053.27-.315.23-.785-.05-1.092A5.98 5.98 0 0 1 2 7.25c0-1.553.59-2.968 1.558-4.033.278-.307.319-.777.05-1.092M8.75 8.55a1.5 1.5 0 1 0-1.5 0v5.701a.75.75 0 0 0 1.5 0z"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/Aperture.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Aperture = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M13.5 8a5.48 5.48 0 0 1-.48 2.251 6.965 6.965 0 0 0-.897-2.61c-.64-1.109-1.517-1.984-2.467-2.508l-.013-.008a5.037 5.037 0 0 0-.19-.098c-.634-.314-1.33-.484-2.006-.428.464-.575.995-1.002 1.514-1.259.733-.362 1.356-.353 1.789-.103v-.001A5.498 5.498 0 0 1 13.5 8ZM7.438 2.528A5.5 5.5 0 0 0 2.5 8c0 .5.304 1.044.984 1.497.482.322 1.117.568 1.847.682-.386-.558-.587-1.245-.633-1.951a5.047 5.047 0 0 1-.009-.213v-.012c-.022-1.086.298-2.284.938-3.394a6.966 6.966 0 0 1 1.811-2.08ZM6.189 8.002c.002.043.003.087.006.13.053.815.372 1.35.805 1.6.433.25 1.056.259 1.789-.104l.117-.06.11-.07C9.696 9.043 10 8.5 10 8s-.304-1.044-.984-1.497a3.492 3.492 0 0 0-.11-.071 3.511 3.511 0 0 0-.117-.06C8.056 6.009 7.433 6.018 7 6.268c-.433.25-.752.785-.805 1.6a3.51 3.51 0 0 0-.006.134Zm3.468 2.865.011-.007a4.22 4.22 0 0 0 .18-.115c.59-.392 1.084-.91 1.374-1.523.266.69.37 1.362.333 1.94-.053.816-.372 1.351-.805 1.601A5.474 5.474 0 0 1 8 13.5a5.493 5.493 0 0 1-4.458-2.278c.8.34 1.73.528 2.708.528 1.28 0 2.477-.322 3.407-.883ZM1 8a7 7 0 1 1 14 0A7 7 0 0 1 1 8Z"
d="M13.5 8a5.5 5.5 0 0 1-.48 2.251 7 7 0 0 0-.897-2.61c-.64-1.109-1.517-1.984-2.467-2.508l-.013-.008a5 5 0 0 0-.19-.098c-.634-.314-1.33-.484-2.006-.428.464-.575.995-1.002 1.514-1.259.733-.362 1.356-.353 1.789-.103v-.001A5.5 5.5 0 0 1 13.5 8M7.438 2.528A5.5 5.5 0 0 0 2.5 8c0 .5.304 1.044.984 1.497.482.322 1.117.568 1.847.682-.386-.558-.587-1.245-.633-1.951a5 5 0 0 1-.009-.213v-.012c-.022-1.086.298-2.284.938-3.394a7 7 0 0 1 1.811-2.08M6.189 8.002l.006.13c.053.815.372 1.35.805 1.6s1.056.259 1.789-.104l.117-.06.11-.07C9.696 9.043 10 8.5 10 8s-.304-1.044-.984-1.497l-.11-.071-.117-.06C8.056 6.009 7.433 6.018 7 6.268s-.752.785-.805 1.6zm3.468 2.865.011-.007q.091-.055.18-.115c.59-.392 1.084-.91 1.374-1.523.266.69.37 1.362.333 1.94-.053.816-.372 1.351-.805 1.601A5.5 5.5 0 0 1 8 13.5a5.5 5.5 0 0 1-4.458-2.278c.8.34 1.73.528 2.708.528 1.28 0 2.477-.322 3.407-.883M1 8a7 7 0 1 1 14 0A7 7 0 0 1 1 8"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/Archive.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Archive = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M2.5 8h11v3a1.5 1.5 0 0 1-1.5 1.5H4A1.5 1.5 0 0 1 2.5 11V8Zm10.697-1.5-1.851-2.777a.5.5 0 0 0-.416-.223H5.07a.5.5 0 0 0-.416.223L2.803 6.5h10.394ZM15 7.408V11a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V7.408a3 3 0 0 1 .504-1.664l1.902-2.853A2 2 0 0 1 5.07 2h5.86a2 2 0 0 1 1.664.89l1.902 2.854A3 3 0 0 1 15 7.408ZM9.25 11a.75.75 0 0 0 0-1.5h-2.5a.75.75 0 0 0 0 1.5h2.5Z"
d="M2.5 8h11v3a1.5 1.5 0 0 1-1.5 1.5H4A1.5 1.5 0 0 1 2.5 11zm10.697-1.5-1.851-2.777a.5.5 0 0 0-.416-.223H5.07a.5.5 0 0 0-.416.223L2.803 6.5zM15 7.408V11a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V7.408a3 3 0 0 1 .504-1.664l1.902-2.853A2 2 0 0 1 5.07 2h5.86a2 2 0 0 1 1.664.89l1.902 2.854A3 3 0 0 1 15 7.408M9.25 11a.75.75 0 0 0 0-1.5h-2.5a.75.75 0 0 0 0 1.5z"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/ArrowChevronDown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ArrowChevronDown = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M8.75 2a.75.75 0 0 0-1.5 0v5.69L4.53 4.97a.75.75 0 0 0-1.06 1.06l4 4a.75.75 0 0 0 1.06 0l4-4a.75.75 0 0 0-1.06-1.06L8.75 7.69V2ZM4.53 9.47a.75.75 0 0 0-1.06 1.06l4 4a.75.75 0 0 0 1.06 0l4-4a.75.75 0 1 0-1.06-1.06L8 12.94 4.53 9.47Z"
d="M8.75 2a.75.75 0 0 0-1.5 0v5.69L4.53 4.97a.75.75 0 0 0-1.06 1.06l4 4a.75.75 0 0 0 1.06 0l4-4a.75.75 0 0 0-1.06-1.06L8.75 7.69zM4.53 9.47a.75.75 0 0 0-1.06 1.06l4 4a.75.75 0 0 0 1.06 0l4-4a.75.75 0 1 0-1.06-1.06L8 12.94z"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/ArrowChevronLeft.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ArrowChevronLeft = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M14 8.75a.75.75 0 0 0 0-1.5H8.31l2.72-2.72a.75.75 0 1 0-1.06-1.06l-4 4a.75.75 0 0 0 0 1.06l4 4a.75.75 0 1 0 1.06-1.06L8.31 8.75H14ZM6.53 4.53a.75.75 0 0 0-1.06-1.06l-4 4a.75.75 0 0 0 0 1.06l4 4a.75.75 0 0 0 1.06-1.06L3.06 8l3.47-3.47Z"
d="M14 8.75a.75.75 0 0 0 0-1.5H8.31l2.72-2.72a.75.75 0 1 0-1.06-1.06l-4 4a.75.75 0 0 0 0 1.06l4 4a.75.75 0 1 0 1.06-1.06L8.31 8.75zM6.53 4.53a.75.75 0 0 0-1.06-1.06l-4 4a.75.75 0 0 0 0 1.06l4 4a.75.75 0 0 0 1.06-1.06L3.06 8z"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/ArrowChevronRight.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ArrowChevronRight = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M2 7.25a.75.75 0 0 0 0 1.5h5.69l-2.72 2.72a.75.75 0 1 0 1.06 1.06l4-4a.75.75 0 0 0 0-1.06l-4-4a.75.75 0 0 0-1.06 1.06l2.72 2.72H2Zm7.47 4.22a.75.75 0 1 0 1.06 1.06l4-4a.75.75 0 0 0 0-1.06l-4-4a.75.75 0 1 0-1.06 1.06L12.94 8l-3.47 3.47Z"
d="M2 7.25a.75.75 0 0 0 0 1.5h5.69l-2.72 2.72a.75.75 0 1 0 1.06 1.06l4-4a.75.75 0 0 0 0-1.06l-4-4a.75.75 0 0 0-1.06 1.06l2.72 2.72zm7.47 4.22a.75.75 0 1 0 1.06 1.06l4-4a.75.75 0 0 0 0-1.06l-4-4a.75.75 0 1 0-1.06 1.06L12.94 8z"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/ArrowChevronUp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ArrowChevronUp = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M7.25 14a.75.75 0 0 0 1.5 0V8.31l2.72 2.72a.75.75 0 1 0 1.06-1.06l-4-4a.75.75 0 0 0-1.06 0l-4 4a.75.75 0 1 0 1.06 1.06l2.72-2.72V14Zm4.22-7.47a.75.75 0 1 0 1.06-1.06l-4-4a.75.75 0 0 0-1.06 0l-4 4a.75.75 0 0 0 1.06 1.06L8 3.06l3.47 3.47Z"
d="M7.25 14a.75.75 0 0 0 1.5 0V8.31l2.72 2.72a.75.75 0 1 0 1.06-1.06l-4-4a.75.75 0 0 0-1.06 0l-4 4a.75.75 0 1 0 1.06 1.06l2.72-2.72zm4.22-7.47a.75.75 0 1 0 1.06-1.06l-4-4a.75.75 0 0 0-1.06 0l-4 4a.75.75 0 0 0 1.06 1.06L8 3.06z"
clipRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion lib/ArrowDown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ArrowDown = (props: SVGProps<SVGSVGElement>) => (
<path
fill="currentColor"
fillRule="evenodd"
d="M8 1.25a.75.75 0 0 1 .75.75v10.19l2.72-2.72a.75.75 0 1 1 1.06 1.06l-4 4a.75.75 0 0 1-1.06 0l-4-4a.75.75 0 1 1 1.06-1.06l2.72 2.72V2A.75.75 0 0 1 8 1.25Z"
d="M8 1.25a.75.75 0 0 1 .75.75v10.19l2.72-2.72a.75.75 0 1 1 1.06 1.06l-4 4a.75.75 0 0 1-1.06 0l-4-4a.75.75 0 1 1 1.06-1.06l2.72 2.72V2A.75.75 0 0 1 8 1.25"
clipRule="evenodd"
/>
</svg>
Expand Down
Loading
Loading