Add custom HTML Elements for icons/SVG loading

This commit is contained in:
Oliver-Akins 2025-07-13 21:49:01 -06:00
parent 0fcf24bfcb
commit 361ddfb7b6
7 changed files with 255 additions and 0 deletions

View file

@ -0,0 +1,22 @@
:host {
display: inline-block;
}
div {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
svg {
fill: var(--fill);
stroke: var(--stroke);
}
path {
stroke: var(--stroke);
stroke-width: var(--stroke-width);
stroke-linejoin: var(--stroke-linejoin);
}