![]() |
| Popular UI SVG Icon |
SVG icons have several advantages, including scalability, SEO friendly, editability and independent resolution. Therefore, the future of SVG looks bright and the trend of SVG usage will continue to grow.
You must visit the website Iconer. There you can select different types of SVG icons, which will be coded for use.
Select one of the available icon menus, for example, select the icon menu from Feather Icons.
Click Open in App.
In the Right sidebar set the option value to Stroke Width becomes 1.
Search for the SVG icon according to your needs, then click the SVG icon and the code will be copied automatically. Example like the Download icon code below.
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1" viewBox= "0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path>
<path d="m7 10 5 5 5-5"></path>
<path d="M12 15V3"></path>
</svg>Copy
path part, for example like below.
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path>
<path d="m7 10 5 5 5-5"></path>
<path d="M12 15V3"></path>Copy
Follow these steps.
Go to Blogger Dashboard > select Layout.
menuFind the section titled Popular UI PANEL.
Click the edit button (pencil icon) in Custom SVG Icons (Gadget List).
Widget configuration pop up will appear.
In the Title column leave default.
In the column Number of items to appear in the list leave blank.
In column Sort leave default.
In the Text List section, click the ADD NEW ITEM button.
In the Text column, fill in the format like the example below.
<symbol id='Download' viewbox='0 0 24 24'>
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path>
<path d="m7 10 5 5 5-5"></path>
<path d="M12 15V3"></path>
</symbol>Copy
id='Download' section replace the text Download with the name Label.path replace with the path code taken from previous step.If already configured click the SAVE button on the right.
When everything is configured, click the SAVE button below.