John Cowen 5ab7e48862
ui: Native CSS Icon Composition (#12461)
This commit/PR beings to move away from using CSS preprocessing for our icons and towards using native CSS via native CSS property composition
2022-03-15 12:54:14 +00:00

13 lines
276 B
SCSS

%progress-indeterminate {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
--icon-size: icon-700; /* 24px */
--icon-name: var(--icon-loading);
--icon-color: rgb(var(--tone-gray-500));
}
%progress-indeterminate::before {
content: '';
}