implement platform icons
All checks were successful
Django CI/CD / test (push) Successful in 1m1s
Django CI/CD / build-and-push (push) Has been skipped

This commit is contained in:
2024-09-14 06:42:34 +02:00
parent 698c8966c0
commit 649351efde
20 changed files with 125 additions and 8 deletions

View File

@ -0,0 +1,12 @@
<c-vars fill="currentColor" viewbox="0 0 48 48" />
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="{{ viewbox }}" {% if not class %}class="text-black dark:text-white w-4 h-4"{% endif %} {{ attrs }}>
{% if path %}
<path fill="{{ fill }}" d="{{ path }}">
{% if title %}<title>{{ title }}</title>{% endif %}
</path>
{% elif slot %}
{{ slot }}
{% else %}
No SVG data specified
{% endif %}
</svg>