Categories: Development

Creating custom Feather icon sizes

Feather icons is a large open-source collection of SVG icons to use on the web. Usage is easy and requires just one file request.

By default, there are no size classes for the icons however implementing one is easy to do.

A CodePen example:

 

To use Feather icons include the following:

<script src="https://unpkg.com/feather-icons"></script>
<script>
feather.replace();
</script>

Feather icon elements with the sizing classes:

<i class="icon-sml" data-feather="wifi"></i>
<i class="icon-med" data-feather="wifi"></i>
<i class="icon-lrg" data-feather="wifi"></i>

The CSS classes:

.icon-sml {
    width: 15px;
    height: 15px;
}

.icon-med {
    width: 25px;
    height: 25px;
}

.icon-lrg {
    width: 35px;
    height: 35px;
}

All this does is define a width and height value in pixels, any of the CSS units will work.

You can also colour the icons by adding a color parameter to the CSS class:

color: #0d6efd;

 

Share

Recent Posts

Kennington reservoir drained drone images

A drained and empty Kennington reservoir images from a drone in early July 2024. The…

2 years ago

Merrimu Reservoir drone images

Merrimu Reservoir from drone. Click images to view larger.

2 years ago

FTP getting array of file details such as size using PHP

Using FTP and PHP to get an array of file details such as size and…

3 years ago

Creating Laravel form requests

Creating and using Laravel form requests to create cleaner code, separation and reusability for your…

3 years ago

Improving the default Laravel login and register views

Improving the default Laravel login and register views in such a simple manner but making…

3 years ago

Laravel validation for checking if value exists in the database

Laravel validation for checking if a field value exists in the database. The validation rule…

3 years ago