@use "sass:list";
@use "../../functions" as *;

// Outputs text-align property

@mixin u-text-align($value...) {
  $value: unpack($value);
  $important: null;
  @if has-important($value) {
    $value: remove($value, "!important");
    @if list.length($value) == 1 {
      $value: de-list($value);
    }
    $important: " !important";
  }
  text-align: get-uswds-value("text-align", $value...) #{$important};
}
