You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.4 KiB
HTML
26 lines
1.4 KiB
HTML
{% import "icon_macros_dep.html" as id %}
|
|
|
|
{% macro caret_down(color="black", size="24px") %}
|
|
<svg aria-hidden="true" {{id::printsize(size=size)}} viewBox="0 0 24 24" fill="{{color}}" >
|
|
<path d="M6.1018 8C5.02785 8 4.45387 9.2649 5.16108 10.0731L10.6829 16.3838C11.3801 17.1806 12.6197 17.1806 13.3169 16.3838L18.8388 10.0731C19.5459 9.2649 18.972 8 17.898 8H6.1018Z"/>
|
|
</svg>
|
|
{% endmacro %}
|
|
|
|
{% macro user(color="black", size="24px") %}
|
|
<svg aria-hidden="true" {{id::printsize(size=size)}} viewBox="0 0 258.75 258.75">
|
|
<g fill="{{color}}">
|
|
<circle cx="129.375" cy="60" r="60"/>
|
|
<path d="M129.375,150c-60.061,0-108.75,48.689-108.75,108.75h217.5C238.125,198.689,189.436,150,129.375,150z"/>
|
|
</g>
|
|
</svg>
|
|
{% endmacro %}
|
|
|
|
{% macro clock(color="black", size="24px") %}
|
|
<svg aria-hidden="true" {{id::printsize(size=size)}} viewBox="0 0 24 24"><defs><path id="a" d="M0 0h24v24H0V0z"></path></defs><clipPath id="b"><use xlink:href="#a" overflow="visible"></use></clipPath><path clip-path="url(#b)" d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm4.2 14.2L11 13V7h1.5v5.2l4.5 2.7-.8 1.3z"></path></svg>
|
|
{% endmacro %}
|
|
|
|
|
|
{% macro folder(color="black", size="24px") %}
|
|
<svg aria-hidden="true" {{id::printsize(size=size)}} viewBox="0 0 24 24"><path d="M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z"></path><path d="M0 0h24v24H0z" fill="none"></path></svg>
|
|
{% endmacro %}
|