D3vugu-components/icons/l-warning.vugu
David Vogel 114044ba2c Update and add icons
- Add LBell
- Add LBellDisabled
- Add LClock
- Add LEllipsis
- Add LInputField
- Add LQuestionMark
- Update LDelete
- Update LDeliver
- Update LLockClosed
- Update LLockDisabled
- Update LMail
- Update LMailOpened
- Update LWarning
2023-05-25 19:02:25 +02:00

37 lines
1.0 KiB
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.49 6.5l0 4m5.88 5l-11.77 0c-0.35,0 -0.66,-0.17 -0.85,-0.47 -0.19,-0.3 -0.2,-0.65 -0.04,-0.97l5.88 -12.26c0.17,-0.35 0.51,-0.55 0.89,-0.55 0.39,0 0.73,0.21 0.89,0.55l5.88 12.26c0.15,0.32 0.14,0.67 -0.04,0.97 -0.19,0.3 -0.5,0.47 -0.85,0.47z" stroke-width="1" stroke-linejoin="round" stroke-linecap="round" fill="none"/>
<circle class="d3c-icon-fill" cx="7.49" cy="12.5" r="0.5" stroke="none"/>
</svg>
<style>
.d3c-icon {
height: 1em;
}
.d3c-icon-stroke {
stroke: var(--d3c-color-text);
}
.d3c-icon-fill {
fill: var(--d3c-color-text);
}
.d3c-icon-use-color .d3c-icon-stroke {
stroke: var(--d3c-color-background);
}
.d3c-icon-use-color .d3c-icon-fill {
fill: var(--d3c-color-background);
}
</style>
<script type="application/x-go">
import (
"git.d3nexus.de/Dadido3/D3vugu-components/utils"
)
type LWarning struct{
AttrMap vugu.AttrMap
}
</script>