<svg class="icon " role="img">
<title>Angle down icon</title>
<use href="/images/icons-sprite.svg#angle-down"></use>
</svg>
<svg
class="icon {{ class }}"
{{{ attributes }}}
{{#if hidden }}
role="presentation"
focusable="false"
{{else}}
role="img"
{{/if}}
>
{{#if title }}
<title>{{ title }}</title>
{{/if}}
<use href="{{ svg id }}"></use>
</svg>
{
"id": "angle-down",
"title": "Angle down icon"
}
$icon__transition: $transition-base !default;
.icon {
display: block;
width: $icon-size;
height: $icon-size;
padding: $icon-padding ;
transition: $icon__transition;
pointer-events: none;
}
No notes defined.