You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
386 B
33 lines
386 B
.base-icon {
|
|
--icon-size: var(--size, 16px);
|
|
|
|
&--size-xxs {
|
|
--size: 10px;
|
|
}
|
|
|
|
&--size-xs {
|
|
--size: 12px;
|
|
}
|
|
|
|
&--size-sm {
|
|
--size: 16px;
|
|
}
|
|
|
|
&--size-md {
|
|
--size: 20px;
|
|
}
|
|
|
|
&--size-lg {
|
|
--size: 24px;
|
|
}
|
|
|
|
&--size-xl {
|
|
--size: 32px;
|
|
}
|
|
|
|
font-size: var(--icon-size);
|
|
width: 1em;
|
|
height: 1em;
|
|
display: inline-block;
|
|
fill: currentColor;
|
|
}
|
|
|