22 lines
816 B
HTML
22 lines
816 B
HTML
<div class="{% if class %}{{ class }}{% endif %}">
|
|
<div class="overflow-hidden relative px-2 py-1 text-sm">
|
|
{% if value %}
|
|
<div class="absolute bottom-0 left-0 rounded-default top-0 bg-primary-100 z-10 dark:bg-primary-500/20" style="width: {{ value }}%"></div>
|
|
{% endif %}
|
|
|
|
<div class="flex flex-row relative z-20">
|
|
{% if title %}
|
|
<h3 class="text-font-default-light dark:text-font-default-dark text-sm">
|
|
{{ title }}
|
|
</h3>
|
|
{% endif %}
|
|
|
|
{% if description %}
|
|
<strong class="font-semibold text-font-important-light ml-auto dark:text-font-important-dark">
|
|
{{ description }}
|
|
</strong>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|