diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..49ce3c1
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/vendor
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..35d9b50
--- /dev/null
+++ b/README.md
@@ -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)
+
+
+Laravel Primer Octicons
+
+
+ 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.
+
+
+
+## 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
+
+
+
+
+
+```
+## 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
+
+ ```
+For `24px` icons (thin):
+ ```blade
+
+ ```
+
+## Publish Components
+
+Publish the components file with the following command:
+
+```bash
+php artisan vendor:publish --tag=primer-octicons
+```
\ No newline at end of file
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..1a98678
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,23 @@
+{
+ "name": "devzkhalil/laravel-primer-octicons",
+ "license": "MIT",
+ "authors": [{
+ "name": "devzkhalil",
+ "email": "devzkhalil@gmail.com"
+ }],
+ "require": {},
+ "autoload": {
+ "psr-4": {
+ "Devzkhalil\\LaravelPrimerOcticons\\": "src"
+ }
+ },
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Devzkhalil\\LaravelPrimerOcticons\\LaravelPrimerOcticonsServiceProvider"
+ ]
+ }
+ },
+ "minimum-stability": "dev",
+ "prefer-stable": true
+}
diff --git a/resources/views/components/bold/accessibility-inset.blade.php b/resources/views/components/bold/accessibility-inset.blade.php
new file mode 100644
index 0000000..7199fd9
--- /dev/null
+++ b/resources/views/components/bold/accessibility-inset.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/accessibility.blade.php b/resources/views/components/bold/accessibility.blade.php
new file mode 100644
index 0000000..48a7c21
--- /dev/null
+++ b/resources/views/components/bold/accessibility.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/ai-model.blade.php b/resources/views/components/bold/ai-model.blade.php
new file mode 100644
index 0000000..4ec5b97
--- /dev/null
+++ b/resources/views/components/bold/ai-model.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/alert-fill.blade.php b/resources/views/components/bold/alert-fill.blade.php
new file mode 100644
index 0000000..0dab63c
--- /dev/null
+++ b/resources/views/components/bold/alert-fill.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/alert.blade.php b/resources/views/components/bold/alert.blade.php
new file mode 100644
index 0000000..61b27bd
--- /dev/null
+++ b/resources/views/components/bold/alert.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/apps.blade.php b/resources/views/components/bold/apps.blade.php
new file mode 100644
index 0000000..72eddd0
--- /dev/null
+++ b/resources/views/components/bold/apps.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/archive.blade.php b/resources/views/components/bold/archive.blade.php
new file mode 100644
index 0000000..c108681
--- /dev/null
+++ b/resources/views/components/bold/archive.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/arrow-both.blade.php b/resources/views/components/bold/arrow-both.blade.php
new file mode 100644
index 0000000..5c5f6c7
--- /dev/null
+++ b/resources/views/components/bold/arrow-both.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/arrow-down-left.blade.php b/resources/views/components/bold/arrow-down-left.blade.php
new file mode 100644
index 0000000..e567641
--- /dev/null
+++ b/resources/views/components/bold/arrow-down-left.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/arrow-down-right.blade.php b/resources/views/components/bold/arrow-down-right.blade.php
new file mode 100644
index 0000000..2cdb4cd
--- /dev/null
+++ b/resources/views/components/bold/arrow-down-right.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/arrow-down.blade.php b/resources/views/components/bold/arrow-down.blade.php
new file mode 100644
index 0000000..a3c762d
--- /dev/null
+++ b/resources/views/components/bold/arrow-down.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/arrow-left.blade.php b/resources/views/components/bold/arrow-left.blade.php
new file mode 100644
index 0000000..909917d
--- /dev/null
+++ b/resources/views/components/bold/arrow-left.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/arrow-right.blade.php b/resources/views/components/bold/arrow-right.blade.php
new file mode 100644
index 0000000..c7a7b19
--- /dev/null
+++ b/resources/views/components/bold/arrow-right.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/arrow-switch.blade.php b/resources/views/components/bold/arrow-switch.blade.php
new file mode 100644
index 0000000..36fd2b0
--- /dev/null
+++ b/resources/views/components/bold/arrow-switch.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/arrow-up-left.blade.php b/resources/views/components/bold/arrow-up-left.blade.php
new file mode 100644
index 0000000..55692ea
--- /dev/null
+++ b/resources/views/components/bold/arrow-up-left.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/arrow-up-right.blade.php b/resources/views/components/bold/arrow-up-right.blade.php
new file mode 100644
index 0000000..7141a4e
--- /dev/null
+++ b/resources/views/components/bold/arrow-up-right.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/arrow-up.blade.php b/resources/views/components/bold/arrow-up.blade.php
new file mode 100644
index 0000000..ff4d020
--- /dev/null
+++ b/resources/views/components/bold/arrow-up.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/beaker.blade.php b/resources/views/components/bold/beaker.blade.php
new file mode 100644
index 0000000..380cb95
--- /dev/null
+++ b/resources/views/components/bold/beaker.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/bell-fill.blade.php b/resources/views/components/bold/bell-fill.blade.php
new file mode 100644
index 0000000..cea6a87
--- /dev/null
+++ b/resources/views/components/bold/bell-fill.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/bell-slash.blade.php b/resources/views/components/bold/bell-slash.blade.php
new file mode 100644
index 0000000..98fff64
--- /dev/null
+++ b/resources/views/components/bold/bell-slash.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/bell.blade.php b/resources/views/components/bold/bell.blade.php
new file mode 100644
index 0000000..657d9a3
--- /dev/null
+++ b/resources/views/components/bold/bell.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/blocked.blade.php b/resources/views/components/bold/blocked.blade.php
new file mode 100644
index 0000000..3a1c202
--- /dev/null
+++ b/resources/views/components/bold/blocked.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/bold.blade.php b/resources/views/components/bold/bold.blade.php
new file mode 100644
index 0000000..bfe92ba
--- /dev/null
+++ b/resources/views/components/bold/bold.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/book.blade.php b/resources/views/components/bold/book.blade.php
new file mode 100644
index 0000000..dbd49fe
--- /dev/null
+++ b/resources/views/components/bold/book.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/bookmark-filled.blade.php b/resources/views/components/bold/bookmark-filled.blade.php
new file mode 100644
index 0000000..b3eba87
--- /dev/null
+++ b/resources/views/components/bold/bookmark-filled.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/bookmark-slash-fill.blade.php b/resources/views/components/bold/bookmark-slash-fill.blade.php
new file mode 100644
index 0000000..75a28b6
--- /dev/null
+++ b/resources/views/components/bold/bookmark-slash-fill.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/bookmark-slash.blade.php b/resources/views/components/bold/bookmark-slash.blade.php
new file mode 100644
index 0000000..5ca09a9
--- /dev/null
+++ b/resources/views/components/bold/bookmark-slash.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/bookmark.blade.php b/resources/views/components/bold/bookmark.blade.php
new file mode 100644
index 0000000..396ccc8
--- /dev/null
+++ b/resources/views/components/bold/bookmark.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/briefcase.blade.php b/resources/views/components/bold/briefcase.blade.php
new file mode 100644
index 0000000..362d0a0
--- /dev/null
+++ b/resources/views/components/bold/briefcase.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/broadcast.blade.php b/resources/views/components/bold/broadcast.blade.php
new file mode 100644
index 0000000..0d3d6a3
--- /dev/null
+++ b/resources/views/components/bold/broadcast.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/browser.blade.php b/resources/views/components/bold/browser.blade.php
new file mode 100644
index 0000000..e353eae
--- /dev/null
+++ b/resources/views/components/bold/browser.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/bug.blade.php b/resources/views/components/bold/bug.blade.php
new file mode 100644
index 0000000..14a0020
--- /dev/null
+++ b/resources/views/components/bold/bug.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/cache.blade.php b/resources/views/components/bold/cache.blade.php
new file mode 100644
index 0000000..a3197e9
--- /dev/null
+++ b/resources/views/components/bold/cache.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/calendar.blade.php b/resources/views/components/bold/calendar.blade.php
new file mode 100644
index 0000000..f0d3ac2
--- /dev/null
+++ b/resources/views/components/bold/calendar.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/check-circle-fill.blade.php b/resources/views/components/bold/check-circle-fill.blade.php
new file mode 100644
index 0000000..4f259e2
--- /dev/null
+++ b/resources/views/components/bold/check-circle-fill.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/check-circle.blade.php b/resources/views/components/bold/check-circle.blade.php
new file mode 100644
index 0000000..72d23da
--- /dev/null
+++ b/resources/views/components/bold/check-circle.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/check.blade.php b/resources/views/components/bold/check.blade.php
new file mode 100644
index 0000000..7443f20
--- /dev/null
+++ b/resources/views/components/bold/check.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/checkbox.blade.php b/resources/views/components/bold/checkbox.blade.php
new file mode 100644
index 0000000..047577b
--- /dev/null
+++ b/resources/views/components/bold/checkbox.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/checklist.blade.php b/resources/views/components/bold/checklist.blade.php
new file mode 100644
index 0000000..0238976
--- /dev/null
+++ b/resources/views/components/bold/checklist.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/chevron-down.blade.php b/resources/views/components/bold/chevron-down.blade.php
new file mode 100644
index 0000000..91d8484
--- /dev/null
+++ b/resources/views/components/bold/chevron-down.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/chevron-left.blade.php b/resources/views/components/bold/chevron-left.blade.php
new file mode 100644
index 0000000..650542a
--- /dev/null
+++ b/resources/views/components/bold/chevron-left.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/chevron-right.blade.php b/resources/views/components/bold/chevron-right.blade.php
new file mode 100644
index 0000000..10e4547
--- /dev/null
+++ b/resources/views/components/bold/chevron-right.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/chevron-up.blade.php b/resources/views/components/bold/chevron-up.blade.php
new file mode 100644
index 0000000..4385c37
--- /dev/null
+++ b/resources/views/components/bold/chevron-up.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/circle-slash.blade.php b/resources/views/components/bold/circle-slash.blade.php
new file mode 100644
index 0000000..88ad367
--- /dev/null
+++ b/resources/views/components/bold/circle-slash.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/circle.blade.php b/resources/views/components/bold/circle.blade.php
new file mode 100644
index 0000000..74848d3
--- /dev/null
+++ b/resources/views/components/bold/circle.blade.php
@@ -0,0 +1,9 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/clock-fill.blade.php b/resources/views/components/bold/clock-fill.blade.php
new file mode 100644
index 0000000..65f6023
--- /dev/null
+++ b/resources/views/components/bold/clock-fill.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/clock.blade.php b/resources/views/components/bold/clock.blade.php
new file mode 100644
index 0000000..9999f30
--- /dev/null
+++ b/resources/views/components/bold/clock.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/cloud-offline.blade.php b/resources/views/components/bold/cloud-offline.blade.php
new file mode 100644
index 0000000..0595f61
--- /dev/null
+++ b/resources/views/components/bold/cloud-offline.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/cloud.blade.php b/resources/views/components/bold/cloud.blade.php
new file mode 100644
index 0000000..4d32097
--- /dev/null
+++ b/resources/views/components/bold/cloud.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/code-of-conduct.blade.php b/resources/views/components/bold/code-of-conduct.blade.php
new file mode 100644
index 0000000..457885c
--- /dev/null
+++ b/resources/views/components/bold/code-of-conduct.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/code-review.blade.php b/resources/views/components/bold/code-review.blade.php
new file mode 100644
index 0000000..f7f9edc
--- /dev/null
+++ b/resources/views/components/bold/code-review.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/code-square.blade.php b/resources/views/components/bold/code-square.blade.php
new file mode 100644
index 0000000..7a8a53c
--- /dev/null
+++ b/resources/views/components/bold/code-square.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/code.blade.php b/resources/views/components/bold/code.blade.php
new file mode 100644
index 0000000..077a58c
--- /dev/null
+++ b/resources/views/components/bold/code.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/codescan-checkmark.blade.php b/resources/views/components/bold/codescan-checkmark.blade.php
new file mode 100644
index 0000000..ebca2c9
--- /dev/null
+++ b/resources/views/components/bold/codescan-checkmark.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/codescan.blade.php b/resources/views/components/bold/codescan.blade.php
new file mode 100644
index 0000000..d969a79
--- /dev/null
+++ b/resources/views/components/bold/codescan.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/codespaces.blade.php b/resources/views/components/bold/codespaces.blade.php
new file mode 100644
index 0000000..850c719
--- /dev/null
+++ b/resources/views/components/bold/codespaces.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/columns.blade.php b/resources/views/components/bold/columns.blade.php
new file mode 100644
index 0000000..53798a5
--- /dev/null
+++ b/resources/views/components/bold/columns.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/command-palette.blade.php b/resources/views/components/bold/command-palette.blade.php
new file mode 100644
index 0000000..104f661
--- /dev/null
+++ b/resources/views/components/bold/command-palette.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/comment-discussion.blade.php b/resources/views/components/bold/comment-discussion.blade.php
new file mode 100644
index 0000000..df2c32c
--- /dev/null
+++ b/resources/views/components/bold/comment-discussion.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/comment.blade.php b/resources/views/components/bold/comment.blade.php
new file mode 100644
index 0000000..55ebd24
--- /dev/null
+++ b/resources/views/components/bold/comment.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/container.blade.php b/resources/views/components/bold/container.blade.php
new file mode 100644
index 0000000..3784344
--- /dev/null
+++ b/resources/views/components/bold/container.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/copilot-error.blade.php b/resources/views/components/bold/copilot-error.blade.php
new file mode 100644
index 0000000..08dac0f
--- /dev/null
+++ b/resources/views/components/bold/copilot-error.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/copilot-warning.blade.php b/resources/views/components/bold/copilot-warning.blade.php
new file mode 100644
index 0000000..d0296fb
--- /dev/null
+++ b/resources/views/components/bold/copilot-warning.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/copilot.blade.php b/resources/views/components/bold/copilot.blade.php
new file mode 100644
index 0000000..0b908fe
--- /dev/null
+++ b/resources/views/components/bold/copilot.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/copy.blade.php b/resources/views/components/bold/copy.blade.php
new file mode 100644
index 0000000..fc8046f
--- /dev/null
+++ b/resources/views/components/bold/copy.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/cpu.blade.php b/resources/views/components/bold/cpu.blade.php
new file mode 100644
index 0000000..91c23c0
--- /dev/null
+++ b/resources/views/components/bold/cpu.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/credit-card.blade.php b/resources/views/components/bold/credit-card.blade.php
new file mode 100644
index 0000000..e9efe46
--- /dev/null
+++ b/resources/views/components/bold/credit-card.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/cross-reference.blade.php b/resources/views/components/bold/cross-reference.blade.php
new file mode 100644
index 0000000..b7e1f9a
--- /dev/null
+++ b/resources/views/components/bold/cross-reference.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/dash.blade.php b/resources/views/components/bold/dash.blade.php
new file mode 100644
index 0000000..cc8a826
--- /dev/null
+++ b/resources/views/components/bold/dash.blade.php
@@ -0,0 +1,9 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/database.blade.php b/resources/views/components/bold/database.blade.php
new file mode 100644
index 0000000..0076247
--- /dev/null
+++ b/resources/views/components/bold/database.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/dependabot.blade.php b/resources/views/components/bold/dependabot.blade.php
new file mode 100644
index 0000000..d85aaf5
--- /dev/null
+++ b/resources/views/components/bold/dependabot.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/desktop-download.blade.php b/resources/views/components/bold/desktop-download.blade.php
new file mode 100644
index 0000000..b602a3a
--- /dev/null
+++ b/resources/views/components/bold/desktop-download.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/device-camera-video.blade.php b/resources/views/components/bold/device-camera-video.blade.php
new file mode 100644
index 0000000..e0eef92
--- /dev/null
+++ b/resources/views/components/bold/device-camera-video.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/device-camera.blade.php b/resources/views/components/bold/device-camera.blade.php
new file mode 100644
index 0000000..ae0c0a9
--- /dev/null
+++ b/resources/views/components/bold/device-camera.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/device-desktop.blade.php b/resources/views/components/bold/device-desktop.blade.php
new file mode 100644
index 0000000..357d98a
--- /dev/null
+++ b/resources/views/components/bold/device-desktop.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/device-mobile.blade.php b/resources/views/components/bold/device-mobile.blade.php
new file mode 100644
index 0000000..902ba8c
--- /dev/null
+++ b/resources/views/components/bold/device-mobile.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/devices.blade.php b/resources/views/components/bold/devices.blade.php
new file mode 100644
index 0000000..c30b6c7
--- /dev/null
+++ b/resources/views/components/bold/devices.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/diamond.blade.php b/resources/views/components/bold/diamond.blade.php
new file mode 100644
index 0000000..8c68ab2
--- /dev/null
+++ b/resources/views/components/bold/diamond.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/diff-added.blade.php b/resources/views/components/bold/diff-added.blade.php
new file mode 100644
index 0000000..f7f7487
--- /dev/null
+++ b/resources/views/components/bold/diff-added.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/diff-ignored.blade.php b/resources/views/components/bold/diff-ignored.blade.php
new file mode 100644
index 0000000..51a6f9c
--- /dev/null
+++ b/resources/views/components/bold/diff-ignored.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/diff-modified.blade.php b/resources/views/components/bold/diff-modified.blade.php
new file mode 100644
index 0000000..8c6245c
--- /dev/null
+++ b/resources/views/components/bold/diff-modified.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/diff-removed.blade.php b/resources/views/components/bold/diff-removed.blade.php
new file mode 100644
index 0000000..3a9d2b4
--- /dev/null
+++ b/resources/views/components/bold/diff-removed.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/diff-renamed.blade.php b/resources/views/components/bold/diff-renamed.blade.php
new file mode 100644
index 0000000..5664b47
--- /dev/null
+++ b/resources/views/components/bold/diff-renamed.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/diff.blade.php b/resources/views/components/bold/diff.blade.php
new file mode 100644
index 0000000..370a933
--- /dev/null
+++ b/resources/views/components/bold/diff.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/discussion-closed.blade.php b/resources/views/components/bold/discussion-closed.blade.php
new file mode 100644
index 0000000..98503cd
--- /dev/null
+++ b/resources/views/components/bold/discussion-closed.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/discussion-duplicate.blade.php b/resources/views/components/bold/discussion-duplicate.blade.php
new file mode 100644
index 0000000..f23843a
--- /dev/null
+++ b/resources/views/components/bold/discussion-duplicate.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/discussion-outdated.blade.php b/resources/views/components/bold/discussion-outdated.blade.php
new file mode 100644
index 0000000..cc77590
--- /dev/null
+++ b/resources/views/components/bold/discussion-outdated.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/dot-fill.blade.php b/resources/views/components/bold/dot-fill.blade.php
new file mode 100644
index 0000000..3f993a6
--- /dev/null
+++ b/resources/views/components/bold/dot-fill.blade.php
@@ -0,0 +1,9 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/dot.blade.php b/resources/views/components/bold/dot.blade.php
new file mode 100644
index 0000000..17c0b20
--- /dev/null
+++ b/resources/views/components/bold/dot.blade.php
@@ -0,0 +1,9 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/download.blade.php b/resources/views/components/bold/download.blade.php
new file mode 100644
index 0000000..bebe956
--- /dev/null
+++ b/resources/views/components/bold/download.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/duplicate.blade.php b/resources/views/components/bold/duplicate.blade.php
new file mode 100644
index 0000000..d7a889c
--- /dev/null
+++ b/resources/views/components/bold/duplicate.blade.php
@@ -0,0 +1,14 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
+
diff --git a/resources/views/components/bold/ellipsis.blade.php b/resources/views/components/bold/ellipsis.blade.php
new file mode 100644
index 0000000..33c23b2
--- /dev/null
+++ b/resources/views/components/bold/ellipsis.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/eye-closed.blade.php b/resources/views/components/bold/eye-closed.blade.php
new file mode 100644
index 0000000..546f730
--- /dev/null
+++ b/resources/views/components/bold/eye-closed.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/eye.blade.php b/resources/views/components/bold/eye.blade.php
new file mode 100644
index 0000000..8891e55
--- /dev/null
+++ b/resources/views/components/bold/eye.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/feed-discussion.blade.php b/resources/views/components/bold/feed-discussion.blade.php
new file mode 100644
index 0000000..ed7743d
--- /dev/null
+++ b/resources/views/components/bold/feed-discussion.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/feed-forked.blade.php b/resources/views/components/bold/feed-forked.blade.php
new file mode 100644
index 0000000..ec7c84c
--- /dev/null
+++ b/resources/views/components/bold/feed-forked.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/feed-heart.blade.php b/resources/views/components/bold/feed-heart.blade.php
new file mode 100644
index 0000000..fa12dca
--- /dev/null
+++ b/resources/views/components/bold/feed-heart.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/feed-issue-closed.blade.php b/resources/views/components/bold/feed-issue-closed.blade.php
new file mode 100644
index 0000000..1c13e3f
--- /dev/null
+++ b/resources/views/components/bold/feed-issue-closed.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/feed-issue-draft.blade.php b/resources/views/components/bold/feed-issue-draft.blade.php
new file mode 100644
index 0000000..c0b0aef
--- /dev/null
+++ b/resources/views/components/bold/feed-issue-draft.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/feed-issue-open.blade.php b/resources/views/components/bold/feed-issue-open.blade.php
new file mode 100644
index 0000000..8acf98e
--- /dev/null
+++ b/resources/views/components/bold/feed-issue-open.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/feed-issue-reopen.blade.php b/resources/views/components/bold/feed-issue-reopen.blade.php
new file mode 100644
index 0000000..80045b8
--- /dev/null
+++ b/resources/views/components/bold/feed-issue-reopen.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/feed-merged.blade.php b/resources/views/components/bold/feed-merged.blade.php
new file mode 100644
index 0000000..4d90669
--- /dev/null
+++ b/resources/views/components/bold/feed-merged.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/feed-person.blade.php b/resources/views/components/bold/feed-person.blade.php
new file mode 100644
index 0000000..384b717
--- /dev/null
+++ b/resources/views/components/bold/feed-person.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/feed-plus.blade.php b/resources/views/components/bold/feed-plus.blade.php
new file mode 100644
index 0000000..2de70cb
--- /dev/null
+++ b/resources/views/components/bold/feed-plus.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/feed-public.blade.php b/resources/views/components/bold/feed-public.blade.php
new file mode 100644
index 0000000..61e1faf
--- /dev/null
+++ b/resources/views/components/bold/feed-public.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/feed-pull-request-closed.blade.php b/resources/views/components/bold/feed-pull-request-closed.blade.php
new file mode 100644
index 0000000..40b360a
--- /dev/null
+++ b/resources/views/components/bold/feed-pull-request-closed.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/feed-pull-request-draft.blade.php b/resources/views/components/bold/feed-pull-request-draft.blade.php
new file mode 100644
index 0000000..5b25035
--- /dev/null
+++ b/resources/views/components/bold/feed-pull-request-draft.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/feed-pull-request-open.blade.php b/resources/views/components/bold/feed-pull-request-open.blade.php
new file mode 100644
index 0000000..2c4c545
--- /dev/null
+++ b/resources/views/components/bold/feed-pull-request-open.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/feed-repo.blade.php b/resources/views/components/bold/feed-repo.blade.php
new file mode 100644
index 0000000..43c03c3
--- /dev/null
+++ b/resources/views/components/bold/feed-repo.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/feed-rocket.blade.php b/resources/views/components/bold/feed-rocket.blade.php
new file mode 100644
index 0000000..f3b2647
--- /dev/null
+++ b/resources/views/components/bold/feed-rocket.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/feed-star.blade.php b/resources/views/components/bold/feed-star.blade.php
new file mode 100644
index 0000000..1fb67cc
--- /dev/null
+++ b/resources/views/components/bold/feed-star.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/feed-tag.blade.php b/resources/views/components/bold/feed-tag.blade.php
new file mode 100644
index 0000000..7d5648d
--- /dev/null
+++ b/resources/views/components/bold/feed-tag.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/feed-trophy.blade.php b/resources/views/components/bold/feed-trophy.blade.php
new file mode 100644
index 0000000..a354117
--- /dev/null
+++ b/resources/views/components/bold/feed-trophy.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/file-added.blade.php b/resources/views/components/bold/file-added.blade.php
new file mode 100644
index 0000000..322d9eb
--- /dev/null
+++ b/resources/views/components/bold/file-added.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/file-badge.blade.php b/resources/views/components/bold/file-badge.blade.php
new file mode 100644
index 0000000..926afcd
--- /dev/null
+++ b/resources/views/components/bold/file-badge.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/file-binary.blade.php b/resources/views/components/bold/file-binary.blade.php
new file mode 100644
index 0000000..0d76364
--- /dev/null
+++ b/resources/views/components/bold/file-binary.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/file-code.blade.php b/resources/views/components/bold/file-code.blade.php
new file mode 100644
index 0000000..a6c6461
--- /dev/null
+++ b/resources/views/components/bold/file-code.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/file-diff.blade.php b/resources/views/components/bold/file-diff.blade.php
new file mode 100644
index 0000000..84996a2
--- /dev/null
+++ b/resources/views/components/bold/file-diff.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/file-directory-fill.blade.php b/resources/views/components/bold/file-directory-fill.blade.php
new file mode 100644
index 0000000..1e97576
--- /dev/null
+++ b/resources/views/components/bold/file-directory-fill.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/file-directory-open-fill.blade.php b/resources/views/components/bold/file-directory-open-fill.blade.php
new file mode 100644
index 0000000..b086b40
--- /dev/null
+++ b/resources/views/components/bold/file-directory-open-fill.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/file-directory-symlink.blade.php b/resources/views/components/bold/file-directory-symlink.blade.php
new file mode 100644
index 0000000..d4300fb
--- /dev/null
+++ b/resources/views/components/bold/file-directory-symlink.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/file-directory.blade.php b/resources/views/components/bold/file-directory.blade.php
new file mode 100644
index 0000000..9388ddc
--- /dev/null
+++ b/resources/views/components/bold/file-directory.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/file-media.blade.php b/resources/views/components/bold/file-media.blade.php
new file mode 100644
index 0000000..be7194a
--- /dev/null
+++ b/resources/views/components/bold/file-media.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/file-moved.blade.php b/resources/views/components/bold/file-moved.blade.php
new file mode 100644
index 0000000..0bfd537
--- /dev/null
+++ b/resources/views/components/bold/file-moved.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/file-removed.blade.php b/resources/views/components/bold/file-removed.blade.php
new file mode 100644
index 0000000..fff151d
--- /dev/null
+++ b/resources/views/components/bold/file-removed.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/file-submodule.blade.php b/resources/views/components/bold/file-submodule.blade.php
new file mode 100644
index 0000000..6b26b03
--- /dev/null
+++ b/resources/views/components/bold/file-submodule.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/file-symlink-file.blade.php b/resources/views/components/bold/file-symlink-file.blade.php
new file mode 100644
index 0000000..d3ba59e
--- /dev/null
+++ b/resources/views/components/bold/file-symlink-file.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/file-zip.blade.php b/resources/views/components/bold/file-zip.blade.php
new file mode 100644
index 0000000..8c97416
--- /dev/null
+++ b/resources/views/components/bold/file-zip.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/file.blade.php b/resources/views/components/bold/file.blade.php
new file mode 100644
index 0000000..d1dde6f
--- /dev/null
+++ b/resources/views/components/bold/file.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/filter-remove.blade.php b/resources/views/components/bold/filter-remove.blade.php
new file mode 100644
index 0000000..601a1cc
--- /dev/null
+++ b/resources/views/components/bold/filter-remove.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/filter.blade.php b/resources/views/components/bold/filter.blade.php
new file mode 100644
index 0000000..2305e39
--- /dev/null
+++ b/resources/views/components/bold/filter.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/fiscal-host.blade.php b/resources/views/components/bold/fiscal-host.blade.php
new file mode 100644
index 0000000..d49bf82
--- /dev/null
+++ b/resources/views/components/bold/fiscal-host.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
+
diff --git a/resources/views/components/bold/flame.blade.php b/resources/views/components/bold/flame.blade.php
new file mode 100644
index 0000000..cc5e2f0
--- /dev/null
+++ b/resources/views/components/bold/flame.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/fold-down.blade.php b/resources/views/components/bold/fold-down.blade.php
new file mode 100644
index 0000000..11ee727
--- /dev/null
+++ b/resources/views/components/bold/fold-down.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/fold-up.blade.php b/resources/views/components/bold/fold-up.blade.php
new file mode 100644
index 0000000..44f5733
--- /dev/null
+++ b/resources/views/components/bold/fold-up.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/fold.blade.php b/resources/views/components/bold/fold.blade.php
new file mode 100644
index 0000000..0157473
--- /dev/null
+++ b/resources/views/components/bold/fold.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/gear.blade.php b/resources/views/components/bold/gear.blade.php
new file mode 100644
index 0000000..a595449
--- /dev/null
+++ b/resources/views/components/bold/gear.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/gift.blade.php b/resources/views/components/bold/gift.blade.php
new file mode 100644
index 0000000..41edad2
--- /dev/null
+++ b/resources/views/components/bold/gift.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/git-branch.blade.php b/resources/views/components/bold/git-branch.blade.php
new file mode 100644
index 0000000..6cde84a
--- /dev/null
+++ b/resources/views/components/bold/git-branch.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/git-commit.blade.php b/resources/views/components/bold/git-commit.blade.php
new file mode 100644
index 0000000..2c742b5
--- /dev/null
+++ b/resources/views/components/bold/git-commit.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/git-compare.blade.php b/resources/views/components/bold/git-compare.blade.php
new file mode 100644
index 0000000..3b00084
--- /dev/null
+++ b/resources/views/components/bold/git-compare.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/git-merge-queue.blade.php b/resources/views/components/bold/git-merge-queue.blade.php
new file mode 100644
index 0000000..e950f99
--- /dev/null
+++ b/resources/views/components/bold/git-merge-queue.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/git-merge.blade.php b/resources/views/components/bold/git-merge.blade.php
new file mode 100644
index 0000000..00f6b2f
--- /dev/null
+++ b/resources/views/components/bold/git-merge.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/git-pull-request-close.blade.php b/resources/views/components/bold/git-pull-request-close.blade.php
new file mode 100644
index 0000000..a75ce66
--- /dev/null
+++ b/resources/views/components/bold/git-pull-request-close.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/git-pull-request-draft.blade.php b/resources/views/components/bold/git-pull-request-draft.blade.php
new file mode 100644
index 0000000..e18148b
--- /dev/null
+++ b/resources/views/components/bold/git-pull-request-draft.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/git-pull-request.blade.php b/resources/views/components/bold/git-pull-request.blade.php
new file mode 100644
index 0000000..bfaabed
--- /dev/null
+++ b/resources/views/components/bold/git-pull-request.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/globe.blade.php b/resources/views/components/bold/globe.blade.php
new file mode 100644
index 0000000..2667aa0
--- /dev/null
+++ b/resources/views/components/bold/globe.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/goal.blade.php b/resources/views/components/bold/goal.blade.php
new file mode 100644
index 0000000..9ba7cfd
--- /dev/null
+++ b/resources/views/components/bold/goal.blade.php
@@ -0,0 +1,14 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
+
diff --git a/resources/views/components/bold/grabber.blade.php b/resources/views/components/bold/grabber.blade.php
new file mode 100644
index 0000000..d44d801
--- /dev/null
+++ b/resources/views/components/bold/grabber.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/graph.blade.php b/resources/views/components/bold/graph.blade.php
new file mode 100644
index 0000000..ada41af
--- /dev/null
+++ b/resources/views/components/bold/graph.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/hash.blade.php b/resources/views/components/bold/hash.blade.php
new file mode 100644
index 0000000..470d83f
--- /dev/null
+++ b/resources/views/components/bold/hash.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/heading.blade.php b/resources/views/components/bold/heading.blade.php
new file mode 100644
index 0000000..e31e4d1
--- /dev/null
+++ b/resources/views/components/bold/heading.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/heart-fill.blade.php b/resources/views/components/bold/heart-fill.blade.php
new file mode 100644
index 0000000..be29e88
--- /dev/null
+++ b/resources/views/components/bold/heart-fill.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/heart.blade.php b/resources/views/components/bold/heart.blade.php
new file mode 100644
index 0000000..5a023a2
--- /dev/null
+++ b/resources/views/components/bold/heart.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/history.blade.php b/resources/views/components/bold/history.blade.php
new file mode 100644
index 0000000..286620f
--- /dev/null
+++ b/resources/views/components/bold/history.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/home-fill.blade.php b/resources/views/components/bold/home-fill.blade.php
new file mode 100644
index 0000000..473f947
--- /dev/null
+++ b/resources/views/components/bold/home-fill.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/home.blade.php b/resources/views/components/bold/home.blade.php
new file mode 100644
index 0000000..e559c6e
--- /dev/null
+++ b/resources/views/components/bold/home.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/horizontal-rule.blade.php b/resources/views/components/bold/horizontal-rule.blade.php
new file mode 100644
index 0000000..1405165
--- /dev/null
+++ b/resources/views/components/bold/horizontal-rule.blade.php
@@ -0,0 +1,9 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/hourglass.blade.php b/resources/views/components/bold/hourglass.blade.php
new file mode 100644
index 0000000..c8a6e0e
--- /dev/null
+++ b/resources/views/components/bold/hourglass.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/hubot.blade.php b/resources/views/components/bold/hubot.blade.php
new file mode 100644
index 0000000..35657aa
--- /dev/null
+++ b/resources/views/components/bold/hubot.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/id-badge.blade.php b/resources/views/components/bold/id-badge.blade.php
new file mode 100644
index 0000000..32d1ed8
--- /dev/null
+++ b/resources/views/components/bold/id-badge.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/image.blade.php b/resources/views/components/bold/image.blade.php
new file mode 100644
index 0000000..be7194a
--- /dev/null
+++ b/resources/views/components/bold/image.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/inbox.blade.php b/resources/views/components/bold/inbox.blade.php
new file mode 100644
index 0000000..d1b2b97
--- /dev/null
+++ b/resources/views/components/bold/inbox.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/infinity.blade.php b/resources/views/components/bold/infinity.blade.php
new file mode 100644
index 0000000..d02cf42
--- /dev/null
+++ b/resources/views/components/bold/infinity.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/info.blade.php b/resources/views/components/bold/info.blade.php
new file mode 100644
index 0000000..7555e29
--- /dev/null
+++ b/resources/views/components/bold/info.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/issue-closed.blade.php b/resources/views/components/bold/issue-closed.blade.php
new file mode 100644
index 0000000..25e9a8d
--- /dev/null
+++ b/resources/views/components/bold/issue-closed.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/issue-draft.blade.php b/resources/views/components/bold/issue-draft.blade.php
new file mode 100644
index 0000000..f42d6b7
--- /dev/null
+++ b/resources/views/components/bold/issue-draft.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/issue-opened.blade.php b/resources/views/components/bold/issue-opened.blade.php
new file mode 100644
index 0000000..4ed5002
--- /dev/null
+++ b/resources/views/components/bold/issue-opened.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/issue-reopened.blade.php b/resources/views/components/bold/issue-reopened.blade.php
new file mode 100644
index 0000000..b7dde4b
--- /dev/null
+++ b/resources/views/components/bold/issue-reopened.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/issue-tracked-by.blade.php b/resources/views/components/bold/issue-tracked-by.blade.php
new file mode 100644
index 0000000..541deed
--- /dev/null
+++ b/resources/views/components/bold/issue-tracked-by.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/issue-tracks.blade.php b/resources/views/components/bold/issue-tracks.blade.php
new file mode 100644
index 0000000..0f1e8a4
--- /dev/null
+++ b/resources/views/components/bold/issue-tracks.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/italic.blade.php b/resources/views/components/bold/italic.blade.php
new file mode 100644
index 0000000..30244bf
--- /dev/null
+++ b/resources/views/components/bold/italic.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/iterations.blade.php b/resources/views/components/bold/iterations.blade.php
new file mode 100644
index 0000000..f6b8aa1
--- /dev/null
+++ b/resources/views/components/bold/iterations.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/kebab-horizontal.blade.php b/resources/views/components/bold/kebab-horizontal.blade.php
new file mode 100644
index 0000000..f1e1175
--- /dev/null
+++ b/resources/views/components/bold/kebab-horizontal.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/key-asterisk.blade.php b/resources/views/components/bold/key-asterisk.blade.php
new file mode 100644
index 0000000..773152b
--- /dev/null
+++ b/resources/views/components/bold/key-asterisk.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/key.blade.php b/resources/views/components/bold/key.blade.php
new file mode 100644
index 0000000..0e9bc59
--- /dev/null
+++ b/resources/views/components/bold/key.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/law.blade.php b/resources/views/components/bold/law.blade.php
new file mode 100644
index 0000000..fe879ba
--- /dev/null
+++ b/resources/views/components/bold/law.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/light-bulb.blade.php b/resources/views/components/bold/light-bulb.blade.php
new file mode 100644
index 0000000..b92f74c
--- /dev/null
+++ b/resources/views/components/bold/light-bulb.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/link-external.blade.php b/resources/views/components/bold/link-external.blade.php
new file mode 100644
index 0000000..9bc2f90
--- /dev/null
+++ b/resources/views/components/bold/link-external.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/link.blade.php b/resources/views/components/bold/link.blade.php
new file mode 100644
index 0000000..1efdadb
--- /dev/null
+++ b/resources/views/components/bold/link.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/list-ordered.blade.php b/resources/views/components/bold/list-ordered.blade.php
new file mode 100644
index 0000000..0b24b56
--- /dev/null
+++ b/resources/views/components/bold/list-ordered.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/list-unordered.blade.php b/resources/views/components/bold/list-unordered.blade.php
new file mode 100644
index 0000000..8079c7d
--- /dev/null
+++ b/resources/views/components/bold/list-unordered.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/location.blade.php b/resources/views/components/bold/location.blade.php
new file mode 100644
index 0000000..8f9b8af
--- /dev/null
+++ b/resources/views/components/bold/location.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/lock.blade.php b/resources/views/components/bold/lock.blade.php
new file mode 100644
index 0000000..2edfa5a
--- /dev/null
+++ b/resources/views/components/bold/lock.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/log.blade.php b/resources/views/components/bold/log.blade.php
new file mode 100644
index 0000000..ca17e74
--- /dev/null
+++ b/resources/views/components/bold/log.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/logo-gist.blade.php b/resources/views/components/bold/logo-gist.blade.php
new file mode 100644
index 0000000..bec4829
--- /dev/null
+++ b/resources/views/components/bold/logo-gist.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/logo-github.blade.php b/resources/views/components/bold/logo-github.blade.php
new file mode 100644
index 0000000..5caa83c
--- /dev/null
+++ b/resources/views/components/bold/logo-github.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/mail.blade.php b/resources/views/components/bold/mail.blade.php
new file mode 100644
index 0000000..0b7250e
--- /dev/null
+++ b/resources/views/components/bold/mail.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/mark-github.blade.php b/resources/views/components/bold/mark-github.blade.php
new file mode 100644
index 0000000..762577a
--- /dev/null
+++ b/resources/views/components/bold/mark-github.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/markdown.blade.php b/resources/views/components/bold/markdown.blade.php
new file mode 100644
index 0000000..b491c4d
--- /dev/null
+++ b/resources/views/components/bold/markdown.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/megaphone.blade.php b/resources/views/components/bold/megaphone.blade.php
new file mode 100644
index 0000000..2aa3af4
--- /dev/null
+++ b/resources/views/components/bold/megaphone.blade.php
@@ -0,0 +1,14 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
+
diff --git a/resources/views/components/bold/mention.blade.php b/resources/views/components/bold/mention.blade.php
new file mode 100644
index 0000000..eead300
--- /dev/null
+++ b/resources/views/components/bold/mention.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/meter.blade.php b/resources/views/components/bold/meter.blade.php
new file mode 100644
index 0000000..045b89d
--- /dev/null
+++ b/resources/views/components/bold/meter.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/milestone.blade.php b/resources/views/components/bold/milestone.blade.php
new file mode 100644
index 0000000..cfad7c1
--- /dev/null
+++ b/resources/views/components/bold/milestone.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/mirror.blade.php b/resources/views/components/bold/mirror.blade.php
new file mode 100644
index 0000000..f7cd28a
--- /dev/null
+++ b/resources/views/components/bold/mirror.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/moon.blade.php b/resources/views/components/bold/moon.blade.php
new file mode 100644
index 0000000..192d131
--- /dev/null
+++ b/resources/views/components/bold/moon.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/mortar-board.blade.php b/resources/views/components/bold/mortar-board.blade.php
new file mode 100644
index 0000000..ce02e30
--- /dev/null
+++ b/resources/views/components/bold/mortar-board.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/move-to-bottom.blade.php b/resources/views/components/bold/move-to-bottom.blade.php
new file mode 100644
index 0000000..45a9e88
--- /dev/null
+++ b/resources/views/components/bold/move-to-bottom.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/move-to-end.blade.php b/resources/views/components/bold/move-to-end.blade.php
new file mode 100644
index 0000000..c0d9d3e
--- /dev/null
+++ b/resources/views/components/bold/move-to-end.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/move-to-start.blade.php b/resources/views/components/bold/move-to-start.blade.php
new file mode 100644
index 0000000..02f80ba
--- /dev/null
+++ b/resources/views/components/bold/move-to-start.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/move-to-top.blade.php b/resources/views/components/bold/move-to-top.blade.php
new file mode 100644
index 0000000..c13f87d
--- /dev/null
+++ b/resources/views/components/bold/move-to-top.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/multi-select.blade.php b/resources/views/components/bold/multi-select.blade.php
new file mode 100644
index 0000000..da0b77b
--- /dev/null
+++ b/resources/views/components/bold/multi-select.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/mute.blade.php b/resources/views/components/bold/mute.blade.php
new file mode 100644
index 0000000..f361151
--- /dev/null
+++ b/resources/views/components/bold/mute.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/no-entry.blade.php b/resources/views/components/bold/no-entry.blade.php
new file mode 100644
index 0000000..9f39f0e
--- /dev/null
+++ b/resources/views/components/bold/no-entry.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/north-star.blade.php b/resources/views/components/bold/north-star.blade.php
new file mode 100644
index 0000000..ed06a82
--- /dev/null
+++ b/resources/views/components/bold/north-star.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/note.blade.php b/resources/views/components/bold/note.blade.php
new file mode 100644
index 0000000..0575fc0
--- /dev/null
+++ b/resources/views/components/bold/note.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/number.blade.php b/resources/views/components/bold/number.blade.php
new file mode 100644
index 0000000..c5019c5
--- /dev/null
+++ b/resources/views/components/bold/number.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/organization.blade.php b/resources/views/components/bold/organization.blade.php
new file mode 100644
index 0000000..1dd0f0e
--- /dev/null
+++ b/resources/views/components/bold/organization.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/package-dependencies.blade.php b/resources/views/components/bold/package-dependencies.blade.php
new file mode 100644
index 0000000..812c3b5
--- /dev/null
+++ b/resources/views/components/bold/package-dependencies.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/package-dependents.blade.php b/resources/views/components/bold/package-dependents.blade.php
new file mode 100644
index 0000000..382dbb7
--- /dev/null
+++ b/resources/views/components/bold/package-dependents.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/package.blade.php b/resources/views/components/bold/package.blade.php
new file mode 100644
index 0000000..7dc014b
--- /dev/null
+++ b/resources/views/components/bold/package.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/paintbrush.blade.php b/resources/views/components/bold/paintbrush.blade.php
new file mode 100644
index 0000000..81b563e
--- /dev/null
+++ b/resources/views/components/bold/paintbrush.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/paper-airplane.blade.php b/resources/views/components/bold/paper-airplane.blade.php
new file mode 100644
index 0000000..da9f278
--- /dev/null
+++ b/resources/views/components/bold/paper-airplane.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/paperclip.blade.php b/resources/views/components/bold/paperclip.blade.php
new file mode 100644
index 0000000..0e365f3
--- /dev/null
+++ b/resources/views/components/bold/paperclip.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/passkey-fill.blade.php b/resources/views/components/bold/passkey-fill.blade.php
new file mode 100644
index 0000000..fc0d18a
--- /dev/null
+++ b/resources/views/components/bold/passkey-fill.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/paste.blade.php b/resources/views/components/bold/paste.blade.php
new file mode 100644
index 0000000..b26dd27
--- /dev/null
+++ b/resources/views/components/bold/paste.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/pencil.blade.php b/resources/views/components/bold/pencil.blade.php
new file mode 100644
index 0000000..5be2c39
--- /dev/null
+++ b/resources/views/components/bold/pencil.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/people.blade.php b/resources/views/components/bold/people.blade.php
new file mode 100644
index 0000000..633f354
--- /dev/null
+++ b/resources/views/components/bold/people.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/person-add.blade.php b/resources/views/components/bold/person-add.blade.php
new file mode 100644
index 0000000..258f8c9
--- /dev/null
+++ b/resources/views/components/bold/person-add.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/person-fill.blade.php b/resources/views/components/bold/person-fill.blade.php
new file mode 100644
index 0000000..323c150
--- /dev/null
+++ b/resources/views/components/bold/person-fill.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/person.blade.php b/resources/views/components/bold/person.blade.php
new file mode 100644
index 0000000..0948979
--- /dev/null
+++ b/resources/views/components/bold/person.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/pin-slash.blade.php b/resources/views/components/bold/pin-slash.blade.php
new file mode 100644
index 0000000..496ad09
--- /dev/null
+++ b/resources/views/components/bold/pin-slash.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/pin.blade.php b/resources/views/components/bold/pin.blade.php
new file mode 100644
index 0000000..a441023
--- /dev/null
+++ b/resources/views/components/bold/pin.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/pivot-column.blade.php b/resources/views/components/bold/pivot-column.blade.php
new file mode 100644
index 0000000..c35e543
--- /dev/null
+++ b/resources/views/components/bold/pivot-column.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/play.blade.php b/resources/views/components/bold/play.blade.php
new file mode 100644
index 0000000..86f17c0
--- /dev/null
+++ b/resources/views/components/bold/play.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/plug.blade.php b/resources/views/components/bold/plug.blade.php
new file mode 100644
index 0000000..f76bfbc
--- /dev/null
+++ b/resources/views/components/bold/plug.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/plus-circle.blade.php b/resources/views/components/bold/plus-circle.blade.php
new file mode 100644
index 0000000..d2d12d4
--- /dev/null
+++ b/resources/views/components/bold/plus-circle.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/plus.blade.php b/resources/views/components/bold/plus.blade.php
new file mode 100644
index 0000000..861fe99
--- /dev/null
+++ b/resources/views/components/bold/plus.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/project-roadmap.blade.php b/resources/views/components/bold/project-roadmap.blade.php
new file mode 100644
index 0000000..b8008ca
--- /dev/null
+++ b/resources/views/components/bold/project-roadmap.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/project-symlink.blade.php b/resources/views/components/bold/project-symlink.blade.php
new file mode 100644
index 0000000..e355d4c
--- /dev/null
+++ b/resources/views/components/bold/project-symlink.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/project-template.blade.php b/resources/views/components/bold/project-template.blade.php
new file mode 100644
index 0000000..2332cf6
--- /dev/null
+++ b/resources/views/components/bold/project-template.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/project.blade.php b/resources/views/components/bold/project.blade.php
new file mode 100644
index 0000000..8c12171
--- /dev/null
+++ b/resources/views/components/bold/project.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/pulse.blade.php b/resources/views/components/bold/pulse.blade.php
new file mode 100644
index 0000000..6c99351
--- /dev/null
+++ b/resources/views/components/bold/pulse.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/question.blade.php b/resources/views/components/bold/question.blade.php
new file mode 100644
index 0000000..3d37488
--- /dev/null
+++ b/resources/views/components/bold/question.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/quote.blade.php b/resources/views/components/bold/quote.blade.php
new file mode 100644
index 0000000..a3ebbe4
--- /dev/null
+++ b/resources/views/components/bold/quote.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/read.blade.php b/resources/views/components/bold/read.blade.php
new file mode 100644
index 0000000..6751a9c
--- /dev/null
+++ b/resources/views/components/bold/read.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/redo.blade.php b/resources/views/components/bold/redo.blade.php
new file mode 100644
index 0000000..14cd577
--- /dev/null
+++ b/resources/views/components/bold/redo.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/rel-file-path.blade.php b/resources/views/components/bold/rel-file-path.blade.php
new file mode 100644
index 0000000..d7869fb
--- /dev/null
+++ b/resources/views/components/bold/rel-file-path.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/reply.blade.php b/resources/views/components/bold/reply.blade.php
new file mode 100644
index 0000000..be70c53
--- /dev/null
+++ b/resources/views/components/bold/reply.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/repo-clone.blade.php b/resources/views/components/bold/repo-clone.blade.php
new file mode 100644
index 0000000..97d3848
--- /dev/null
+++ b/resources/views/components/bold/repo-clone.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/repo-deleted.blade.php b/resources/views/components/bold/repo-deleted.blade.php
new file mode 100644
index 0000000..bded7c4
--- /dev/null
+++ b/resources/views/components/bold/repo-deleted.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/repo-forked.blade.php b/resources/views/components/bold/repo-forked.blade.php
new file mode 100644
index 0000000..f312b85
--- /dev/null
+++ b/resources/views/components/bold/repo-forked.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/repo-locked.blade.php b/resources/views/components/bold/repo-locked.blade.php
new file mode 100644
index 0000000..03ef300
--- /dev/null
+++ b/resources/views/components/bold/repo-locked.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/repo-pull.blade.php b/resources/views/components/bold/repo-pull.blade.php
new file mode 100644
index 0000000..4de4512
--- /dev/null
+++ b/resources/views/components/bold/repo-pull.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/repo-push.blade.php b/resources/views/components/bold/repo-push.blade.php
new file mode 100644
index 0000000..80b6801
--- /dev/null
+++ b/resources/views/components/bold/repo-push.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/repo-template.blade.php b/resources/views/components/bold/repo-template.blade.php
new file mode 100644
index 0000000..c2566ff
--- /dev/null
+++ b/resources/views/components/bold/repo-template.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/repo.blade.php b/resources/views/components/bold/repo.blade.php
new file mode 100644
index 0000000..6867704
--- /dev/null
+++ b/resources/views/components/bold/repo.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/report.blade.php b/resources/views/components/bold/report.blade.php
new file mode 100644
index 0000000..0a1b0ee
--- /dev/null
+++ b/resources/views/components/bold/report.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/rocket.blade.php b/resources/views/components/bold/rocket.blade.php
new file mode 100644
index 0000000..bb71a79
--- /dev/null
+++ b/resources/views/components/bold/rocket.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/rows.blade.php b/resources/views/components/bold/rows.blade.php
new file mode 100644
index 0000000..ee2562d
--- /dev/null
+++ b/resources/views/components/bold/rows.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/rss.blade.php b/resources/views/components/bold/rss.blade.php
new file mode 100644
index 0000000..cf34083
--- /dev/null
+++ b/resources/views/components/bold/rss.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/ruby.blade.php b/resources/views/components/bold/ruby.blade.php
new file mode 100644
index 0000000..fe65751
--- /dev/null
+++ b/resources/views/components/bold/ruby.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/screen-full.blade.php b/resources/views/components/bold/screen-full.blade.php
new file mode 100644
index 0000000..6fb1d18
--- /dev/null
+++ b/resources/views/components/bold/screen-full.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/screen-normal.blade.php b/resources/views/components/bold/screen-normal.blade.php
new file mode 100644
index 0000000..fb3d582
--- /dev/null
+++ b/resources/views/components/bold/screen-normal.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/search.blade.php b/resources/views/components/bold/search.blade.php
new file mode 100644
index 0000000..1488451
--- /dev/null
+++ b/resources/views/components/bold/search.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/server.blade.php b/resources/views/components/bold/server.blade.php
new file mode 100644
index 0000000..a420202
--- /dev/null
+++ b/resources/views/components/bold/server.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/share-android.blade.php b/resources/views/components/bold/share-android.blade.php
new file mode 100644
index 0000000..fb15364
--- /dev/null
+++ b/resources/views/components/bold/share-android.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/share.blade.php b/resources/views/components/bold/share.blade.php
new file mode 100644
index 0000000..6bdcb57
--- /dev/null
+++ b/resources/views/components/bold/share.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/shield-check.blade.php b/resources/views/components/bold/shield-check.blade.php
new file mode 100644
index 0000000..db1105a
--- /dev/null
+++ b/resources/views/components/bold/shield-check.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/shield-lock.blade.php b/resources/views/components/bold/shield-lock.blade.php
new file mode 100644
index 0000000..1e132b7
--- /dev/null
+++ b/resources/views/components/bold/shield-lock.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/shield-slash.blade.php b/resources/views/components/bold/shield-slash.blade.php
new file mode 100644
index 0000000..f4deca3
--- /dev/null
+++ b/resources/views/components/bold/shield-slash.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/shield-x.blade.php b/resources/views/components/bold/shield-x.blade.php
new file mode 100644
index 0000000..c317742
--- /dev/null
+++ b/resources/views/components/bold/shield-x.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/shield.blade.php b/resources/views/components/bold/shield.blade.php
new file mode 100644
index 0000000..ed11018
--- /dev/null
+++ b/resources/views/components/bold/shield.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/sidebar-collapse.blade.php b/resources/views/components/bold/sidebar-collapse.blade.php
new file mode 100644
index 0000000..b725a5d
--- /dev/null
+++ b/resources/views/components/bold/sidebar-collapse.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/sidebar-expand.blade.php b/resources/views/components/bold/sidebar-expand.blade.php
new file mode 100644
index 0000000..e741972
--- /dev/null
+++ b/resources/views/components/bold/sidebar-expand.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/sign-in.blade.php b/resources/views/components/bold/sign-in.blade.php
new file mode 100644
index 0000000..1fbc93f
--- /dev/null
+++ b/resources/views/components/bold/sign-in.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/sign-out.blade.php b/resources/views/components/bold/sign-out.blade.php
new file mode 100644
index 0000000..2175f31
--- /dev/null
+++ b/resources/views/components/bold/sign-out.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/single-select.blade.php b/resources/views/components/bold/single-select.blade.php
new file mode 100644
index 0000000..7f80679
--- /dev/null
+++ b/resources/views/components/bold/single-select.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/skip-fill.blade.php b/resources/views/components/bold/skip-fill.blade.php
new file mode 100644
index 0000000..1125538
--- /dev/null
+++ b/resources/views/components/bold/skip-fill.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/skip.blade.php b/resources/views/components/bold/skip.blade.php
new file mode 100644
index 0000000..b586305
--- /dev/null
+++ b/resources/views/components/bold/skip.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/sliders.blade.php b/resources/views/components/bold/sliders.blade.php
new file mode 100644
index 0000000..c51c611
--- /dev/null
+++ b/resources/views/components/bold/sliders.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/smiley.blade.php b/resources/views/components/bold/smiley.blade.php
new file mode 100644
index 0000000..baf2136
--- /dev/null
+++ b/resources/views/components/bold/smiley.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/sort-asc.blade.php b/resources/views/components/bold/sort-asc.blade.php
new file mode 100644
index 0000000..c12916a
--- /dev/null
+++ b/resources/views/components/bold/sort-asc.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/sort-desc.blade.php b/resources/views/components/bold/sort-desc.blade.php
new file mode 100644
index 0000000..272cfa4
--- /dev/null
+++ b/resources/views/components/bold/sort-desc.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/sparkle-fill.blade.php b/resources/views/components/bold/sparkle-fill.blade.php
new file mode 100644
index 0000000..1aaeab7
--- /dev/null
+++ b/resources/views/components/bold/sparkle-fill.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/sponsor-tiers.blade.php b/resources/views/components/bold/sponsor-tiers.blade.php
new file mode 100644
index 0000000..7aef0a7
--- /dev/null
+++ b/resources/views/components/bold/sponsor-tiers.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/square-fill.blade.php b/resources/views/components/bold/square-fill.blade.php
new file mode 100644
index 0000000..f965a41
--- /dev/null
+++ b/resources/views/components/bold/square-fill.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/square.blade.php b/resources/views/components/bold/square.blade.php
new file mode 100644
index 0000000..c227429
--- /dev/null
+++ b/resources/views/components/bold/square.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/squirrel.blade.php b/resources/views/components/bold/squirrel.blade.php
new file mode 100644
index 0000000..948f503
--- /dev/null
+++ b/resources/views/components/bold/squirrel.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/stack.blade.php b/resources/views/components/bold/stack.blade.php
new file mode 100644
index 0000000..b5d5287
--- /dev/null
+++ b/resources/views/components/bold/stack.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/star-fill.blade.php b/resources/views/components/bold/star-fill.blade.php
new file mode 100644
index 0000000..79efb9a
--- /dev/null
+++ b/resources/views/components/bold/star-fill.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/star.blade.php b/resources/views/components/bold/star.blade.php
new file mode 100644
index 0000000..2830e2e
--- /dev/null
+++ b/resources/views/components/bold/star.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/stop.blade.php b/resources/views/components/bold/stop.blade.php
new file mode 100644
index 0000000..3b6e2cb
--- /dev/null
+++ b/resources/views/components/bold/stop.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/stopwatch.blade.php b/resources/views/components/bold/stopwatch.blade.php
new file mode 100644
index 0000000..f6ecd74
--- /dev/null
+++ b/resources/views/components/bold/stopwatch.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/strikethrough.blade.php b/resources/views/components/bold/strikethrough.blade.php
new file mode 100644
index 0000000..53f83a2
--- /dev/null
+++ b/resources/views/components/bold/strikethrough.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/sun.blade.php b/resources/views/components/bold/sun.blade.php
new file mode 100644
index 0000000..95b6b6d
--- /dev/null
+++ b/resources/views/components/bold/sun.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/sync.blade.php b/resources/views/components/bold/sync.blade.php
new file mode 100644
index 0000000..a105662
--- /dev/null
+++ b/resources/views/components/bold/sync.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/tab-external.blade.php b/resources/views/components/bold/tab-external.blade.php
new file mode 100644
index 0000000..86c7bf9
--- /dev/null
+++ b/resources/views/components/bold/tab-external.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/tab.blade.php b/resources/views/components/bold/tab.blade.php
new file mode 100644
index 0000000..c0d9d3e
--- /dev/null
+++ b/resources/views/components/bold/tab.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/table.blade.php b/resources/views/components/bold/table.blade.php
new file mode 100644
index 0000000..5bdf2a0
--- /dev/null
+++ b/resources/views/components/bold/table.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/tag.blade.php b/resources/views/components/bold/tag.blade.php
new file mode 100644
index 0000000..cbc96c1
--- /dev/null
+++ b/resources/views/components/bold/tag.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/tasklist.blade.php b/resources/views/components/bold/tasklist.blade.php
new file mode 100644
index 0000000..0b44670
--- /dev/null
+++ b/resources/views/components/bold/tasklist.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/telescope-fill.blade.php b/resources/views/components/bold/telescope-fill.blade.php
new file mode 100644
index 0000000..5f8711e
--- /dev/null
+++ b/resources/views/components/bold/telescope-fill.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/telescope.blade.php b/resources/views/components/bold/telescope.blade.php
new file mode 100644
index 0000000..831a974
--- /dev/null
+++ b/resources/views/components/bold/telescope.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/terminal.blade.php b/resources/views/components/bold/terminal.blade.php
new file mode 100644
index 0000000..72f1a51
--- /dev/null
+++ b/resources/views/components/bold/terminal.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/three-bars.blade.php b/resources/views/components/bold/three-bars.blade.php
new file mode 100644
index 0000000..106b5f8
--- /dev/null
+++ b/resources/views/components/bold/three-bars.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/thumbsdown.blade.php b/resources/views/components/bold/thumbsdown.blade.php
new file mode 100644
index 0000000..9f17156
--- /dev/null
+++ b/resources/views/components/bold/thumbsdown.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/thumbsup.blade.php b/resources/views/components/bold/thumbsup.blade.php
new file mode 100644
index 0000000..0da49a9
--- /dev/null
+++ b/resources/views/components/bold/thumbsup.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/tools.blade.php b/resources/views/components/bold/tools.blade.php
new file mode 100644
index 0000000..9a55b75
--- /dev/null
+++ b/resources/views/components/bold/tools.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/tracked-by-closed-completed.blade.php b/resources/views/components/bold/tracked-by-closed-completed.blade.php
new file mode 100644
index 0000000..384c3cd
--- /dev/null
+++ b/resources/views/components/bold/tracked-by-closed-completed.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/tracked-by-closed-not-planned.blade.php b/resources/views/components/bold/tracked-by-closed-not-planned.blade.php
new file mode 100644
index 0000000..7dca5aa
--- /dev/null
+++ b/resources/views/components/bold/tracked-by-closed-not-planned.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/trash.blade.php b/resources/views/components/bold/trash.blade.php
new file mode 100644
index 0000000..6836347
--- /dev/null
+++ b/resources/views/components/bold/trash.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/triangle-down.blade.php b/resources/views/components/bold/triangle-down.blade.php
new file mode 100644
index 0000000..c1d4834
--- /dev/null
+++ b/resources/views/components/bold/triangle-down.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/triangle-left.blade.php b/resources/views/components/bold/triangle-left.blade.php
new file mode 100644
index 0000000..82d3704
--- /dev/null
+++ b/resources/views/components/bold/triangle-left.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/triangle-right.blade.php b/resources/views/components/bold/triangle-right.blade.php
new file mode 100644
index 0000000..4a8a766
--- /dev/null
+++ b/resources/views/components/bold/triangle-right.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/triangle-up.blade.php b/resources/views/components/bold/triangle-up.blade.php
new file mode 100644
index 0000000..a5c4ce3
--- /dev/null
+++ b/resources/views/components/bold/triangle-up.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/trophy.blade.php b/resources/views/components/bold/trophy.blade.php
new file mode 100644
index 0000000..280559d
--- /dev/null
+++ b/resources/views/components/bold/trophy.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/typography.blade.php b/resources/views/components/bold/typography.blade.php
new file mode 100644
index 0000000..e8cd64f
--- /dev/null
+++ b/resources/views/components/bold/typography.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/undo.blade.php b/resources/views/components/bold/undo.blade.php
new file mode 100644
index 0000000..c315d23
--- /dev/null
+++ b/resources/views/components/bold/undo.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/unfold.blade.php b/resources/views/components/bold/unfold.blade.php
new file mode 100644
index 0000000..b201709
--- /dev/null
+++ b/resources/views/components/bold/unfold.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/unlink.blade.php b/resources/views/components/bold/unlink.blade.php
new file mode 100644
index 0000000..a5728c4
--- /dev/null
+++ b/resources/views/components/bold/unlink.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/unlock.blade.php b/resources/views/components/bold/unlock.blade.php
new file mode 100644
index 0000000..6fe414d
--- /dev/null
+++ b/resources/views/components/bold/unlock.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/unmute.blade.php b/resources/views/components/bold/unmute.blade.php
new file mode 100644
index 0000000..151a5d9
--- /dev/null
+++ b/resources/views/components/bold/unmute.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/unread.blade.php b/resources/views/components/bold/unread.blade.php
new file mode 100644
index 0000000..3138611
--- /dev/null
+++ b/resources/views/components/bold/unread.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/unverified.blade.php b/resources/views/components/bold/unverified.blade.php
new file mode 100644
index 0000000..ebab1e4
--- /dev/null
+++ b/resources/views/components/bold/unverified.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/upload.blade.php b/resources/views/components/bold/upload.blade.php
new file mode 100644
index 0000000..9445b27
--- /dev/null
+++ b/resources/views/components/bold/upload.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/verified.blade.php b/resources/views/components/bold/verified.blade.php
new file mode 100644
index 0000000..10a01cb
--- /dev/null
+++ b/resources/views/components/bold/verified.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/versions.blade.php b/resources/views/components/bold/versions.blade.php
new file mode 100644
index 0000000..e77aeaa
--- /dev/null
+++ b/resources/views/components/bold/versions.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/video.blade.php b/resources/views/components/bold/video.blade.php
new file mode 100644
index 0000000..d9abd41
--- /dev/null
+++ b/resources/views/components/bold/video.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/webhook.blade.php b/resources/views/components/bold/webhook.blade.php
new file mode 100644
index 0000000..991f695
--- /dev/null
+++ b/resources/views/components/bold/webhook.blade.php
@@ -0,0 +1,14 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
+
diff --git a/resources/views/components/bold/workflow.blade.php b/resources/views/components/bold/workflow.blade.php
new file mode 100644
index 0000000..4a27e46
--- /dev/null
+++ b/resources/views/components/bold/workflow.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/x-circle-fill.blade.php b/resources/views/components/bold/x-circle-fill.blade.php
new file mode 100644
index 0000000..39acd04
--- /dev/null
+++ b/resources/views/components/bold/x-circle-fill.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/x-circle.blade.php b/resources/views/components/bold/x-circle.blade.php
new file mode 100644
index 0000000..144a08a
--- /dev/null
+++ b/resources/views/components/bold/x-circle.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/x.blade.php b/resources/views/components/bold/x.blade.php
new file mode 100644
index 0000000..7a40011
--- /dev/null
+++ b/resources/views/components/bold/x.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/zap.blade.php b/resources/views/components/bold/zap.blade.php
new file mode 100644
index 0000000..6def2b7
--- /dev/null
+++ b/resources/views/components/bold/zap.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/bold/zoom-in.blade.php b/resources/views/components/bold/zoom-in.blade.php
new file mode 100644
index 0000000..97ada2e
--- /dev/null
+++ b/resources/views/components/bold/zoom-in.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/bold/zoom-out.blade.php b/resources/views/components/bold/zoom-out.blade.php
new file mode 100644
index 0000000..90432ca
--- /dev/null
+++ b/resources/views/components/bold/zoom-out.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/accessibility-inset.blade.php b/resources/views/components/thin/accessibility-inset.blade.php
new file mode 100644
index 0000000..52bebd3
--- /dev/null
+++ b/resources/views/components/thin/accessibility-inset.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/accessibility.blade.php b/resources/views/components/thin/accessibility.blade.php
new file mode 100644
index 0000000..1bcc86b
--- /dev/null
+++ b/resources/views/components/thin/accessibility.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/ai-model.blade.php b/resources/views/components/thin/ai-model.blade.php
new file mode 100644
index 0000000..2988c7c
--- /dev/null
+++ b/resources/views/components/thin/ai-model.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/alert-fill.blade.php b/resources/views/components/thin/alert-fill.blade.php
new file mode 100644
index 0000000..8e4b9fb
--- /dev/null
+++ b/resources/views/components/thin/alert-fill.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/alert.blade.php b/resources/views/components/thin/alert.blade.php
new file mode 100644
index 0000000..de76dae
--- /dev/null
+++ b/resources/views/components/thin/alert.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/apps.blade.php b/resources/views/components/thin/apps.blade.php
new file mode 100644
index 0000000..f7b2764
--- /dev/null
+++ b/resources/views/components/thin/apps.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/archive.blade.php b/resources/views/components/thin/archive.blade.php
new file mode 100644
index 0000000..8526811
--- /dev/null
+++ b/resources/views/components/thin/archive.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/arrow-both.blade.php b/resources/views/components/thin/arrow-both.blade.php
new file mode 100644
index 0000000..cfae267
--- /dev/null
+++ b/resources/views/components/thin/arrow-both.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/arrow-down-left.blade.php b/resources/views/components/thin/arrow-down-left.blade.php
new file mode 100644
index 0000000..b752fe0
--- /dev/null
+++ b/resources/views/components/thin/arrow-down-left.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/arrow-down-right.blade.php b/resources/views/components/thin/arrow-down-right.blade.php
new file mode 100644
index 0000000..fcd3488
--- /dev/null
+++ b/resources/views/components/thin/arrow-down-right.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/arrow-down.blade.php b/resources/views/components/thin/arrow-down.blade.php
new file mode 100644
index 0000000..809592a
--- /dev/null
+++ b/resources/views/components/thin/arrow-down.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/arrow-left.blade.php b/resources/views/components/thin/arrow-left.blade.php
new file mode 100644
index 0000000..6e3d1a5
--- /dev/null
+++ b/resources/views/components/thin/arrow-left.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/arrow-right.blade.php b/resources/views/components/thin/arrow-right.blade.php
new file mode 100644
index 0000000..a22b2c4
--- /dev/null
+++ b/resources/views/components/thin/arrow-right.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/arrow-switch.blade.php b/resources/views/components/thin/arrow-switch.blade.php
new file mode 100644
index 0000000..3723266
--- /dev/null
+++ b/resources/views/components/thin/arrow-switch.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/arrow-up-left.blade.php b/resources/views/components/thin/arrow-up-left.blade.php
new file mode 100644
index 0000000..e99ddde
--- /dev/null
+++ b/resources/views/components/thin/arrow-up-left.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/arrow-up-right.blade.php b/resources/views/components/thin/arrow-up-right.blade.php
new file mode 100644
index 0000000..651842f
--- /dev/null
+++ b/resources/views/components/thin/arrow-up-right.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/arrow-up.blade.php b/resources/views/components/thin/arrow-up.blade.php
new file mode 100644
index 0000000..ea8665e
--- /dev/null
+++ b/resources/views/components/thin/arrow-up.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/beaker.blade.php b/resources/views/components/thin/beaker.blade.php
new file mode 100644
index 0000000..5f9231a
--- /dev/null
+++ b/resources/views/components/thin/beaker.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/bell-fill.blade.php b/resources/views/components/thin/bell-fill.blade.php
new file mode 100644
index 0000000..5d8ee91
--- /dev/null
+++ b/resources/views/components/thin/bell-fill.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/bell-slash.blade.php b/resources/views/components/thin/bell-slash.blade.php
new file mode 100644
index 0000000..9136df7
--- /dev/null
+++ b/resources/views/components/thin/bell-slash.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/bell.blade.php b/resources/views/components/thin/bell.blade.php
new file mode 100644
index 0000000..b532f78
--- /dev/null
+++ b/resources/views/components/thin/bell.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/blocked.blade.php b/resources/views/components/thin/blocked.blade.php
new file mode 100644
index 0000000..4d000ac
--- /dev/null
+++ b/resources/views/components/thin/blocked.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/bold.blade.php b/resources/views/components/thin/bold.blade.php
new file mode 100644
index 0000000..7115caa
--- /dev/null
+++ b/resources/views/components/thin/bold.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/book.blade.php b/resources/views/components/thin/book.blade.php
new file mode 100644
index 0000000..a8d3057
--- /dev/null
+++ b/resources/views/components/thin/book.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/bookmark-fill.blade.php b/resources/views/components/thin/bookmark-fill.blade.php
new file mode 100644
index 0000000..4299374
--- /dev/null
+++ b/resources/views/components/thin/bookmark-fill.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/bookmark-slash-fill.blade.php b/resources/views/components/thin/bookmark-slash-fill.blade.php
new file mode 100644
index 0000000..06b5631
--- /dev/null
+++ b/resources/views/components/thin/bookmark-slash-fill.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/bookmark-slash.blade.php b/resources/views/components/thin/bookmark-slash.blade.php
new file mode 100644
index 0000000..7af6490
--- /dev/null
+++ b/resources/views/components/thin/bookmark-slash.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/bookmark.blade.php b/resources/views/components/thin/bookmark.blade.php
new file mode 100644
index 0000000..2a26bc0
--- /dev/null
+++ b/resources/views/components/thin/bookmark.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/briefcase.blade.php b/resources/views/components/thin/briefcase.blade.php
new file mode 100644
index 0000000..5b6bb2f
--- /dev/null
+++ b/resources/views/components/thin/briefcase.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/broadcast.blade.php b/resources/views/components/thin/broadcast.blade.php
new file mode 100644
index 0000000..285afc7
--- /dev/null
+++ b/resources/views/components/thin/broadcast.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/browser.blade.php b/resources/views/components/thin/browser.blade.php
new file mode 100644
index 0000000..e1f27a2
--- /dev/null
+++ b/resources/views/components/thin/browser.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/bug.blade.php b/resources/views/components/thin/bug.blade.php
new file mode 100644
index 0000000..998ab69
--- /dev/null
+++ b/resources/views/components/thin/bug.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/cache.blade.php b/resources/views/components/thin/cache.blade.php
new file mode 100644
index 0000000..51a02cf
--- /dev/null
+++ b/resources/views/components/thin/cache.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/calendar.blade.php b/resources/views/components/thin/calendar.blade.php
new file mode 100644
index 0000000..5ae64c2
--- /dev/null
+++ b/resources/views/components/thin/calendar.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/check-circle-fill.blade.php b/resources/views/components/thin/check-circle-fill.blade.php
new file mode 100644
index 0000000..b3e086d
--- /dev/null
+++ b/resources/views/components/thin/check-circle-fill.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/check-circle.blade.php b/resources/views/components/thin/check-circle.blade.php
new file mode 100644
index 0000000..f9785de
--- /dev/null
+++ b/resources/views/components/thin/check-circle.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/check.blade.php b/resources/views/components/thin/check.blade.php
new file mode 100644
index 0000000..4577f1f
--- /dev/null
+++ b/resources/views/components/thin/check.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/checkbox.blade.php b/resources/views/components/thin/checkbox.blade.php
new file mode 100644
index 0000000..8eaeb5d
--- /dev/null
+++ b/resources/views/components/thin/checkbox.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/checklist.blade.php b/resources/views/components/thin/checklist.blade.php
new file mode 100644
index 0000000..5857e54
--- /dev/null
+++ b/resources/views/components/thin/checklist.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/chevron-down.blade.php b/resources/views/components/thin/chevron-down.blade.php
new file mode 100644
index 0000000..3f229cd
--- /dev/null
+++ b/resources/views/components/thin/chevron-down.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/chevron-left.blade.php b/resources/views/components/thin/chevron-left.blade.php
new file mode 100644
index 0000000..236a754
--- /dev/null
+++ b/resources/views/components/thin/chevron-left.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/chevron-right.blade.php b/resources/views/components/thin/chevron-right.blade.php
new file mode 100644
index 0000000..f70a259
--- /dev/null
+++ b/resources/views/components/thin/chevron-right.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/chevron-up.blade.php b/resources/views/components/thin/chevron-up.blade.php
new file mode 100644
index 0000000..347bcf3
--- /dev/null
+++ b/resources/views/components/thin/chevron-up.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/circle-slash.blade.php b/resources/views/components/thin/circle-slash.blade.php
new file mode 100644
index 0000000..278672b
--- /dev/null
+++ b/resources/views/components/thin/circle-slash.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/circle.blade.php b/resources/views/components/thin/circle.blade.php
new file mode 100644
index 0000000..2ffd456
--- /dev/null
+++ b/resources/views/components/thin/circle.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/clock-fill.blade.php b/resources/views/components/thin/clock-fill.blade.php
new file mode 100644
index 0000000..3d57491
--- /dev/null
+++ b/resources/views/components/thin/clock-fill.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/clock.blade.php b/resources/views/components/thin/clock.blade.php
new file mode 100644
index 0000000..1d112bc
--- /dev/null
+++ b/resources/views/components/thin/clock.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/cloud-offline.blade.php b/resources/views/components/thin/cloud-offline.blade.php
new file mode 100644
index 0000000..0abd1f6
--- /dev/null
+++ b/resources/views/components/thin/cloud-offline.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/cloud.blade.php b/resources/views/components/thin/cloud.blade.php
new file mode 100644
index 0000000..3abd866
--- /dev/null
+++ b/resources/views/components/thin/cloud.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/code-of-conduct.blade.php b/resources/views/components/thin/code-of-conduct.blade.php
new file mode 100644
index 0000000..9a8c743
--- /dev/null
+++ b/resources/views/components/thin/code-of-conduct.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/code-review.blade.php b/resources/views/components/thin/code-review.blade.php
new file mode 100644
index 0000000..c12d273
--- /dev/null
+++ b/resources/views/components/thin/code-review.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/code-square.blade.php b/resources/views/components/thin/code-square.blade.php
new file mode 100644
index 0000000..481d0c6
--- /dev/null
+++ b/resources/views/components/thin/code-square.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/code.blade.php b/resources/views/components/thin/code.blade.php
new file mode 100644
index 0000000..43a34d9
--- /dev/null
+++ b/resources/views/components/thin/code.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/codescan-checkmark.blade.php b/resources/views/components/thin/codescan-checkmark.blade.php
new file mode 100644
index 0000000..295f465
--- /dev/null
+++ b/resources/views/components/thin/codescan-checkmark.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/codescan.blade.php b/resources/views/components/thin/codescan.blade.php
new file mode 100644
index 0000000..253e4e8
--- /dev/null
+++ b/resources/views/components/thin/codescan.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/codespaces.blade.php b/resources/views/components/thin/codespaces.blade.php
new file mode 100644
index 0000000..83dbfc7
--- /dev/null
+++ b/resources/views/components/thin/codespaces.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/columns.blade.php b/resources/views/components/thin/columns.blade.php
new file mode 100644
index 0000000..f547c65
--- /dev/null
+++ b/resources/views/components/thin/columns.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/command-palette.blade.php b/resources/views/components/thin/command-palette.blade.php
new file mode 100644
index 0000000..4d26f17
--- /dev/null
+++ b/resources/views/components/thin/command-palette.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/comment-discussion.blade.php b/resources/views/components/thin/comment-discussion.blade.php
new file mode 100644
index 0000000..624857d
--- /dev/null
+++ b/resources/views/components/thin/comment-discussion.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/comment.blade.php b/resources/views/components/thin/comment.blade.php
new file mode 100644
index 0000000..5000944
--- /dev/null
+++ b/resources/views/components/thin/comment.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/container.blade.php b/resources/views/components/thin/container.blade.php
new file mode 100644
index 0000000..42c2eb4
--- /dev/null
+++ b/resources/views/components/thin/container.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/copilot.blade.php b/resources/views/components/thin/copilot.blade.php
new file mode 100644
index 0000000..e65afd7
--- /dev/null
+++ b/resources/views/components/thin/copilot.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/copy.blade.php b/resources/views/components/thin/copy.blade.php
new file mode 100644
index 0000000..ab3fcad
--- /dev/null
+++ b/resources/views/components/thin/copy.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/cpu.blade.php b/resources/views/components/thin/cpu.blade.php
new file mode 100644
index 0000000..3476187
--- /dev/null
+++ b/resources/views/components/thin/cpu.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/credit-card.blade.php b/resources/views/components/thin/credit-card.blade.php
new file mode 100644
index 0000000..0a5fe66
--- /dev/null
+++ b/resources/views/components/thin/credit-card.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/cross-reference.blade.php b/resources/views/components/thin/cross-reference.blade.php
new file mode 100644
index 0000000..db2030c
--- /dev/null
+++ b/resources/views/components/thin/cross-reference.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/dash.blade.php b/resources/views/components/thin/dash.blade.php
new file mode 100644
index 0000000..ec1b429
--- /dev/null
+++ b/resources/views/components/thin/dash.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/database.blade.php b/resources/views/components/thin/database.blade.php
new file mode 100644
index 0000000..a5a2f9b
--- /dev/null
+++ b/resources/views/components/thin/database.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/dependabot.blade.php b/resources/views/components/thin/dependabot.blade.php
new file mode 100644
index 0000000..05becb4
--- /dev/null
+++ b/resources/views/components/thin/dependabot.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/desktop-download.blade.php b/resources/views/components/thin/desktop-download.blade.php
new file mode 100644
index 0000000..44964ea
--- /dev/null
+++ b/resources/views/components/thin/desktop-download.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/device-camera-video.blade.php b/resources/views/components/thin/device-camera-video.blade.php
new file mode 100644
index 0000000..c331c29
--- /dev/null
+++ b/resources/views/components/thin/device-camera-video.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/device-camera.blade.php b/resources/views/components/thin/device-camera.blade.php
new file mode 100644
index 0000000..0d109f9
--- /dev/null
+++ b/resources/views/components/thin/device-camera.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/device-desktop.blade.php b/resources/views/components/thin/device-desktop.blade.php
new file mode 100644
index 0000000..ab4cb67
--- /dev/null
+++ b/resources/views/components/thin/device-desktop.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/device-mobile.blade.php b/resources/views/components/thin/device-mobile.blade.php
new file mode 100644
index 0000000..8434ac1
--- /dev/null
+++ b/resources/views/components/thin/device-mobile.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/devices.blade.php b/resources/views/components/thin/devices.blade.php
new file mode 100644
index 0000000..0351c61
--- /dev/null
+++ b/resources/views/components/thin/devices.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/diamond.blade.php b/resources/views/components/thin/diamond.blade.php
new file mode 100644
index 0000000..027ffbb
--- /dev/null
+++ b/resources/views/components/thin/diamond.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/diff-added.blade.php b/resources/views/components/thin/diff-added.blade.php
new file mode 100644
index 0000000..4a4995c
--- /dev/null
+++ b/resources/views/components/thin/diff-added.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/diff-ignored.blade.php b/resources/views/components/thin/diff-ignored.blade.php
new file mode 100644
index 0000000..4fab054
--- /dev/null
+++ b/resources/views/components/thin/diff-ignored.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/diff-modified.blade.php b/resources/views/components/thin/diff-modified.blade.php
new file mode 100644
index 0000000..d3a64e7
--- /dev/null
+++ b/resources/views/components/thin/diff-modified.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/diff-removed.blade.php b/resources/views/components/thin/diff-removed.blade.php
new file mode 100644
index 0000000..196c42f
--- /dev/null
+++ b/resources/views/components/thin/diff-removed.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/diff-renamed.blade.php b/resources/views/components/thin/diff-renamed.blade.php
new file mode 100644
index 0000000..c7b0443
--- /dev/null
+++ b/resources/views/components/thin/diff-renamed.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/diff.blade.php b/resources/views/components/thin/diff.blade.php
new file mode 100644
index 0000000..e4210a1
--- /dev/null
+++ b/resources/views/components/thin/diff.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/discussion-closed.blade.php b/resources/views/components/thin/discussion-closed.blade.php
new file mode 100644
index 0000000..2d14d58
--- /dev/null
+++ b/resources/views/components/thin/discussion-closed.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/discussion-duplicate.blade.php b/resources/views/components/thin/discussion-duplicate.blade.php
new file mode 100644
index 0000000..e89a983
--- /dev/null
+++ b/resources/views/components/thin/discussion-duplicate.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/discussion-outdated.blade.php b/resources/views/components/thin/discussion-outdated.blade.php
new file mode 100644
index 0000000..727d5b0
--- /dev/null
+++ b/resources/views/components/thin/discussion-outdated.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/dot-fill.blade.php b/resources/views/components/thin/dot-fill.blade.php
new file mode 100644
index 0000000..7dd730b
--- /dev/null
+++ b/resources/views/components/thin/dot-fill.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/dot.blade.php b/resources/views/components/thin/dot.blade.php
new file mode 100644
index 0000000..48dbd58
--- /dev/null
+++ b/resources/views/components/thin/dot.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/download.blade.php b/resources/views/components/thin/download.blade.php
new file mode 100644
index 0000000..64668db
--- /dev/null
+++ b/resources/views/components/thin/download.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/duplicate.blade.php b/resources/views/components/thin/duplicate.blade.php
new file mode 100644
index 0000000..5db7bcf
--- /dev/null
+++ b/resources/views/components/thin/duplicate.blade.php
@@ -0,0 +1,15 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
+
diff --git a/resources/views/components/thin/ellipsis.blade.php b/resources/views/components/thin/ellipsis.blade.php
new file mode 100644
index 0000000..eb2288c
--- /dev/null
+++ b/resources/views/components/thin/ellipsis.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/eye-closed.blade.php b/resources/views/components/thin/eye-closed.blade.php
new file mode 100644
index 0000000..fd52d86
--- /dev/null
+++ b/resources/views/components/thin/eye-closed.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/eye.blade.php b/resources/views/components/thin/eye.blade.php
new file mode 100644
index 0000000..58a4470
--- /dev/null
+++ b/resources/views/components/thin/eye.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/file-added.blade.php b/resources/views/components/thin/file-added.blade.php
new file mode 100644
index 0000000..780ad93
--- /dev/null
+++ b/resources/views/components/thin/file-added.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/file-badge.blade.php b/resources/views/components/thin/file-badge.blade.php
new file mode 100644
index 0000000..a4b0a2b
--- /dev/null
+++ b/resources/views/components/thin/file-badge.blade.php
@@ -0,0 +1,15 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
+
diff --git a/resources/views/components/thin/file-binary.blade.php b/resources/views/components/thin/file-binary.blade.php
new file mode 100644
index 0000000..28a65e0
--- /dev/null
+++ b/resources/views/components/thin/file-binary.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/file-code.blade.php b/resources/views/components/thin/file-code.blade.php
new file mode 100644
index 0000000..59bd327
--- /dev/null
+++ b/resources/views/components/thin/file-code.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/file-diff.blade.php b/resources/views/components/thin/file-diff.blade.php
new file mode 100644
index 0000000..3a75938
--- /dev/null
+++ b/resources/views/components/thin/file-diff.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/file-directory-fill.blade.php b/resources/views/components/thin/file-directory-fill.blade.php
new file mode 100644
index 0000000..bf96a9b
--- /dev/null
+++ b/resources/views/components/thin/file-directory-fill.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/file-directory-open-fill.blade.php b/resources/views/components/thin/file-directory-open-fill.blade.php
new file mode 100644
index 0000000..ed44e30
--- /dev/null
+++ b/resources/views/components/thin/file-directory-open-fill.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/file-directory-symlink.blade.php b/resources/views/components/thin/file-directory-symlink.blade.php
new file mode 100644
index 0000000..d57d025
--- /dev/null
+++ b/resources/views/components/thin/file-directory-symlink.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/file-directory.blade.php b/resources/views/components/thin/file-directory.blade.php
new file mode 100644
index 0000000..19956e7
--- /dev/null
+++ b/resources/views/components/thin/file-directory.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/file-media.blade.php b/resources/views/components/thin/file-media.blade.php
new file mode 100644
index 0000000..9cbf1a9
--- /dev/null
+++ b/resources/views/components/thin/file-media.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/file-moved.blade.php b/resources/views/components/thin/file-moved.blade.php
new file mode 100644
index 0000000..439db26
--- /dev/null
+++ b/resources/views/components/thin/file-moved.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/file-removed.blade.php b/resources/views/components/thin/file-removed.blade.php
new file mode 100644
index 0000000..3b9f943
--- /dev/null
+++ b/resources/views/components/thin/file-removed.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/file-submodule.blade.php b/resources/views/components/thin/file-submodule.blade.php
new file mode 100644
index 0000000..8c3384d
--- /dev/null
+++ b/resources/views/components/thin/file-submodule.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/file-symlink-file.blade.php b/resources/views/components/thin/file-symlink-file.blade.php
new file mode 100644
index 0000000..bd09f58
--- /dev/null
+++ b/resources/views/components/thin/file-symlink-file.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/file-zip.blade.php b/resources/views/components/thin/file-zip.blade.php
new file mode 100644
index 0000000..8520e42
--- /dev/null
+++ b/resources/views/components/thin/file-zip.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/file.blade.php b/resources/views/components/thin/file.blade.php
new file mode 100644
index 0000000..3462e08
--- /dev/null
+++ b/resources/views/components/thin/file.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/filter-remove.blade.php b/resources/views/components/thin/filter-remove.blade.php
new file mode 100644
index 0000000..6aa15fb
--- /dev/null
+++ b/resources/views/components/thin/filter-remove.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/filter.blade.php b/resources/views/components/thin/filter.blade.php
new file mode 100644
index 0000000..5783833
--- /dev/null
+++ b/resources/views/components/thin/filter.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/fiscal-host.blade.php b/resources/views/components/thin/fiscal-host.blade.php
new file mode 100644
index 0000000..cad41fd
--- /dev/null
+++ b/resources/views/components/thin/fiscal-host.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/flame.blade.php b/resources/views/components/thin/flame.blade.php
new file mode 100644
index 0000000..738c2a6
--- /dev/null
+++ b/resources/views/components/thin/flame.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/fold-down.blade.php b/resources/views/components/thin/fold-down.blade.php
new file mode 100644
index 0000000..0e24a32
--- /dev/null
+++ b/resources/views/components/thin/fold-down.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/fold-up.blade.php b/resources/views/components/thin/fold-up.blade.php
new file mode 100644
index 0000000..9cc2f71
--- /dev/null
+++ b/resources/views/components/thin/fold-up.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/fold.blade.php b/resources/views/components/thin/fold.blade.php
new file mode 100644
index 0000000..393c1d5
--- /dev/null
+++ b/resources/views/components/thin/fold.blade.php
@@ -0,0 +1,15 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
+
diff --git a/resources/views/components/thin/gear.blade.php b/resources/views/components/thin/gear.blade.php
new file mode 100644
index 0000000..ac021c5
--- /dev/null
+++ b/resources/views/components/thin/gear.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/gift.blade.php b/resources/views/components/thin/gift.blade.php
new file mode 100644
index 0000000..52d58c3
--- /dev/null
+++ b/resources/views/components/thin/gift.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/git-branch.blade.php b/resources/views/components/thin/git-branch.blade.php
new file mode 100644
index 0000000..b2d912c
--- /dev/null
+++ b/resources/views/components/thin/git-branch.blade.php
@@ -0,0 +1,14 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
+
diff --git a/resources/views/components/thin/git-commit.blade.php b/resources/views/components/thin/git-commit.blade.php
new file mode 100644
index 0000000..72ca428
--- /dev/null
+++ b/resources/views/components/thin/git-commit.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/git-compare.blade.php b/resources/views/components/thin/git-compare.blade.php
new file mode 100644
index 0000000..4fdfc7c
--- /dev/null
+++ b/resources/views/components/thin/git-compare.blade.php
@@ -0,0 +1,15 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
+
diff --git a/resources/views/components/thin/git-merge-queue.blade.php b/resources/views/components/thin/git-merge-queue.blade.php
new file mode 100644
index 0000000..eb340f1
--- /dev/null
+++ b/resources/views/components/thin/git-merge-queue.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/git-merge.blade.php b/resources/views/components/thin/git-merge.blade.php
new file mode 100644
index 0000000..57a11d4
--- /dev/null
+++ b/resources/views/components/thin/git-merge.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
+
diff --git a/resources/views/components/thin/git-pull-request-closed.blade.php b/resources/views/components/thin/git-pull-request-closed.blade.php
new file mode 100644
index 0000000..0420144
--- /dev/null
+++ b/resources/views/components/thin/git-pull-request-closed.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/git-pull-request-draft.blade.php b/resources/views/components/thin/git-pull-request-draft.blade.php
new file mode 100644
index 0000000..4b49784
--- /dev/null
+++ b/resources/views/components/thin/git-pull-request-draft.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/git-pull-request.blade.php b/resources/views/components/thin/git-pull-request.blade.php
new file mode 100644
index 0000000..7cd7f43
--- /dev/null
+++ b/resources/views/components/thin/git-pull-request.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/globe.blade.php b/resources/views/components/thin/globe.blade.php
new file mode 100644
index 0000000..cc573cc
--- /dev/null
+++ b/resources/views/components/thin/globe.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/goal.blade.php b/resources/views/components/thin/goal.blade.php
new file mode 100644
index 0000000..b19259a
--- /dev/null
+++ b/resources/views/components/thin/goal.blade.php
@@ -0,0 +1,15 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
+
diff --git a/resources/views/components/thin/grabber.blade.php b/resources/views/components/thin/grabber.blade.php
new file mode 100644
index 0000000..7cf5ada
--- /dev/null
+++ b/resources/views/components/thin/grabber.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/graph.blade.php b/resources/views/components/thin/graph.blade.php
new file mode 100644
index 0000000..78a48c9
--- /dev/null
+++ b/resources/views/components/thin/graph.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/hash.blade.php b/resources/views/components/thin/hash.blade.php
new file mode 100644
index 0000000..6d2307f
--- /dev/null
+++ b/resources/views/components/thin/hash.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/heading.blade.php b/resources/views/components/thin/heading.blade.php
new file mode 100644
index 0000000..82479b0
--- /dev/null
+++ b/resources/views/components/thin/heading.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/heart-fill.blade.php b/resources/views/components/thin/heart-fill.blade.php
new file mode 100644
index 0000000..352e265
--- /dev/null
+++ b/resources/views/components/thin/heart-fill.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/heart.blade.php b/resources/views/components/thin/heart.blade.php
new file mode 100644
index 0000000..c3fd9b5
--- /dev/null
+++ b/resources/views/components/thin/heart.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/history.blade.php b/resources/views/components/thin/history.blade.php
new file mode 100644
index 0000000..71155fa
--- /dev/null
+++ b/resources/views/components/thin/history.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/home-fill.blade.php b/resources/views/components/thin/home-fill.blade.php
new file mode 100644
index 0000000..7bc423d
--- /dev/null
+++ b/resources/views/components/thin/home-fill.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/home.blade.php b/resources/views/components/thin/home.blade.php
new file mode 100644
index 0000000..ea64e3a
--- /dev/null
+++ b/resources/views/components/thin/home.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/horizontal-rule.blade.php b/resources/views/components/thin/horizontal-rule.blade.php
new file mode 100644
index 0000000..87e2f78
--- /dev/null
+++ b/resources/views/components/thin/horizontal-rule.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/hourglass.blade.php b/resources/views/components/thin/hourglass.blade.php
new file mode 100644
index 0000000..f60f25b
--- /dev/null
+++ b/resources/views/components/thin/hourglass.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/hubot.blade.php b/resources/views/components/thin/hubot.blade.php
new file mode 100644
index 0000000..bd7d0d5
--- /dev/null
+++ b/resources/views/components/thin/hubot.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/id-badge.blade.php b/resources/views/components/thin/id-badge.blade.php
new file mode 100644
index 0000000..1df2666
--- /dev/null
+++ b/resources/views/components/thin/id-badge.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/image.blade.php b/resources/views/components/thin/image.blade.php
new file mode 100644
index 0000000..97b918c
--- /dev/null
+++ b/resources/views/components/thin/image.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/inbox.blade.php b/resources/views/components/thin/inbox.blade.php
new file mode 100644
index 0000000..0bce798
--- /dev/null
+++ b/resources/views/components/thin/inbox.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/infinity.blade.php b/resources/views/components/thin/infinity.blade.php
new file mode 100644
index 0000000..f050a29
--- /dev/null
+++ b/resources/views/components/thin/infinity.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/info.blade.php b/resources/views/components/thin/info.blade.php
new file mode 100644
index 0000000..e37ea9b
--- /dev/null
+++ b/resources/views/components/thin/info.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/issue-closed.blade.php b/resources/views/components/thin/issue-closed.blade.php
new file mode 100644
index 0000000..f9785de
--- /dev/null
+++ b/resources/views/components/thin/issue-closed.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/issue-draft.blade.php b/resources/views/components/thin/issue-draft.blade.php
new file mode 100644
index 0000000..366bc27
--- /dev/null
+++ b/resources/views/components/thin/issue-draft.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/issue-opened.blade.php b/resources/views/components/thin/issue-opened.blade.php
new file mode 100644
index 0000000..e3b7a59
--- /dev/null
+++ b/resources/views/components/thin/issue-opened.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/issue-reopened.blade.php b/resources/views/components/thin/issue-reopened.blade.php
new file mode 100644
index 0000000..d3ed031
--- /dev/null
+++ b/resources/views/components/thin/issue-reopened.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/issue-tracked-by.blade.php b/resources/views/components/thin/issue-tracked-by.blade.php
new file mode 100644
index 0000000..977c425
--- /dev/null
+++ b/resources/views/components/thin/issue-tracked-by.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/issue-tracks.blade.php b/resources/views/components/thin/issue-tracks.blade.php
new file mode 100644
index 0000000..bac1ac3
--- /dev/null
+++ b/resources/views/components/thin/issue-tracks.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/italic.blade.php b/resources/views/components/thin/italic.blade.php
new file mode 100644
index 0000000..485b69f
--- /dev/null
+++ b/resources/views/components/thin/italic.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/iterations.blade.php b/resources/views/components/thin/iterations.blade.php
new file mode 100644
index 0000000..243a564
--- /dev/null
+++ b/resources/views/components/thin/iterations.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/kebab-horizontal.blade.php b/resources/views/components/thin/kebab-horizontal.blade.php
new file mode 100644
index 0000000..cdd20fc
--- /dev/null
+++ b/resources/views/components/thin/kebab-horizontal.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/key-asterisk.blade.php b/resources/views/components/thin/key-asterisk.blade.php
new file mode 100644
index 0000000..5a8c5b5
--- /dev/null
+++ b/resources/views/components/thin/key-asterisk.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/key.blade.php b/resources/views/components/thin/key.blade.php
new file mode 100644
index 0000000..efd27c8
--- /dev/null
+++ b/resources/views/components/thin/key.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/law.blade.php b/resources/views/components/thin/law.blade.php
new file mode 100644
index 0000000..b607f12
--- /dev/null
+++ b/resources/views/components/thin/law.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/light-bulb.blade.php b/resources/views/components/thin/light-bulb.blade.php
new file mode 100644
index 0000000..03063a5
--- /dev/null
+++ b/resources/views/components/thin/light-bulb.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/link-external.blade.php b/resources/views/components/thin/link-external.blade.php
new file mode 100644
index 0000000..1ec6816
--- /dev/null
+++ b/resources/views/components/thin/link-external.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/link.blade.php b/resources/views/components/thin/link.blade.php
new file mode 100644
index 0000000..34b9a74
--- /dev/null
+++ b/resources/views/components/thin/link.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/list-ordered.blade.php b/resources/views/components/thin/list-ordered.blade.php
new file mode 100644
index 0000000..99ee688
--- /dev/null
+++ b/resources/views/components/thin/list-ordered.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/list-unordered.blade.php b/resources/views/components/thin/list-unordered.blade.php
new file mode 100644
index 0000000..3f94ddb
--- /dev/null
+++ b/resources/views/components/thin/list-unordered.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/location.blade.php b/resources/views/components/thin/location.blade.php
new file mode 100644
index 0000000..19cb55d
--- /dev/null
+++ b/resources/views/components/thin/location.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/lock.blade.php b/resources/views/components/thin/lock.blade.php
new file mode 100644
index 0000000..dda693a
--- /dev/null
+++ b/resources/views/components/thin/lock.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/log.blade.php b/resources/views/components/thin/log.blade.php
new file mode 100644
index 0000000..64ee69f
--- /dev/null
+++ b/resources/views/components/thin/log.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/logo-gist.blade.php b/resources/views/components/thin/logo-gist.blade.php
new file mode 100644
index 0000000..f0c18bc
--- /dev/null
+++ b/resources/views/components/thin/logo-gist.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/logo-github.blade.php b/resources/views/components/thin/logo-github.blade.php
new file mode 100644
index 0000000..49ccdd1
--- /dev/null
+++ b/resources/views/components/thin/logo-github.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/mail.blade.php b/resources/views/components/thin/mail.blade.php
new file mode 100644
index 0000000..9b4115b
--- /dev/null
+++ b/resources/views/components/thin/mail.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/mark-github.blade.php b/resources/views/components/thin/mark-github.blade.php
new file mode 100644
index 0000000..462ab03
--- /dev/null
+++ b/resources/views/components/thin/mark-github.blade.php
@@ -0,0 +1,7 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
\ No newline at end of file
diff --git a/resources/views/components/thin/markdown.blade.php b/resources/views/components/thin/markdown.blade.php
new file mode 100644
index 0000000..01f3804
--- /dev/null
+++ b/resources/views/components/thin/markdown.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/megaphone.blade.php b/resources/views/components/thin/megaphone.blade.php
new file mode 100644
index 0000000..a372220
--- /dev/null
+++ b/resources/views/components/thin/megaphone.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/mention.blade.php b/resources/views/components/thin/mention.blade.php
new file mode 100644
index 0000000..56821ad
--- /dev/null
+++ b/resources/views/components/thin/mention.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/meter.blade.php b/resources/views/components/thin/meter.blade.php
new file mode 100644
index 0000000..085c882
--- /dev/null
+++ b/resources/views/components/thin/meter.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/milestone.blade.php b/resources/views/components/thin/milestone.blade.php
new file mode 100644
index 0000000..8d636fd
--- /dev/null
+++ b/resources/views/components/thin/milestone.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/mirror.blade.php b/resources/views/components/thin/mirror.blade.php
new file mode 100644
index 0000000..4a9a4ab
--- /dev/null
+++ b/resources/views/components/thin/mirror.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/moon.blade.php b/resources/views/components/thin/moon.blade.php
new file mode 100644
index 0000000..64b9323
--- /dev/null
+++ b/resources/views/components/thin/moon.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/mortar-board.blade.php b/resources/views/components/thin/mortar-board.blade.php
new file mode 100644
index 0000000..584fcf3
--- /dev/null
+++ b/resources/views/components/thin/mortar-board.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/move-to-bottom.blade.php b/resources/views/components/thin/move-to-bottom.blade.php
new file mode 100644
index 0000000..cec89cd
--- /dev/null
+++ b/resources/views/components/thin/move-to-bottom.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/move-to-end.blade.php b/resources/views/components/thin/move-to-end.blade.php
new file mode 100644
index 0000000..e540b49
--- /dev/null
+++ b/resources/views/components/thin/move-to-end.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/move-to-start.blade.php b/resources/views/components/thin/move-to-start.blade.php
new file mode 100644
index 0000000..a280d7f
--- /dev/null
+++ b/resources/views/components/thin/move-to-start.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/move-to-top.blade.php b/resources/views/components/thin/move-to-top.blade.php
new file mode 100644
index 0000000..7c3720f
--- /dev/null
+++ b/resources/views/components/thin/move-to-top.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/multi-select.blade.php b/resources/views/components/thin/multi-select.blade.php
new file mode 100644
index 0000000..54261cb
--- /dev/null
+++ b/resources/views/components/thin/multi-select.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/mute.blade.php b/resources/views/components/thin/mute.blade.php
new file mode 100644
index 0000000..0cfd663
--- /dev/null
+++ b/resources/views/components/thin/mute.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/no-entry.blade.php b/resources/views/components/thin/no-entry.blade.php
new file mode 100644
index 0000000..d4a5b82
--- /dev/null
+++ b/resources/views/components/thin/no-entry.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/north-star.blade.php b/resources/views/components/thin/north-star.blade.php
new file mode 100644
index 0000000..33cb519
--- /dev/null
+++ b/resources/views/components/thin/north-star.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/note.blade.php b/resources/views/components/thin/note.blade.php
new file mode 100644
index 0000000..0e9417e
--- /dev/null
+++ b/resources/views/components/thin/note.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/number.blade.php b/resources/views/components/thin/number.blade.php
new file mode 100644
index 0000000..4abbd5a
--- /dev/null
+++ b/resources/views/components/thin/number.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/organization.blade.php b/resources/views/components/thin/organization.blade.php
new file mode 100644
index 0000000..e9c9aa4
--- /dev/null
+++ b/resources/views/components/thin/organization.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/package-dependencies.blade.php b/resources/views/components/thin/package-dependencies.blade.php
new file mode 100644
index 0000000..d63ee42
--- /dev/null
+++ b/resources/views/components/thin/package-dependencies.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/package-dependents.blade.php b/resources/views/components/thin/package-dependents.blade.php
new file mode 100644
index 0000000..28209e3
--- /dev/null
+++ b/resources/views/components/thin/package-dependents.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/package.blade.php b/resources/views/components/thin/package.blade.php
new file mode 100644
index 0000000..57e8617
--- /dev/null
+++ b/resources/views/components/thin/package.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/paintbrush.blade.php b/resources/views/components/thin/paintbrush.blade.php
new file mode 100644
index 0000000..20d1cbf
--- /dev/null
+++ b/resources/views/components/thin/paintbrush.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/paper-airplane.blade.php b/resources/views/components/thin/paper-airplane.blade.php
new file mode 100644
index 0000000..5032439
--- /dev/null
+++ b/resources/views/components/thin/paper-airplane.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/paperclip.blade.php b/resources/views/components/thin/paperclip.blade.php
new file mode 100644
index 0000000..9ef19a6
--- /dev/null
+++ b/resources/views/components/thin/paperclip.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/passkey-fill.blade.php b/resources/views/components/thin/passkey-fill.blade.php
new file mode 100644
index 0000000..badf70c
--- /dev/null
+++ b/resources/views/components/thin/passkey-fill.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/paste.blade.php b/resources/views/components/thin/paste.blade.php
new file mode 100644
index 0000000..630c9b2
--- /dev/null
+++ b/resources/views/components/thin/paste.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/pencil.blade.php b/resources/views/components/thin/pencil.blade.php
new file mode 100644
index 0000000..f14431e
--- /dev/null
+++ b/resources/views/components/thin/pencil.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/people.blade.php b/resources/views/components/thin/people.blade.php
new file mode 100644
index 0000000..819f130
--- /dev/null
+++ b/resources/views/components/thin/people.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/person-add.blade.php b/resources/views/components/thin/person-add.blade.php
new file mode 100644
index 0000000..b4dc5f1
--- /dev/null
+++ b/resources/views/components/thin/person-add.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/person-fill.blade.php b/resources/views/components/thin/person-fill.blade.php
new file mode 100644
index 0000000..249ef9d
--- /dev/null
+++ b/resources/views/components/thin/person-fill.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/person.blade.php b/resources/views/components/thin/person.blade.php
new file mode 100644
index 0000000..a250367
--- /dev/null
+++ b/resources/views/components/thin/person.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/pin-slash.blade.php b/resources/views/components/thin/pin-slash.blade.php
new file mode 100644
index 0000000..3709fc7
--- /dev/null
+++ b/resources/views/components/thin/pin-slash.blade.php
@@ -0,0 +1,15 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
+
diff --git a/resources/views/components/thin/pin.blade.php b/resources/views/components/thin/pin.blade.php
new file mode 100644
index 0000000..e05a38d
--- /dev/null
+++ b/resources/views/components/thin/pin.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/pivot-column.blade.php b/resources/views/components/thin/pivot-column.blade.php
new file mode 100644
index 0000000..a5bbedc
--- /dev/null
+++ b/resources/views/components/thin/pivot-column.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/play.blade.php b/resources/views/components/thin/play.blade.php
new file mode 100644
index 0000000..879e668
--- /dev/null
+++ b/resources/views/components/thin/play.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/plug.blade.php b/resources/views/components/thin/plug.blade.php
new file mode 100644
index 0000000..dc4f52e
--- /dev/null
+++ b/resources/views/components/thin/plug.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/plus-circle.blade.php b/resources/views/components/thin/plus-circle.blade.php
new file mode 100644
index 0000000..83b00f3
--- /dev/null
+++ b/resources/views/components/thin/plus-circle.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/plus.blade.php b/resources/views/components/thin/plus.blade.php
new file mode 100644
index 0000000..7de4039
--- /dev/null
+++ b/resources/views/components/thin/plus.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/project-roadmap.blade.php b/resources/views/components/thin/project-roadmap.blade.php
new file mode 100644
index 0000000..a56d1fd
--- /dev/null
+++ b/resources/views/components/thin/project-roadmap.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/project-symlink.blade.php b/resources/views/components/thin/project-symlink.blade.php
new file mode 100644
index 0000000..127a4e4
--- /dev/null
+++ b/resources/views/components/thin/project-symlink.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/project-template.blade.php b/resources/views/components/thin/project-template.blade.php
new file mode 100644
index 0000000..885322a
--- /dev/null
+++ b/resources/views/components/thin/project-template.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/project.blade.php b/resources/views/components/thin/project.blade.php
new file mode 100644
index 0000000..c53607f
--- /dev/null
+++ b/resources/views/components/thin/project.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/pulse.blade.php b/resources/views/components/thin/pulse.blade.php
new file mode 100644
index 0000000..e8091f0
--- /dev/null
+++ b/resources/views/components/thin/pulse.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/question.blade.php b/resources/views/components/thin/question.blade.php
new file mode 100644
index 0000000..174bcdb
--- /dev/null
+++ b/resources/views/components/thin/question.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/quote.blade.php b/resources/views/components/thin/quote.blade.php
new file mode 100644
index 0000000..e4dc27d
--- /dev/null
+++ b/resources/views/components/thin/quote.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/read.blade.php b/resources/views/components/thin/read.blade.php
new file mode 100644
index 0000000..b10e58f
--- /dev/null
+++ b/resources/views/components/thin/read.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/redo.blade.php b/resources/views/components/thin/redo.blade.php
new file mode 100644
index 0000000..1e01dcd
--- /dev/null
+++ b/resources/views/components/thin/redo.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/rel-file-path.blade.php b/resources/views/components/thin/rel-file-path.blade.php
new file mode 100644
index 0000000..365d376
--- /dev/null
+++ b/resources/views/components/thin/rel-file-path.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/reply.blade.php b/resources/views/components/thin/reply.blade.php
new file mode 100644
index 0000000..524ee98
--- /dev/null
+++ b/resources/views/components/thin/reply.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/repo-clone.blade.php b/resources/views/components/thin/repo-clone.blade.php
new file mode 100644
index 0000000..59de055
--- /dev/null
+++ b/resources/views/components/thin/repo-clone.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/repo-delete.blade.php b/resources/views/components/thin/repo-delete.blade.php
new file mode 100644
index 0000000..567e50e
--- /dev/null
+++ b/resources/views/components/thin/repo-delete.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/repo-forked.blade.php b/resources/views/components/thin/repo-forked.blade.php
new file mode 100644
index 0000000..a444c48
--- /dev/null
+++ b/resources/views/components/thin/repo-forked.blade.php
@@ -0,0 +1,14 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
+
diff --git a/resources/views/components/thin/repo-locked.blade.php b/resources/views/components/thin/repo-locked.blade.php
new file mode 100644
index 0000000..3d187e1
--- /dev/null
+++ b/resources/views/components/thin/repo-locked.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/repo-pull.blade.php b/resources/views/components/thin/repo-pull.blade.php
new file mode 100644
index 0000000..74a7968
--- /dev/null
+++ b/resources/views/components/thin/repo-pull.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/repo-push.blade.php b/resources/views/components/thin/repo-push.blade.php
new file mode 100644
index 0000000..f086a7a
--- /dev/null
+++ b/resources/views/components/thin/repo-push.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/repo-template.blade.php b/resources/views/components/thin/repo-template.blade.php
new file mode 100644
index 0000000..c557558
--- /dev/null
+++ b/resources/views/components/thin/repo-template.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/repo.blade.php b/resources/views/components/thin/repo.blade.php
new file mode 100644
index 0000000..4c5079b
--- /dev/null
+++ b/resources/views/components/thin/repo.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/report.blade.php b/resources/views/components/thin/report.blade.php
new file mode 100644
index 0000000..5e2dee4
--- /dev/null
+++ b/resources/views/components/thin/report.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/rocket.blade.php b/resources/views/components/thin/rocket.blade.php
new file mode 100644
index 0000000..8678b93
--- /dev/null
+++ b/resources/views/components/thin/rocket.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/rows.blade.php b/resources/views/components/thin/rows.blade.php
new file mode 100644
index 0000000..53ea10e
--- /dev/null
+++ b/resources/views/components/thin/rows.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/rss.blade.php b/resources/views/components/thin/rss.blade.php
new file mode 100644
index 0000000..bdb0a00
--- /dev/null
+++ b/resources/views/components/thin/rss.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/ruby.blade.php b/resources/views/components/thin/ruby.blade.php
new file mode 100644
index 0000000..84c6e54
--- /dev/null
+++ b/resources/views/components/thin/ruby.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/screen-full.blade.php b/resources/views/components/thin/screen-full.blade.php
new file mode 100644
index 0000000..bfb8b5c
--- /dev/null
+++ b/resources/views/components/thin/screen-full.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/screen-normal.blade.php b/resources/views/components/thin/screen-normal.blade.php
new file mode 100644
index 0000000..bb038cf
--- /dev/null
+++ b/resources/views/components/thin/screen-normal.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/search.blade.php b/resources/views/components/thin/search.blade.php
new file mode 100644
index 0000000..bae9f18
--- /dev/null
+++ b/resources/views/components/thin/search.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/server.blade.php b/resources/views/components/thin/server.blade.php
new file mode 100644
index 0000000..84f4e44
--- /dev/null
+++ b/resources/views/components/thin/server.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/share-android.blade.php b/resources/views/components/thin/share-android.blade.php
new file mode 100644
index 0000000..546c177
--- /dev/null
+++ b/resources/views/components/thin/share-android.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/share.blade.php b/resources/views/components/thin/share.blade.php
new file mode 100644
index 0000000..51f1815
--- /dev/null
+++ b/resources/views/components/thin/share.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/shield-check.blade.php b/resources/views/components/thin/shield-check.blade.php
new file mode 100644
index 0000000..75c0775
--- /dev/null
+++ b/resources/views/components/thin/shield-check.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/shield-lock.blade.php b/resources/views/components/thin/shield-lock.blade.php
new file mode 100644
index 0000000..8d9941b
--- /dev/null
+++ b/resources/views/components/thin/shield-lock.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/shield-slash.blade.php b/resources/views/components/thin/shield-slash.blade.php
new file mode 100644
index 0000000..a57b762
--- /dev/null
+++ b/resources/views/components/thin/shield-slash.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/shield-x.blade.php b/resources/views/components/thin/shield-x.blade.php
new file mode 100644
index 0000000..a95024b
--- /dev/null
+++ b/resources/views/components/thin/shield-x.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/shield.blade.php b/resources/views/components/thin/shield.blade.php
new file mode 100644
index 0000000..0599479
--- /dev/null
+++ b/resources/views/components/thin/shield.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/sidebar-collapse.blade.php b/resources/views/components/thin/sidebar-collapse.blade.php
new file mode 100644
index 0000000..741cbf3
--- /dev/null
+++ b/resources/views/components/thin/sidebar-collapse.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/sidebar-expand.blade.php b/resources/views/components/thin/sidebar-expand.blade.php
new file mode 100644
index 0000000..15255f3
--- /dev/null
+++ b/resources/views/components/thin/sidebar-expand.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/sign-in.blade.php b/resources/views/components/thin/sign-in.blade.php
new file mode 100644
index 0000000..9bf8813
--- /dev/null
+++ b/resources/views/components/thin/sign-in.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/sign-out.blade.php b/resources/views/components/thin/sign-out.blade.php
new file mode 100644
index 0000000..a9d7759
--- /dev/null
+++ b/resources/views/components/thin/sign-out.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/single-select.blade.php b/resources/views/components/thin/single-select.blade.php
new file mode 100644
index 0000000..2717a0b
--- /dev/null
+++ b/resources/views/components/thin/single-select.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/skip-fill.blade.php b/resources/views/components/thin/skip-fill.blade.php
new file mode 100644
index 0000000..b77863e
--- /dev/null
+++ b/resources/views/components/thin/skip-fill.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/skip.blade.php b/resources/views/components/thin/skip.blade.php
new file mode 100644
index 0000000..a358741
--- /dev/null
+++ b/resources/views/components/thin/skip.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/sliders.blade.php b/resources/views/components/thin/sliders.blade.php
new file mode 100644
index 0000000..6db6575
--- /dev/null
+++ b/resources/views/components/thin/sliders.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/smiley.blade.php b/resources/views/components/thin/smiley.blade.php
new file mode 100644
index 0000000..f2f7a9d
--- /dev/null
+++ b/resources/views/components/thin/smiley.blade.php
@@ -0,0 +1,15 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
+
diff --git a/resources/views/components/thin/sort-asc.blade.php b/resources/views/components/thin/sort-asc.blade.php
new file mode 100644
index 0000000..8f694f8
--- /dev/null
+++ b/resources/views/components/thin/sort-asc.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/sort-desc.blade.php b/resources/views/components/thin/sort-desc.blade.php
new file mode 100644
index 0000000..ec287f8
--- /dev/null
+++ b/resources/views/components/thin/sort-desc.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/sparkle-fill.blade.php b/resources/views/components/thin/sparkle-fill.blade.php
new file mode 100644
index 0000000..52e2aa4
--- /dev/null
+++ b/resources/views/components/thin/sparkle-fill.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/sponsor-tiers.blade.php b/resources/views/components/thin/sponsor-tiers.blade.php
new file mode 100644
index 0000000..c6cbb3c
--- /dev/null
+++ b/resources/views/components/thin/sponsor-tiers.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/square-fill.blade.php b/resources/views/components/thin/square-fill.blade.php
new file mode 100644
index 0000000..9ece3b4
--- /dev/null
+++ b/resources/views/components/thin/square-fill.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/square.blade.php b/resources/views/components/thin/square.blade.php
new file mode 100644
index 0000000..71754f3
--- /dev/null
+++ b/resources/views/components/thin/square.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/squirrel.blade.php b/resources/views/components/thin/squirrel.blade.php
new file mode 100644
index 0000000..215517f
--- /dev/null
+++ b/resources/views/components/thin/squirrel.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/stack.blade.php b/resources/views/components/thin/stack.blade.php
new file mode 100644
index 0000000..50d1004
--- /dev/null
+++ b/resources/views/components/thin/stack.blade.php
@@ -0,0 +1,15 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
+
diff --git a/resources/views/components/thin/star-fill.blade.php b/resources/views/components/thin/star-fill.blade.php
new file mode 100644
index 0000000..0052999
--- /dev/null
+++ b/resources/views/components/thin/star-fill.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/star.blade.php b/resources/views/components/thin/star.blade.php
new file mode 100644
index 0000000..91e5e27
--- /dev/null
+++ b/resources/views/components/thin/star.blade.php
@@ -0,0 +1,7 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
\ No newline at end of file
diff --git a/resources/views/components/thin/stop.blade.php b/resources/views/components/thin/stop.blade.php
new file mode 100644
index 0000000..60abdd6
--- /dev/null
+++ b/resources/views/components/thin/stop.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/stopwatch.blade.php b/resources/views/components/thin/stopwatch.blade.php
new file mode 100644
index 0000000..f38a48a
--- /dev/null
+++ b/resources/views/components/thin/stopwatch.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/strikethrough.blade.php b/resources/views/components/thin/strikethrough.blade.php
new file mode 100644
index 0000000..533eb34
--- /dev/null
+++ b/resources/views/components/thin/strikethrough.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/sun.blade.php b/resources/views/components/thin/sun.blade.php
new file mode 100644
index 0000000..6feafde
--- /dev/null
+++ b/resources/views/components/thin/sun.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/sync.blade.php b/resources/views/components/thin/sync.blade.php
new file mode 100644
index 0000000..4e10309
--- /dev/null
+++ b/resources/views/components/thin/sync.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/tab-external.blade.php b/resources/views/components/thin/tab-external.blade.php
new file mode 100644
index 0000000..144bb37
--- /dev/null
+++ b/resources/views/components/thin/tab-external.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/tab.blade.php b/resources/views/components/thin/tab.blade.php
new file mode 100644
index 0000000..c0cf92c
--- /dev/null
+++ b/resources/views/components/thin/tab.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/table.blade.php b/resources/views/components/thin/table.blade.php
new file mode 100644
index 0000000..bd33855
--- /dev/null
+++ b/resources/views/components/thin/table.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/tag.blade.php b/resources/views/components/thin/tag.blade.php
new file mode 100644
index 0000000..c183adf
--- /dev/null
+++ b/resources/views/components/thin/tag.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/tasklist.blade.php b/resources/views/components/thin/tasklist.blade.php
new file mode 100644
index 0000000..ff116a2
--- /dev/null
+++ b/resources/views/components/thin/tasklist.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/telescope-fill.blade.php b/resources/views/components/thin/telescope-fill.blade.php
new file mode 100644
index 0000000..7b1ebd8
--- /dev/null
+++ b/resources/views/components/thin/telescope-fill.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/telescope.blade.php b/resources/views/components/thin/telescope.blade.php
new file mode 100644
index 0000000..fef6af3
--- /dev/null
+++ b/resources/views/components/thin/telescope.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/terminal.blade.php b/resources/views/components/thin/terminal.blade.php
new file mode 100644
index 0000000..26cdf7c
--- /dev/null
+++ b/resources/views/components/thin/terminal.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/three-bars.blade.php b/resources/views/components/thin/three-bars.blade.php
new file mode 100644
index 0000000..64ab17d
--- /dev/null
+++ b/resources/views/components/thin/three-bars.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/thumbsdown.blade.php b/resources/views/components/thin/thumbsdown.blade.php
new file mode 100644
index 0000000..14577ab
--- /dev/null
+++ b/resources/views/components/thin/thumbsdown.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/thumbsup.blade.php b/resources/views/components/thin/thumbsup.blade.php
new file mode 100644
index 0000000..4cef9eb
--- /dev/null
+++ b/resources/views/components/thin/thumbsup.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/tools.blade.php b/resources/views/components/thin/tools.blade.php
new file mode 100644
index 0000000..da58c02
--- /dev/null
+++ b/resources/views/components/thin/tools.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/tracked-by-closed-completed.blade.php b/resources/views/components/thin/tracked-by-closed-completed.blade.php
new file mode 100644
index 0000000..1fefa9a
--- /dev/null
+++ b/resources/views/components/thin/tracked-by-closed-completed.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/tracked-by-closed-not-planned.blade.php b/resources/views/components/thin/tracked-by-closed-not-planned.blade.php
new file mode 100644
index 0000000..8974884
--- /dev/null
+++ b/resources/views/components/thin/tracked-by-closed-not-planned.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/trash.blade.php b/resources/views/components/thin/trash.blade.php
new file mode 100644
index 0000000..22a1d55
--- /dev/null
+++ b/resources/views/components/thin/trash.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/triangle-down.blade.php b/resources/views/components/thin/triangle-down.blade.php
new file mode 100644
index 0000000..c956eae
--- /dev/null
+++ b/resources/views/components/thin/triangle-down.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/triangle-left.blade.php b/resources/views/components/thin/triangle-left.blade.php
new file mode 100644
index 0000000..be0f7b6
--- /dev/null
+++ b/resources/views/components/thin/triangle-left.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/triangle-right.blade.php b/resources/views/components/thin/triangle-right.blade.php
new file mode 100644
index 0000000..434e6b0
--- /dev/null
+++ b/resources/views/components/thin/triangle-right.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/triangle-up.blade.php b/resources/views/components/thin/triangle-up.blade.php
new file mode 100644
index 0000000..a725124
--- /dev/null
+++ b/resources/views/components/thin/triangle-up.blade.php
@@ -0,0 +1,10 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/trophy.blade.php b/resources/views/components/thin/trophy.blade.php
new file mode 100644
index 0000000..cc8bac0
--- /dev/null
+++ b/resources/views/components/thin/trophy.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/typography.blade.php b/resources/views/components/thin/typography.blade.php
new file mode 100644
index 0000000..21a1555
--- /dev/null
+++ b/resources/views/components/thin/typography.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/undo.blade.php b/resources/views/components/thin/undo.blade.php
new file mode 100644
index 0000000..dad67cc
--- /dev/null
+++ b/resources/views/components/thin/undo.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/unfold.blade.php b/resources/views/components/thin/unfold.blade.php
new file mode 100644
index 0000000..80a05d9
--- /dev/null
+++ b/resources/views/components/thin/unfold.blade.php
@@ -0,0 +1,14 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
+
diff --git a/resources/views/components/thin/unlink.blade.php b/resources/views/components/thin/unlink.blade.php
new file mode 100644
index 0000000..686879e
--- /dev/null
+++ b/resources/views/components/thin/unlink.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/unlock.blade.php b/resources/views/components/thin/unlock.blade.php
new file mode 100644
index 0000000..4f03a8d
--- /dev/null
+++ b/resources/views/components/thin/unlock.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/unmute.blade.php b/resources/views/components/thin/unmute.blade.php
new file mode 100644
index 0000000..1efc512
--- /dev/null
+++ b/resources/views/components/thin/unmute.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/unread.blade.php b/resources/views/components/thin/unread.blade.php
new file mode 100644
index 0000000..bb3990e
--- /dev/null
+++ b/resources/views/components/thin/unread.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/unverified.blade.php b/resources/views/components/thin/unverified.blade.php
new file mode 100644
index 0000000..3b163c0
--- /dev/null
+++ b/resources/views/components/thin/unverified.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/upload.blade.php b/resources/views/components/thin/upload.blade.php
new file mode 100644
index 0000000..6a29b96
--- /dev/null
+++ b/resources/views/components/thin/upload.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/verified.blade.php b/resources/views/components/thin/verified.blade.php
new file mode 100644
index 0000000..0a62ded
--- /dev/null
+++ b/resources/views/components/thin/verified.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/versions.blade.php b/resources/views/components/thin/versions.blade.php
new file mode 100644
index 0000000..e886caa
--- /dev/null
+++ b/resources/views/components/thin/versions.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/video.blade.php b/resources/views/components/thin/video.blade.php
new file mode 100644
index 0000000..c13d336
--- /dev/null
+++ b/resources/views/components/thin/video.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/workflow.blade.php b/resources/views/components/thin/workflow.blade.php
new file mode 100644
index 0000000..321ff7e
--- /dev/null
+++ b/resources/views/components/thin/workflow.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/x-circle-fill.blade.php b/resources/views/components/thin/x-circle-fill.blade.php
new file mode 100644
index 0000000..39e064b
--- /dev/null
+++ b/resources/views/components/thin/x-circle-fill.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/x-circle.blade.php b/resources/views/components/thin/x-circle.blade.php
new file mode 100644
index 0000000..20da59d
--- /dev/null
+++ b/resources/views/components/thin/x-circle.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/x.blade.php b/resources/views/components/thin/x.blade.php
new file mode 100644
index 0000000..9a87928
--- /dev/null
+++ b/resources/views/components/thin/x.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/zap.blade.php b/resources/views/components/thin/zap.blade.php
new file mode 100644
index 0000000..6fa07b9
--- /dev/null
+++ b/resources/views/components/thin/zap.blade.php
@@ -0,0 +1,11 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
diff --git a/resources/views/components/thin/zoom-in.blade.php b/resources/views/components/thin/zoom-in.blade.php
new file mode 100644
index 0000000..0186704
--- /dev/null
+++ b/resources/views/components/thin/zoom-in.blade.php
@@ -0,0 +1,13 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/resources/views/components/thin/zoom-out.blade.php b/resources/views/components/thin/zoom-out.blade.php
new file mode 100644
index 0000000..9d0ec16
--- /dev/null
+++ b/resources/views/components/thin/zoom-out.blade.php
@@ -0,0 +1,12 @@
+@props([
+ 'width' => 16,
+ 'height' => 16,
+ 'fill' => '',
+])
+
+
+
+
+
diff --git a/src/LaravelPrimerOcticonsServiceProvider.php b/src/LaravelPrimerOcticonsServiceProvider.php
new file mode 100644
index 0000000..d36a30d
--- /dev/null
+++ b/src/LaravelPrimerOcticonsServiceProvider.php
@@ -0,0 +1,22 @@
+loadViewsFrom(__DIR__ . '/../resources/views', 'icon');
+
+ $this->publishes([
+ __DIR__ . '/../resources/views/components' => base_path('resources/views/components/icons'),
+ ], 'primer-octicons');
+ }
+}