wix-style-react
Version:
24 lines (18 loc) • 404 B
CSS
/* st-namespace-reference="../../../src/StatusIndicator/StatusIndicator.st.css" */
:import {
-st-from: '../Foundation/stylable/colors.st.css';
-st-named: R10, Y10;
}
.root {
-st-states: status(enum(error, warning));
width: 18px;
height: 18px;
/* Error is the default */
color: value(R10);
}
.root:status(warning) {
color: value(Y10);
}
.root:status(warning) svg {
margin: 1px 0;
}