Skip to content

Commit

Permalink
Uncomment default set
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints committed Jun 27, 2020
1 parent 5e69d60 commit a928be4
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 42 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ We're not accepting requests to build new icon packages ourselves but you can [s
composer require blade-ui-kit/blade-icons
```

After installing the package, publish the configuration and **uncomment** the `default` icon set:
After installing the package, publish the configuration file:

```bash
php artisan vendor:publish --tag=blade-icons
Expand Down
82 changes: 41 additions & 41 deletions config/blade-icons.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,47 +15,47 @@

'sets' => [

// 'default' => [
//
// /*
// |-----------------------------------------------------------------
// | Icons Path
// |-----------------------------------------------------------------
// |
// | Provide the relative path from your app root to your
// | SVG icons directory. Icons are loaded recursively
// | so there's no need to list every sub-directory.
// |
// */
//
// 'path' => 'resources/svg',
//
// /*
// |--------------------------------------------------------------------------
// | Default Prefix
// |--------------------------------------------------------------------------
// |
// | This config option allows you to define a default prefix for
// | your icons. The dash separator will be applied automatically
// to every icon name. It's required and needs to be unique.
// |
// */
//
// 'prefix' => 'icon',
//
// /*
// |--------------------------------------------------------------------------
// | Default Set Class
// |--------------------------------------------------------------------------
// |
// | This config option allows you to define some classes which
// | will be applied to all icons by default within this set.
// |
// */
//
// 'class' => '',
//
// ],
'default' => [

/*
|-----------------------------------------------------------------
| Icons Path
|-----------------------------------------------------------------
|
| Provide the relative path from your app root to your
| SVG icons directory. Icons are loaded recursively
| so there's no need to list every sub-directory.
|
*/

'path' => 'resources/svg',

/*
|--------------------------------------------------------------------------
| Default Prefix
|--------------------------------------------------------------------------
|
| This config option allows you to define a default prefix for
| your icons. The dash separator will be applied automatically
to every icon name. It's required and needs to be unique.
|
*/

'prefix' => 'icon',

/*
|--------------------------------------------------------------------------
| Default Set Class
|--------------------------------------------------------------------------
|
| This config option allows you to define some classes which
| will be applied to all icons by default within this set.
|
*/

'class' => '',

],

],

Expand Down

0 comments on commit a928be4

Please sign in to comment.