7 lines
91 B
TypeScript
7 lines
91 B
TypeScript
type SelectItem = {
|
|
label: string
|
|
value: string
|
|
icon?: string
|
|
disabled?: boolean
|
|
}
|