// FIXME: Update this file to be type safe and remove this and next line // @ts-strict-ignore import { Component, booleanAttribute, input } from "@angular/core"; import { MappedOptionComponent } from "./option"; @Component({ selector: "bit-option", template: ``, }) export class OptionComponent implements MappedOptionComponent { readonly icon = input(); readonly value = input.required(); readonly label = input.required(); readonly disabled = input(undefined, { transform: booleanAttribute }); }