1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00
Files
browser/libs/components/src/select/option.ts
Victoria League 08a6f91411 [CL-221] Add chip-select component (#9021)
---------

Co-authored-by: William Martin <contact@willmartian.com>
2024-05-23 16:30:55 -04:00

7 lines
107 B
TypeScript

export interface Option<T> {
icon?: string;
value: T | null;
label?: string;
disabled?: boolean;
}