// Outputs text-indent property

@mixin u-text-indent($value…) {

$important: null;
@if has-important($value) {
  $value: remove($value, "!important");
  $important: " !important";
}
text-indent: get-uswds-value("text-indent", $value...) #{$important};

}