@use 'iro-sass/src/index' as iro; @use '../functions' as fn; @include iro.props-namespace('status-indicator') { @include iro.props-store(( --dims: ( --size: iro.fn-px-to-rem(10px), ), ), 'dims'); @include iro.props-store(( --colors: ( --default: fn.global-color(--obj-lo), --green: fn.global-color(--green --bg-hi), --yellow: fn.global-color(--yellow --bg-hi), --red: fn.global-color(--red --bg-hi), ), ), 'colors'); @include iro.bem-object(iro.props-namespace()) { display: inline-block; width: fn.dim(--size); height: fn.dim(--size); border-radius: fn.dim(--size); background-color: fn.color(--default); @each $color in 'green' 'yellow' 'red' { @include iro.bem-is($color) { background-color: fn.color(--#{$color}); } } } }