@use 'sass:math';

[lf-button] {
  // Add some space to icons within buttons
  & > lf-icon {
    &:first-child:not(:only-child) {
      margin-right: math.div($spacer, 4);
    }
    &:last-child:not(:only-child) {
      margin-left: math.div($spacer, 4);
    }
  }
}
