Skip to content

Commit 437657f

Browse files
authored
Merge pull request #435 from cronxco/fix-niggles
2 parents 40a1133 + 80225af commit 437657f

File tree

117 files changed

+1554
-11
lines changed

Some content is hidden

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

117 files changed

+1554
-11
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Icons\FontAwesome;
4+
5+
use WireElements\Pro\Icons\Icon;
6+
7+
class ArrowRightFromBracket extends Icon
8+
{
9+
public function svg(): string
10+
{
11+
return '<i class="fa-solid fa-arrow-right-from-bracket"></i>';
12+
}
13+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Icons\FontAwesome;
4+
5+
use WireElements\Pro\Icons\Icon;
6+
7+
class ArrowRightToBracket extends Icon
8+
{
9+
public function svg(): string
10+
{
11+
return '<i class="fa-solid fa-arrow-right-to-bracket"></i>';
12+
}
13+
}

app/Icons/FontAwesome/Baseball.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Icons\FontAwesome;
4+
5+
use WireElements\Pro\Icons\Icon;
6+
7+
class Baseball extends Icon
8+
{
9+
public function svg(): string
10+
{
11+
return '<i class="fa-solid fa-baseball"></i>';
12+
}
13+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Icons\FontAwesome;
4+
5+
use WireElements\Pro\Icons\Icon;
6+
7+
class Basketball extends Icon
8+
{
9+
public function svg(): string
10+
{
11+
return '<i class="fa-solid fa-basketball"></i>';
12+
}
13+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Icons\FontAwesome;
4+
5+
use WireElements\Pro\Icons\Icon;
6+
7+
class BatteryFull extends Icon
8+
{
9+
public function svg(): string
10+
{
11+
return '<i class="fa-solid fa-battery-full"></i>';
12+
}
13+
}

app/Icons/FontAwesome/Bicycle.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Icons\FontAwesome;
4+
5+
use WireElements\Pro\Icons\Icon;
6+
7+
class Bicycle extends Icon
8+
{
9+
public function svg(): string
10+
{
11+
return '<i class="fa-solid fa-bicycle"></i>';
12+
}
13+
}

app/Icons/FontAwesome/Bolt.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Icons\FontAwesome;
4+
5+
use WireElements\Pro\Icons\Icon;
6+
7+
class Bolt extends Icon
8+
{
9+
public function svg(): string
10+
{
11+
return '<i class="fa-solid fa-bolt"></i>';
12+
}
13+
}

app/Icons/FontAwesome/Bookmark.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Icons\FontAwesome;
4+
5+
use WireElements\Pro\Icons\Icon;
6+
7+
class Bookmark extends Icon
8+
{
9+
public function svg(): string
10+
{
11+
return '<i class="fa-solid fa-bookmark"></i>';
12+
}
13+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Icons\FontAwesome;
4+
5+
use WireElements\Pro\Icons\Icon;
6+
7+
class BoxArchive extends Icon
8+
{
9+
public function svg(): string
10+
{
11+
return '<i class="fa-solid fa-box-archive"></i>';
12+
}
13+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Icons\FontAwesome;
4+
5+
use WireElements\Pro\Icons\Icon;
6+
7+
class BuildingColumns extends Icon
8+
{
9+
public function svg(): string
10+
{
11+
return '<i class="fa-solid fa-building-columns"></i>';
12+
}
13+
}

0 commit comments

Comments
 (0)