I'm trying to get suggestions for values to pass to an input property. I want to be able to pass in primary-btn small or large secondary-btn basically any variation. But i want to get the suggestion after tapping a spacebar so I see the next potential value that can be passed.
What I have below only allows either of the strings. Please how can achieve what I want
@Input() customClass: 'primary-btn'|'secondary-btn'|'small'|'large';
<button [ngClass]="customClass"></button>