mardiros/fastlife

View on GitHub
src/fastlife/components/icons/outline/MinusSmall.jinja

Summary

Maintainability
Test Coverage
{# def
    id: Annotated[str | "unique identifier of the element."] = None,
    title: Annotated[str | None, "title element of the svg"] = None,
    class_: Annotated[str | None, "css classapplide to the svg element"] = None,
#}
<svg xmlns="http://www.w3.org/2000/svg" fill="none" {% if id %}id="{{id}}" {%endif%}class="{{attrs.class or ''}}" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true">
  <path stroke-linecap="round" stroke-linejoin="round" d="M18 12H6">{% if title %}<title>{{title}}</title>{% endif %}</path>
</svg>