Variant selectorPick a variant (pills or colours). Preview Code ⧉ Copy XS S M L XL import { BuiVariantSelector } from 'ng-blatui'; <bui-variant-selector [(value)]="size" [options]="['S','M','L']" />With disabled options Preview Code ⧉ Copy XS S M L XL <bui-variant-selector [value]="'M'" [options]="['XS','S','M','L']" [disabled]="true" />Colors Preview Code ⧉ Copy<!-- type="color" renders swatches from option.color --> <bui-variant-selector [(value)]="colour" type="color" label="Colour" [options]="[{ value: 'black', label: 'Black', color: '#18181b' }, { value: 'blue', label: 'Blue', color: '#2563eb' }]" />