Skip to content

Latest commit

 

History

History
39 lines (34 loc) · 955 Bytes

README.md

File metadata and controls

39 lines (34 loc) · 955 Bytes

International Specification for Control Descriptions in svg format.

Use

Include an icon sprite set on your project with the following markup:

<svg
  width="24"
  height="24"
  fill="none"
  stroke="currentColor"
  stroke-width="2"
  stroke-linecap="round"
  stroke-linejoin="round"
>
  <use xlink:href="path/to/icons/ioficons-sprite.svg#spur"/>
</svg>

Note: the #spur in example above you may change to current icon name. Please be patient to fill existing real icon name. Complete list check on ioficon.osportup.com.

Example above can simplyfied by single css class for all icons from the set and super simple svg link like this:

.ioficons {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
<svg class="ioficons">
  <use xlink:href="path/to/icons/ioficon-sprite.svg#spur"/>
</svg>