How can I hide the [disabled] option if the value of disabled is false?
I want to output only when true.
I need result.
disabled = false
<storybook-button
label="Button"
(onClick)="onClick($event)"
></storybook-button>
disabled = true
<storybook-button
label="Button"
[disabled]="true"
(onClick)="onClick($event)"
></storybook-button>