-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from sensasi-delight:sensasi-delight/issue36
Refactor IconButton auto init bug
- Loading branch information
Showing
10 changed files
with
520 additions
and
512 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
namespace MaterialBlade\Components\Button\Properties; | ||
|
||
use MaterialBlade\Traits\PropertyEnum; | ||
|
||
enum Variant: string | ||
{ | ||
use PropertyEnum; | ||
|
||
case RAISED = 'raised'; | ||
case OUTLINED = 'outlined'; | ||
case UNELEVATED = 'unelevated'; | ||
case TEXT = 'text'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace MaterialBlade\Components\FAB\Properties; | ||
|
||
use MaterialBlade\Traits\PropertyEnum; | ||
|
||
enum Variant: string | ||
{ | ||
use PropertyEnum; | ||
|
||
case REGULAR = 'regular'; | ||
case MINI = 'mini'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.