# important()

{% code title="" lineNumbers="true" %}

```scss
@function important($important: false) {
  @if $important == true {
    $important: ' !important';
  } @else if $important == false {
    $important: '';
  }
  @return #{$important};
}
```

{% endcode %}
