D3vugu-components/icons/l-warning.vugu
David Vogel 079b29a7fd Use em and rem for most sizes
- Removed d3c-size, elements now all scale by em
- Button text is now centered
- Button height is now fixed
2023-05-15 10:22:29 +02:00

21 lines
562 B
Plaintext

<svg viewBox="0 0 16 16" vg-attr='utils.AttributesAppend{AttrMap: c.AttrMap, Classes: "d3c-icon d3-lineicon"}'>
<path class="d3c-icon-stroke" d="M7.5 7.5l0 4m7 4l-14 0 7 -14 7 14z" stroke="black" stroke-width="1" stroke-linejoin="round" stroke-linecap="round" fill="none"/>
<circle class="d3c-icon-fill" cx="7.5" cy="13.5" r="0.5" fill="black"/>
</svg>
<style>
.d3c-icon {
height: 1em;
}
</style>
<script type="application/x-go">
import (
"git.d3nexus.de/Dadido3/D3vugu-components/utils"
)
type LWarning struct{
AttrMap vugu.AttrMap
}
</script>