18 lines
244 B
CSS
18 lines
244 B
CSS
:host {
|
|
display: inline-block;
|
|
}
|
|
|
|
div {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
svg {
|
|
width: var(--size, 1rem);
|
|
height: var(--size, 1rem);
|
|
fill: var(--fill);
|
|
stroke: var(--stroke);
|
|
}
|