Skip to content

Commit 48aad6f

Browse files
authored
Merge pull request #15 from wireui/micro-variants
Micro variants
2 parents 8bcd2ca + f95bf97 commit 48aad6f

File tree

323 files changed

+1431
-1622
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

323 files changed

+1431
-1622
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,8 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
php: [8.1, 8.2, 8.3]
20-
laravel: [10.*, 11.*]
21-
exclude:
22-
- php: 8.3
23-
laravel: 9.*
24-
- php: 8.1
25-
laravel: 11.*
26-
- php: 8.2
27-
laravel: 11.*
19+
php: [8.2, 8.3, 8.4]
20+
laravel: [11.*]
2821

2922
name: PHP:${{ matrix.php }} / Laravel:${{ matrix.laravel }}
3023

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"require-dev": {
2525
"mockery/mockery": "^1.5",
2626
"orchestra/testbench": "^7.7|^8.0|^9.0",
27-
"pestphp/pest": "^2.0",
27+
"pestphp/pest": "^3.0",
2828
"larastan/larastan": "^2.9",
2929
"laravel/pint": "^1.6"
3030
},
@@ -40,7 +40,7 @@
4040
}
4141
},
4242
"scripts": {
43-
"test": "./vendor/bin/pest --coverage --min=100",
43+
"test": "./vendor/bin/pest --coverage --min=100 --parallel",
4444
"phpstan": "./vendor/bin/phpstan analyse",
4545
"pint:fix": "./vendor/bin/pint",
4646
"pint:check": "./vendor/bin/pint --test",

composer.lock

Lines changed: 1077 additions & 1588 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generate-icons.sh

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
rm -rf .tmp
88
rm -rf src/views/components
99
mkdir -p src/views/components/{solid,outline}
10-
mkdir -p src/views/components/mini/solid
10+
mkdir -p src/views/components/{mini,micro}/solid
1111

1212
# prepare icons
1313
git clone git@github.com:tailwindlabs/heroicons.git .tmp
1414

15-
for FILE in .tmp/src/{20,24}/{outline,solid}/*.svg; do
15+
for FILE in .tmp/src/{16,20,24}/{outline,solid}/*.svg; do
1616
echo "$(xmllint --noblanks $FILE)" >| "$FILE"
1717
echo "$(tail -n +2 $FILE)" >| "$FILE"
1818
NEW_FILE="${FILE%.svg}.blade.php"
@@ -25,17 +25,13 @@ for FILE in .tmp/src/24/outline/*.php; do
2525
sed -i '' 's/<svg/<svg {{ $attributes }} stroke="currentColor"/g' $FILE
2626
done
2727

28-
for FILE in .tmp/src/24/solid/*.php; do
29-
sed -i '' 's/ fill="[^"]*"//g' $FILE
30-
sed -i '' 's/<svg/<svg {{ $attributes }} fill="currentColor"/g' $FILE
31-
done
32-
33-
for FILE in .tmp/src/20/solid/*.php; do
28+
for FILE in .tmp/src/{16,20,24}/solid/*.php; do
3429
sed -i '' 's/ fill="[^"]*"//g' $FILE
3530
sed -i '' 's/<svg/<svg {{ $attributes }} fill="currentColor"/g' $FILE
3631
done
3732

3833
mv .tmp/LICENSE src/views/components/LICENSE
39-
mv .tmp/src/24/{outline,solid} src/views/components
34+
mv .tmp/src/16/solid src/views/components/micro
4035
mv .tmp/src/20/solid src/views/components/mini
36+
mv .tmp/src/24/{outline,solid} src/views/components
4137
rm -rf .tmp

src/Icon.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,17 @@ public function __construct(
1313
public bool $solid = false,
1414
public bool $outline = false,
1515
public bool $mini = false,
16+
public bool $micro = false,
1617
) {
1718
$this->variant = $this->getVariant();
1819

1920
if ($mini || $this->variant === 'mini') {
2021
$this->variant = 'mini.solid';
2122
}
23+
24+
if ($micro || $this->variant === 'micro') {
25+
$this->variant = 'micro.solid';
26+
}
2227
}
2328

2429
public function render(): View|Factory
@@ -33,6 +38,7 @@ private function getVariant(): string
3338
$this->solid => 'solid',
3439
$this->outline => 'outline',
3540
$this->mini => 'mini.solid',
41+
$this->micro => 'micro.solid',
3642
default => $this->defaultVariant(),
3743
};
3844
}

src/config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
| Icons Variants
77
|--------------------------------------------------------------------------
88
|
9-
| The icon variant can be 'solid' or 'outline'
9+
| The icon variant can be 'solid', 'outline', 'mini.solid', 'micro.solid'
1010
| <x-icon solid />
1111
| <x-icon outline />
1212
| <x-icon variant="outline" />
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M7.70177 1.36758C7.89214 1.28502 8.10821 1.28502 8.29858 1.36758C10.397 2.27761 12.4042 3.35793 14.3029 4.59105C14.548 4.75028 14.6783 5.03746 14.6367 5.32682C14.5951 5.61618 14.3891 5.85498 14.109 5.93866C12.1038 6.53768 10.1751 7.31422 8.34107 8.25008C8.12694 8.35934 7.87341 8.35934 7.65928 8.25008C7.03364 7.93083 6.39698 7.63012 5.75002 7.34867V6.80657C6.58634 6.33143 7.44297 5.88795 8.31827 5.47777C8.69334 5.302 8.85491 4.85546 8.67914 4.48039C8.50338 4.10531 8.05683 3.94375 7.68176 4.11951C6.63525 4.60993 5.61447 5.14603 4.62198 5.72525C4.39164 5.85967 4.25002 6.10631 4.25002 6.37301V6.73785C3.47668 6.44405 2.69006 6.17727 1.8913 5.93866C1.6112 5.85498 1.40524 5.61618 1.36362 5.32682C1.322 5.03746 1.4523 4.75028 1.69747 4.59105C3.59612 3.35793 5.60336 2.27761 7.70177 1.36758Z"/><path d="M4.25002 8.34775C3.71965 8.1356 3.18252 7.93682 2.63904 7.75185C2.46449 8.73026 2.32464 9.72067 2.22082 10.7218C2.18598 11.0578 2.38004 11.3756 2.69483 11.4981C2.87032 11.5664 3.04499 11.6363 3.21883 11.7078C3.04706 11.9465 2.85382 12.1744 2.6391 12.3892C2.34621 12.682 2.34621 13.1569 2.6391 13.4498C2.932 13.7427 3.40687 13.7427 3.69976 13.4498C4.04924 13.1003 4.35406 12.723 4.61419 12.325C4.15544 12.1076 3.6902 11.9018 3.21883 11.7078C3.90636 10.7527 4.25001 9.62721 4.25002 8.5001V8.34775Z"/><path d="M7.60299 13.9591C6.64228 13.3592 5.64461 12.8131 4.61419 12.325C5.27965 11.3067 5.65275 10.1531 5.73335 8.98392C6.15287 9.17619 6.56767 9.37701 6.97754 9.58616C7.61992 9.91395 8.38051 9.91395 9.02289 9.58616C10.4151 8.87576 11.8641 8.26144 13.3614 7.75183C13.536 8.73024 13.6758 9.72066 13.7797 10.7218C13.8145 11.0578 13.6204 11.3756 13.3057 11.4981C11.5856 12.1674 9.94367 12.9936 8.39748 13.9591C8.1544 14.1109 7.84608 14.1109 7.60299 13.9591Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M6.5 2.25C6.5 1.83579 6.16421 1.5 5.75 1.5C5.33579 1.5 5 1.83579 5 2.25V5.25C5 5.66421 5.33579 6 5.75 6C6.16421 6 6.5 5.66421 6.5 5.25V4.5H13.25C13.6642 4.5 14 4.16421 14 3.75C14 3.33579 13.6642 3 13.25 3H6.5V2.25Z"/><path d="M11 6.5C11 6.08579 10.6642 5.75 10.25 5.75C9.83579 5.75 9.5 6.08579 9.5 6.5V9.5C9.5 9.91421 9.83579 10.25 10.25 10.25C10.6642 10.25 11 9.91421 11 9.5V8.75H13.25C13.6642 8.75 14 8.41421 14 8C14 7.58579 13.6642 7.25 13.25 7.25H11V6.5Z"/><path d="M5.75 10C6.16421 10 6.5 10.3358 6.5 10.75V11.5H13.25C13.6642 11.5 14 11.8358 14 12.25C14 12.6642 13.6642 13 13.25 13H6.5V13.75C6.5 14.1642 6.16421 14.5 5.75 14.5C5.33579 14.5 5 14.1642 5 13.75V10.75C5 10.3358 5.33579 10 5.75 10Z"/><path d="M2.75 7.25H8.5V8.75H2.75C2.33579 8.75 2 8.41421 2 8C2 7.58579 2.33579 7.25 2.75 7.25Z"/><path d="M4 3H2.75C2.33579 3 2 3.33579 2 3.75C2 4.16421 2.33579 4.5 2.75 4.5H4V3Z"/><path d="M2.75 11.5H4V13H2.75C2.33579 13 2 12.6642 2 12.25C2 11.8358 2.33579 11.5 2.75 11.5Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M7.25 13.25L7.25 7.5H8.75L8.75 13.25C8.75 13.6642 8.41421 14 8 14C7.58579 14 7.25 13.6642 7.25 13.25Z"/><path d="M8.75 2.75V5L9.5 5C9.91421 5 10.25 5.33579 10.25 5.75C10.25 6.16421 9.91421 6.5 9.5 6.5H6.5C6.08579 6.5 5.75 6.16421 5.75 5.75C5.75 5.33579 6.08579 5 6.5 5H7.25V2.75C7.25 2.33579 7.58579 2 8 2C8.41421 2 8.75 2.33579 8.75 2.75Z"/><path d="M2.25 9.5C1.83579 9.5 1.5 9.83579 1.5 10.25C1.5 10.6642 1.83579 11 2.25 11H5.25C5.66421 11 6 10.6642 6 10.25C6 9.83579 5.66421 9.5 5.25 9.5H4.5L4.5 2.75C4.5 2.33579 4.16421 2 3.75 2C3.33579 2 3 2.33579 3 2.75L3 9.5H2.25Z"/><path d="M10 10.25C10 9.83579 10.3358 9.5 10.75 9.5H11.5L11.5 2.75C11.5 2.33579 11.8358 2 12.25 2C12.6642 2 13 2.33579 13 2.75L13 9.5H13.75C14.1642 9.5 14.5 9.83579 14.5 10.25C14.5 10.6642 14.1642 11 13.75 11H10.75C10.3358 11 10 10.6642 10 10.25Z"/><path d="M3 12L3 13.25C3 13.6642 3.33579 14 3.75 14C4.16421 14 4.5 13.6642 4.5 13.25V12H3Z"/><path d="M11.5 13.25V12H13V13.25C13 13.6642 12.6642 14 12.25 14C11.8358 14 11.5 13.6642 11.5 13.25Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M2 3C2 2.44772 2.44772 2 3 2H13C13.5523 2 14 2.44772 14 3V4C14 4.55228 13.5523 5 13 5H3C2.44772 5 2 4.55228 2 4V3Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M13 6H3V12C3 13.1046 3.89543 14 5 14H11C12.1046 14 13 13.1046 13 12V6ZM8.75 7.75C8.75 7.33579 8.41421 7 8 7C7.58579 7 7.25 7.33579 7.25 7.75V10.4393L6.03033 9.21967C5.73744 8.92678 5.26256 8.92678 4.96967 9.21967C4.67678 9.51256 4.67678 9.98744 4.96967 10.2803L7.46967 12.7803C7.76256 13.0732 8.23744 13.0732 8.53033 12.7803L11.0303 10.2803C11.3232 9.98744 11.3232 9.51256 11.0303 9.21967C10.7374 8.92678 10.2626 8.92678 9.96967 9.21967L8.75 10.4393V7.75Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M2 3C2 2.44772 2.44772 2 3 2H13C13.5523 2 14 2.44772 14 3V4C14 4.55228 13.5523 5 13 5H3C2.44772 5 2 4.55228 2 4V3Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M13 6H3V12C3 13.1046 3.89543 14 5 14H11C12.1046 14 13 13.1046 13 12V6ZM5.71967 7.46967C6.01256 7.17678 6.48744 7.17678 6.78033 7.46967L8 8.68934L9.21967 7.46967C9.51256 7.17678 9.98744 7.17678 10.2803 7.46967C10.5732 7.76256 10.5732 8.23744 10.2803 8.53033L9.06066 9.75L10.2803 10.9697C10.5732 11.2626 10.5732 11.7374 10.2803 12.0303C9.98744 12.3232 9.51256 12.3232 9.21967 12.0303L8 10.8107L6.78033 12.0303C6.48744 12.3232 6.01256 12.3232 5.71967 12.0303C5.42678 11.7374 5.42678 11.2626 5.71967 10.9697L6.93934 9.75L5.71967 8.53033C5.42678 8.23744 5.42678 7.76256 5.71967 7.46967Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M3 2C2.44772 2 2 2.44772 2 3V4C2 4.55228 2.44772 5 3 5H13C13.5523 5 14 4.55228 14 4V3C14 2.44772 13.5523 2 13 2H3Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3 6H13V12C13 13.1046 12.1046 14 11 14H5C3.89543 14 3 13.1046 3 12V6ZM6 8.75C6 8.33579 6.33579 8 6.75 8H9.25C9.66421 8 10 8.33579 10 8.75C10 9.16421 9.66421 9.5 9.25 9.5H6.75C6.33579 9.5 6 9.16421 6 8.75Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15ZM8.75 4.75C8.75 4.33579 8.41421 4 8 4C7.58579 4 7.25 4.33579 7.25 4.75V9.43934L6.03033 8.21967C5.73744 7.92678 5.26256 7.92678 4.96967 8.21967C4.67678 8.51256 4.67678 8.98744 4.96967 9.28033L7.46967 11.7803C7.76256 12.0732 8.23744 12.0732 8.53033 11.7803L11.0303 9.28033C11.3232 8.98744 11.3232 8.51256 11.0303 8.21967C10.7374 7.92678 10.2626 7.92678 9.96967 8.21967L8.75 9.43934V4.75Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.7803 4.21967C12.0732 4.51256 12.0732 4.98744 11.7803 5.28033L6.56066 10.5H10.25C10.6642 10.5 11 10.8358 11 11.25C11 11.6642 10.6642 12 10.25 12H4.75C4.33579 12 4 11.6642 4 11.25V5.75C4 5.33579 4.33579 5 4.75 5C5.16421 5 5.5 5.33579 5.5 5.75V9.43934L10.7197 4.21967C11.0126 3.92678 11.4874 3.92678 11.7803 4.21967Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M7 1C7.41421 1 7.75 1.33579 7.75 1.75L7.75 6H6.25V1.75C6.25 1.33579 6.58579 1 7 1Z"/><path d="M6.25 6L6.25 8.93934L5.03033 7.71967C4.73744 7.42678 4.26256 7.42678 3.96967 7.71967C3.67678 8.01256 3.67678 8.48744 3.96967 8.78033L6.46967 11.2803C6.76256 11.5732 7.23744 11.5732 7.53033 11.2803L10.0303 8.78033C10.3232 8.48743 10.3232 8.01256 10.0303 7.71967C9.73744 7.42677 9.26256 7.42677 8.96967 7.71967L7.75 8.93934V6L10 6C11.1046 6 12 6.89543 12 8V11C12 12.1046 11.1046 13 10 13H4C2.89543 13 2 12.1046 2 11V8C2 6.89543 2.89543 6 4 6L6.25 6Z"/><path d="M4.26758 14C4.61339 14.5978 5.25973 15 6.00002 15H12C13.1046 15 14 14.1046 14 13V10C14 9.25972 13.5978 8.61337 13 8.26756V11C13 12.6569 11.6569 14 10 14H4.26758Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M8 1C8.41421 1 8.75 1.33579 8.75 1.75V5H7.25V1.75C7.25 1.33579 7.58579 1 8 1Z"/><path d="M7.25 5V9.43934L6.03033 8.21967C5.73744 7.92678 5.26256 7.92678 4.96967 8.21967C4.67678 8.51256 4.67678 8.98744 4.96967 9.28033L7.46967 11.7803C7.76256 12.0732 8.23744 12.0732 8.53033 11.7803L11.0303 9.28033C11.3232 8.98744 11.3232 8.51256 11.0303 8.21967C10.7374 7.92678 10.2626 7.92678 9.96967 8.21967L8.75 9.43934V5H11C12.1046 5 13 5.89543 13 7V13C13 14.1046 12.1046 15 11 15H5C3.89543 15 3 14.1046 3 13V7C3 5.89543 3.89543 5 5 5H7.25Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.21967 4.21967C3.92678 4.51256 3.92678 4.98744 4.21967 5.28033L9.43934 10.5H5.75C5.33579 10.5 5 10.8358 5 11.25C5 11.6642 5.33579 12 5.75 12H11.25C11.6642 12 12 11.6642 12 11.25V5.75C12 5.33579 11.6642 5 11.25 5C10.8358 5 10.5 5.33579 10.5 5.75V9.43934L5.28033 4.21967C4.98744 3.92678 4.51256 3.92678 4.21967 4.21967Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M8.75 2.75C8.75 2.33579 8.41421 2 8 2C7.58579 2 7.25 2.33579 7.25 2.75L7.25 8.43934L5.03033 6.21967C4.73744 5.92678 4.26256 5.92678 3.96967 6.21967C3.67678 6.51256 3.67678 6.98744 3.96967 7.28033L7.46967 10.7803C7.76256 11.0732 8.23744 11.0732 8.53033 10.7803L12.0303 7.28033C12.3232 6.98744 12.3232 6.51256 12.0303 6.21967C11.7374 5.92678 11.2626 5.92678 10.9697 6.21967L8.75 8.43934L8.75 2.75Z"/><path d="M3.5 9.75C3.5 9.33579 3.16421 9 2.75 9C2.33579 9 2 9.33579 2 9.75V11.25C2 12.7688 3.23122 14 4.75 14H11.25C12.7688 14 14 12.7688 14 11.25V9.75C14 9.33579 13.6642 9 13.25 9C12.8358 9 12.5 9.33579 12.5 9.75V11.25C12.5 11.9404 11.9404 12.5 11.25 12.5H4.75C4.05964 12.5 3.5 11.9404 3.5 11.25V9.75Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 2C8.41421 2 8.75 2.33579 8.75 2.75V11.4393L11.9697 8.21967C12.2626 7.92678 12.7374 7.92678 13.0303 8.21967C13.3232 8.51256 13.3232 8.98744 13.0303 9.28033L8.53033 13.7803C8.23744 14.0732 7.76256 14.0732 7.46967 13.7803L2.96967 9.28033C2.67678 8.98744 2.67678 8.51256 2.96967 8.21967C3.26256 7.92678 3.73744 7.92678 4.03033 8.21967L7.25 11.4393V2.75C7.25 2.33579 7.58579 2 8 2Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M1 8C1 11.866 4.13401 15 8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8ZM11.25 8.75C11.6642 8.75 12 8.41421 12 8C12 7.58579 11.6642 7.25 11.25 7.25H6.56066L7.78033 6.03033C8.07322 5.73744 8.07322 5.26256 7.78033 4.96967C7.48744 4.67678 7.01256 4.67678 6.71967 4.96967L4.21967 7.46967C3.92678 7.76256 3.92678 8.23744 4.21967 8.53033L6.71967 11.0303C7.01256 11.3232 7.48744 11.3232 7.78033 11.0303C8.07322 10.7374 8.07322 10.2626 7.78033 9.96967L6.56066 8.75H11.25Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M4.75 2C3.23122 2 2 3.23122 2 4.75V11.25C2 12.7688 3.23122 14 4.75 14H7.75C9.26878 14 10.5 12.7688 10.5 11.25V10.75C10.5 10.3358 10.1642 10 9.75 10C9.33579 10 9 10.3358 9 10.75V11.25C9 11.9404 8.44036 12.5 7.75 12.5H4.75C4.05964 12.5 3.5 11.9404 3.5 11.25V4.75C3.5 4.05964 4.05964 3.5 4.75 3.5H7.75C8.44036 3.5 9 4.05964 9 4.75V5.25C9 5.66421 9.33579 6 9.75 6C10.1642 6 10.5 5.66421 10.5 5.25V4.75C10.5 3.23122 9.26878 2 7.75 2H4.75Z"/><path d="M8.03033 6.28033C8.32322 5.98744 8.32322 5.51256 8.03033 5.21967C7.73744 4.92678 7.26256 4.92678 6.96967 5.21967L4.71967 7.46967C4.42678 7.76256 4.42678 8.23744 4.71967 8.53033L6.96967 10.7803C7.26256 11.0732 7.73744 11.0732 8.03033 10.7803C8.32322 10.4874 8.32322 10.0126 8.03033 9.71967L7.06066 8.75H14.25C14.6642 8.75 15 8.41421 15 8C15 7.58579 14.6642 7.25 14.25 7.25H7.06066L8.03033 6.28033Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M14 4.75C14 3.23122 12.7688 2 11.25 2H8.25C6.73122 2 5.5 3.23122 5.5 4.75V5.25C5.5 5.66421 5.83579 6 6.25 6C6.66421 6 7 5.66421 7 5.25V4.75C7 4.05964 7.55964 3.5 8.25 3.5H11.25C11.9404 3.5 12.5 4.05964 12.5 4.75V11.25C12.5 11.9404 11.9404 12.5 11.25 12.5H8.25C7.55964 12.5 7 11.9404 7 11.25V10.75C7 10.3358 6.66421 10 6.25 10C5.83579 10 5.5 10.3358 5.5 10.75V11.25C5.5 12.7688 6.73122 14 8.25 14H11.25C12.7688 14 14 12.7688 14 11.25V4.75ZM4.53033 5.21967C4.23744 4.92678 3.76256 4.92678 3.46967 5.21967L1.21967 7.46967C0.926777 7.76256 0.926777 8.23744 1.21967 8.53033L3.46967 10.7803C3.76256 11.0732 4.23744 11.0732 4.53033 10.7803C4.82322 10.4874 4.82322 10.0126 4.53033 9.71967L3.56066 8.75L10.75 8.75C11.1642 8.75 11.5 8.41421 11.5 8C11.5 7.58579 11.1642 7.25 10.75 7.25L3.56066 7.25L4.53033 6.28033C4.82322 5.98744 4.82322 5.51256 4.53033 5.21967Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M14 8C14 8.41421 13.6642 8.75 13.25 8.75L4.56066 8.75L7.78033 11.9697C8.07322 12.2626 8.07322 12.7374 7.78033 13.0303C7.48744 13.3232 7.01256 13.3232 6.71967 13.0303L2.21967 8.53033C1.92678 8.23744 1.92678 7.76256 2.21967 7.46967L6.71967 2.96967C7.01256 2.67678 7.48744 2.67678 7.78033 2.96967C8.07322 3.26256 8.07322 3.73744 7.78033 4.03033L4.56066 7.25L13.25 7.25C13.6642 7.25 14 7.58579 14 8Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 2C8.41421 2 8.75 2.33579 8.75 2.75V11.4393L9.96967 10.2197C10.2626 9.92678 10.7374 9.92678 11.0303 10.2197C11.3232 10.5126 11.3232 10.9874 11.0303 11.2803L8.53033 13.7803C8.23744 14.0732 7.76256 14.0732 7.46967 13.7803L4.96967 11.2803C4.67678 10.9874 4.67678 10.5126 4.96967 10.2197C5.26256 9.92678 5.73744 9.92678 6.03033 10.2197L7.25 11.4393V2.75C7.25 2.33579 7.58579 2 8 2Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M14 8C14 8.41421 13.6642 8.75 13.25 8.75L4.56066 8.75L5.78033 9.96967C6.07322 10.2626 6.07322 10.7374 5.78033 11.0303C5.48744 11.3232 5.01256 11.3232 4.71967 11.0303L2.21967 8.53033C1.92678 8.23744 1.92678 7.76256 2.21967 7.46967L4.71967 4.96967C5.01256 4.67678 5.48744 4.67678 5.78033 4.96967C6.07322 5.26256 6.07322 5.73744 5.78033 6.03033L4.56066 7.25L13.25 7.25C13.6642 7.25 14 7.58579 14 8Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M2 8C2 8.41421 2.33579 8.75 2.75 8.75L11.4393 8.75L10.2197 9.96967C9.92678 10.2626 9.92678 10.7374 10.2197 11.0303C10.5126 11.3232 10.9874 11.3232 11.2803 11.0303L13.7803 8.53033C14.0732 8.23744 14.0732 7.76256 13.7803 7.46967L11.2803 4.96967C10.9874 4.67678 10.5126 4.67678 10.2197 4.96967C9.92678 5.26256 9.92678 5.73744 10.2197 6.03033L11.4393 7.25L2.75 7.25C2.33579 7.25 2 7.58579 2 8Z"/></svg>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<svg {{ $attributes }} fill="currentColor" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14C8.41421 14 8.75 13.6642 8.75 13.25V4.56066L9.96967 5.78033C10.2626 6.07322 10.7374 6.07322 11.0303 5.78033C11.3232 5.48744 11.3232 5.01256 11.0303 4.71967L8.53033 2.21967C8.23744 1.92678 7.76256 1.92678 7.46967 2.21967L4.96967 4.71967C4.67678 5.01256 4.67678 5.48744 4.96967 5.78033C5.26256 6.07322 5.73744 6.07322 6.03033 5.78033L7.25 4.56066V13.25C7.25 13.6642 7.58579 14 8 14Z"/></svg>

0 commit comments

Comments
 (0)