-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit a64cdae
Showing
636 changed files
with
7,047 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
![octicons cover light](https://user-images.githubusercontent.com/54012/138925195-5779c51d-ff8c-4264-a914-e64f4843893d.png#gh-light-mode-only) | ||
![octicons cover dark](https://user-images.githubusercontent.com/54012/138925203-80e1afa1-ba54-4731-9525-3c41186663f9.png#gh-dark-mode-only) | ||
<br> | ||
<h1 align="center"> | ||
Laravel Primer Octicons | ||
</h1> | ||
<p align="center"> | ||
A Laravel package to integrate GitHub's Octicons into your Laravel project effortlessly. This package allows you to use Octicons directly in your Blade templates with ease. | ||
</p> | ||
|
||
|
||
## About | ||
|
||
Octicons are a scalable set of icons handcrafted by GitHub. They are designed to be highly legible, even at small sizes, and are perfect for adding a consistent visual language to your web projects. | ||
|
||
GitHub Repository: [primer/octicons](https://github.com/primer/octicons) | ||
Official Site: [Octicons](https://primer.style/octicons) | ||
|
||
## Installation | ||
|
||
You can install the package via Composer: | ||
|
||
```bash | ||
composer require devzkhalil/laravel-primer-octicons | ||
``` | ||
|
||
## Usage | ||
|
||
After installing, you can use the Octicons in your Blade templates like this: | ||
|
||
```blade | ||
<x-icon::thin.arrow-up-left width="16" height="16" fill="white" /> | ||
<x-icon::bold.arrow-up-left width="16" height="16" fill="white" /> | ||
<x-icon::thin.download width="24" height="24" fill="white" /> | ||
<x-icon::bold.download width="24" height="24" fill="white" /> | ||
``` | ||
## Icon Sizes and Parameters | ||
|
||
In this package: | ||
|
||
- GitHub `16px` icons are referred to as `bold`. | ||
- GitHub `24px` icons are referred to as `thin`. | ||
|
||
### Component Parameters | ||
|
||
**For Bold Icons (16px):** | ||
- `width` is optional; the default size is `16px`. | ||
- `height` is optional; the default size is `16px`. | ||
- `fill` is optional; the default color is `black`. | ||
|
||
**For Thin Icons (24px):** | ||
- `width` is optional; the default size is `24px`. | ||
- `height` is optional; the default size is `24px`. | ||
- `fill` is optional; the default color is `black`. | ||
|
||
### Finding Icon Names | ||
|
||
To find the name of an icon: | ||
1. Visit the official Octicons site: [Octicons](https://primer.style/foundations/icons). | ||
2. Locate and copy the name of your desired icon. | ||
3. Use the icon in your Blade templates with the appropriate size: | ||
|
||
For `16px` icons (bold): | ||
```blade | ||
<x-icon::bold.your-icon-name /> | ||
``` | ||
For `24px` icons (thin): | ||
```blade | ||
<x-icon::thin.your-icon-name /> | ||
``` | ||
|
||
## Publish Components | ||
|
||
Publish the components file with the following command: | ||
|
||
```bash | ||
php artisan vendor:publish --tag=primer-octicons | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "devzkhalil/laravel-primer-octicons", | ||
"license": "MIT", | ||
"authors": [{ | ||
"name": "devzkhalil", | ||
"email": "[email protected]" | ||
}], | ||
"require": {}, | ||
"autoload": { | ||
"psr-4": { | ||
"Devzkhalil\\LaravelPrimerOcticons\\": "src" | ||
} | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"Devzkhalil\\LaravelPrimerOcticons\\LaravelPrimerOcticonsServiceProvider" | ||
] | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true | ||
} |
10 changes: 10 additions & 0 deletions
10
resources/views/components/bold/accessibility-inset.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM3.75 6a.75.75 0 0 0 0 1.5h2.409a1.9 1.9 0 0 0-.025.151l-.307 2.508-.323 3.011a.75.75 0 0 0 1.492.16l.25-2.33h1.509l.25 2.33a.748.748 0 0 0 1.199.552.75.75 0 0 0 .291-.712l-.32-3-.309-2.519a1.9 1.9 0 0 0-.025-.151h2.409a.75.75 0 0 0 0-1.5h-8.5ZM8 6a2 2 0 1 0 .001-3.999A2 2 0 0 0 8 6Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" | ||
viewBox="0 0 16 16"> | ||
<path | ||
d="M9.923 5.302c.063.063.122.129.178.198H14A.75.75 0 0 1 14 7h-3.3l.578 5.163.362 2.997a.75.75 0 0 1-1.49.18L9.868 13H6.132l-.282 2.34a.75.75 0 0 1-1.49-.18l.362-2.997L5.3 7H2a.75.75 0 0 1 0-1.5h3.9a2.54 2.54 0 0 1 .176-.198 3 3 0 1 1 3.847 0ZM9.2 7.073h-.001a1.206 1.206 0 0 0-2.398 0L6.305 11.5h3.39ZM9.5 3a1.5 1.5 0 1 0-3.001.001A1.5 1.5 0 0 0 9.5 3Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M10.628 7.25a2.25 2.25 0 1 1 0 1.5H8.622a2.25 2.25 0 0 1-2.513 1.466L5.03 12.124a2.25 2.25 0 1 1-1.262-.814l1.035-1.832A2.245 2.245 0 0 1 4.25 8c0-.566.209-1.082.553-1.478L3.768 4.69a2.25 2.25 0 1 1 1.262-.814l1.079 1.908A2.25 2.25 0 0 1 8.622 7.25ZM2.5 2.5a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Zm4 4.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm6.25 0a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-9.5 5.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575ZM8 5a.75.75 0 0 0-.75.75v2.5a.75.75 0 0 0 1.5 0v-2.5A.75.75 0 0 0 8 5Zm1 6a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M1.5 3.25c0-.966.784-1.75 1.75-1.75h2.5c.966 0 1.75.784 1.75 1.75v2.5A1.75 1.75 0 0 1 5.75 7.5h-2.5A1.75 1.75 0 0 1 1.5 5.75Zm7 0c0-.966.784-1.75 1.75-1.75h2.5c.966 0 1.75.784 1.75 1.75v2.5a1.75 1.75 0 0 1-1.75 1.75h-2.5A1.75 1.75 0 0 1 8.5 5.75Zm-7 7c0-.966.784-1.75 1.75-1.75h2.5c.966 0 1.75.784 1.75 1.75v2.5a1.75 1.75 0 0 1-1.75 1.75h-2.5a1.75 1.75 0 0 1-1.75-1.75Zm7 0c0-.966.784-1.75 1.75-1.75h2.5c.966 0 1.75.784 1.75 1.75v2.5a1.75 1.75 0 0 1-1.75 1.75h-2.5a1.75 1.75 0 0 1-1.75-1.75ZM3.25 3a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2.5A.25.25 0 0 0 6 5.75v-2.5A.25.25 0 0 0 5.75 3Zm7 0a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2.5a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25Zm-7 7a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2.5a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25Zm7 0a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2.5a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M0 2.75C0 1.784.784 1 1.75 1h12.5c.966 0 1.75.784 1.75 1.75v1.5A1.75 1.75 0 0 1 14.25 6H1.75A1.75 1.75 0 0 1 0 4.25ZM1.75 7a.75.75 0 0 1 .75.75v5.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25v-5.5a.75.75 0 0 1 1.5 0v5.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25v-5.5A.75.75 0 0 1 1.75 7Zm0-4.5a.25.25 0 0 0-.25.25v1.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-1.5a.25.25 0 0 0-.25-.25ZM6.25 8h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1 0-1.5Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M3.72 3.72a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042L2.56 7h10.88l-2.22-2.22a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018l3.5 3.5a.75.75 0 0 1 0 1.06l-3.5 3.5a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734l2.22-2.22H2.56l2.22 2.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215l-3.5-3.5a.75.75 0 0 1 0-1.06Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M11.78 4.22a.75.75 0 0 1 0 1.06l-5.26 5.26h4.2a.75.75 0 0 1 0 1.5H4.71a.75.75 0 0 1-.75-.75V5.28a.75.75 0 0 1 1.5 0v4.2l5.26-5.26a.75.75 0 0 1 1.06 0Z" /> | ||
</svg> |
10 changes: 10 additions & 0 deletions
10
resources/views/components/bold/arrow-down-right.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M4.22 4.179a.75.75 0 0 1 1.06 0l5.26 5.26v-4.2a.75.75 0 0 1 1.5 0v6.01a.75.75 0 0 1-.75.75H5.28a.75.75 0 0 1 0-1.5h4.2L4.22 5.24a.75.75 0 0 1 0-1.06Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M13.03 8.22a.75.75 0 0 1 0 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0L3.47 9.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018l2.97 2.97V3.75a.75.75 0 0 1 1.5 0v7.44l2.97-2.97a.75.75 0 0 1 1.06 0Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M7.78 12.53a.75.75 0 0 1-1.06 0L2.47 8.28a.75.75 0 0 1 0-1.06l4.25-4.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042L4.81 7h7.44a.75.75 0 0 1 0 1.5H4.81l2.97 2.97a.75.75 0 0 1 0 1.06Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M8.22 2.97a.75.75 0 0 1 1.06 0l4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042l2.97-2.97H3.75a.75.75 0 0 1 0-1.5h7.44L8.22 4.03a.75.75 0 0 1 0-1.06Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M5.22 14.78a.75.75 0 0 0 1.06-1.06L4.56 12h8.69a.75.75 0 0 0 0-1.5H4.56l1.72-1.72a.75.75 0 0 0-1.06-1.06l-3 3a.75.75 0 0 0 0 1.06l3 3Zm5.56-6.5a.75.75 0 1 1-1.06-1.06l1.72-1.72H2.75a.75.75 0 0 1 0-1.5h8.69L9.72 2.28a.75.75 0 0 1 1.06-1.06l3 3a.75.75 0 0 1 0 1.06l-3 3Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M3.96 4.75A.75.75 0 0 1 4.71 4h6.01a.75.75 0 0 1 0 1.5h-4.2l5.26 5.26a.75.75 0 0 1-1.06 1.061l-5.26-5.26v4.2a.75.75 0 0 1-1.5 0Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M4.53 4.75A.75.75 0 0 1 5.28 4h6.01a.75.75 0 0 1 .75.75v6.01a.75.75 0 0 1-1.5 0v-4.2l-5.26 5.261a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734L9.48 5.5h-4.2a.75.75 0 0 1-.75-.75Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M3.47 7.78a.75.75 0 0 1 0-1.06l4.25-4.25a.75.75 0 0 1 1.06 0l4.25 4.25a.751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018L9 4.81v7.44a.75.75 0 0 1-1.5 0V4.81L4.53 7.78a.75.75 0 0 1-1.06 0Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M5 5.782V2.5h-.25a.75.75 0 0 1 0-1.5h6.5a.75.75 0 0 1 0 1.5H11v3.282l3.666 5.76C15.619 13.04 14.543 15 12.767 15H3.233c-1.776 0-2.852-1.96-1.899-3.458Zm-2.4 6.565a.75.75 0 0 0 .633 1.153h9.534a.75.75 0 0 0 .633-1.153L12.225 10.5h-8.45ZM9.5 2.5h-3V6c0 .143-.04.283-.117.403L4.73 9h6.54L9.617 6.403A.746.746 0 0 1 9.5 6Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M8 16c.9 0 1.7-.6 1.9-1.5.1-.3-.1-.5-.4-.5h-3c-.3 0-.5.2-.4.5.2.9 1 1.5 1.9 1.5ZM3 5c0-2.8 2.2-5 5-5s5 2.2 5 5v3l1.7 2.6c.2.2.3.5.3.8 0 .8-.7 1.5-1.5 1.5h-11c-.8.1-1.5-.6-1.5-1.4 0-.3.1-.6.3-.8L3 8.1V5Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="m4.182 4.31.016.011 10.104 7.316.013.01 1.375.996a.75.75 0 1 1-.88 1.214L13.626 13H2.518a1.516 1.516 0 0 1-1.263-2.36l1.703-2.554A.255.255 0 0 0 3 7.947V5.305L.31 3.357a.75.75 0 1 1 .88-1.214Zm7.373 7.19L4.5 6.391v1.556c0 .346-.102.683-.294.97l-1.703 2.556a.017.017 0 0 0-.003.01c0 .005.002.009.005.012l.006.004.007.001ZM8 1.5c-.997 0-1.895.416-2.534 1.086A.75.75 0 1 1 4.38 1.55 5 5 0 0 1 13 5v2.373a.75.75 0 0 1-1.5 0V5A3.5 3.5 0 0 0 8 1.5ZM8 16a2 2 0 0 1-1.985-1.75c-.017-.137.097-.25.235-.25h3.5c.138 0 .252.113.235.25A2 2 0 0 1 8 16Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M8 16a2 2 0 0 0 1.985-1.75c.017-.137-.097-.25-.235-.25h-3.5c-.138 0-.252.113-.235.25A2 2 0 0 0 8 16ZM3 5a5 5 0 0 1 10 0v2.947c0 .05.015.098.042.139l1.703 2.555A1.519 1.519 0 0 1 13.482 13H2.518a1.516 1.516 0 0 1-1.263-2.36l1.703-2.554A.255.255 0 0 0 3 7.947Zm5-3.5A3.5 3.5 0 0 0 4.5 5v2.947c0 .346-.102.683-.294.97l-1.703 2.556a.017.017 0 0 0-.003.01l.001.006c0 .002.002.004.004.006l.006.004.007.001h10.964l.007-.001.006-.004.004-.006.001-.007a.017.017 0 0 0-.003-.01l-1.703-2.554a1.745 1.745 0 0 1-.294-.97V5A3.5 3.5 0 0 0 8 1.5Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M4.467.22a.749.749 0 0 1 .53-.22h6.006c.199 0 .389.079.53.22l4.247 4.247c.141.14.22.331.22.53v6.006a.749.749 0 0 1-.22.53l-4.247 4.247a.749.749 0 0 1-.53.22H4.997a.749.749 0 0 1-.53-.22L.22 11.533a.749.749 0 0 1-.22-.53V4.997c0-.199.079-.389.22-.53Zm.84 1.28L1.5 5.308v5.384L5.308 14.5h5.384l3.808-3.808V5.308L10.692 1.5ZM4 7.75A.75.75 0 0 1 4.75 7h6.5a.75.75 0 0 1 0 1.5h-6.5A.75.75 0 0 1 4 7.75Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M4 2h4.5a3.501 3.501 0 0 1 2.852 5.53A3.499 3.499 0 0 1 9.5 14H4a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1Zm1 7v3h4.5a1.5 1.5 0 0 0 0-3Zm3.5-2a1.5 1.5 0 0 0 0-3H5v3Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M0 1.75A.75.75 0 0 1 .75 1h4.253c1.227 0 2.317.59 3 1.501A3.743 3.743 0 0 1 11.006 1h4.245a.75.75 0 0 1 .75.75v10.5a.75.75 0 0 1-.75.75h-4.507a2.25 2.25 0 0 0-1.591.659l-.622.621a.75.75 0 0 1-1.06 0l-.622-.621A2.25 2.25 0 0 0 5.258 13H.75a.75.75 0 0 1-.75-.75Zm7.251 10.324.004-5.073-.002-2.253A2.25 2.25 0 0 0 5.003 2.5H1.5v9h3.757a3.75 3.75 0 0 1 1.994.574ZM8.755 4.75l-.004 7.322a3.752 3.752 0 0 1 1.992-.572H14.5v-9h-3.495a2.25 2.25 0 0 0-2.25 2.25Z" /> | ||
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M3 2.75C3 1.784 3.784 1 4.75 1h6.5c.966 0 1.75.784 1.75 1.75v11.5a.75.75 0 0 1-1.227.579L8 11.722l-3.773 3.107A.75.75 0 0 1 3 14.25V2.75Z" /> | ||
</svg> |
10 changes: 10 additions & 0 deletions
10
resources/views/components/bold/bookmark-slash-fill.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@props([ | ||
'width' => 16, | ||
'height' => 16, | ||
'fill' => '', | ||
]) | ||
|
||
<svg width="{{ $width }}" height="{{ $height }}" fill="{{ $fill }}" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> | ||
<path | ||
d="M1.19 1.143a.75.75 0 1 0-.88 1.215L3 4.305v9.945a.75.75 0 0 0 1.206.596L8 11.944l3.794 2.902A.75.75 0 0 0 13 14.25v-2.703l1.81 1.31a.75.75 0 1 0 .88-1.214l-2.994-2.168a1.09 1.09 0 0 0-.014-.01L4.196 3.32a.712.712 0 0 0-.014-.01L1.19 1.143Zm2.934.203A.5.5 0 0 1 4.6 1h7.233C12.478 1 13 1.522 13 2.167v5.05a.5.5 0 0 1-.793.405l-7.9-5.717a.5.5 0 0 1-.183-.559Z" /> | ||
</svg> |
Oops, something went wrong.