BRA icons
Sizing
Colors
Material Symbols by Google
Full icon set: Material Design Icons
Sizing
Colors
Instruction how to add icons in SVG format
In order for a SVG file to display in correct size and color it has to meet 3 requirements:
- svg element has to have an id="icon" defined like this:
<svg id="icon"
- svg element should have width and height removed:
<svg width="24" height="24"
- paths should have defined
fill="currentColor"
Example:
<svg id="icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5.62 11.2"><path
fill="currentColor" d="M2.23,2.81H4.85L5.62,0H3M0,11.2H2.59l1.61-6H1.61Z"/></svg>
Instruction how to add icons from iconify
- Find an icon on Iconify page
- Select an icon and choose the folowing options:
- Size: No size
- Color: currentColor
- Format: SVG
- Click "Download"
- Open the downloaded .svg file in text editor and add
id="icon" in the beggining of svg element like this: <svg id="icon"
- Upload .svg file to umbraco media folder