@avaya/neo-icons
Version:
Avaya NEO Icon Library
21 lines (19 loc) • 310 B
text/typescript
export type IconCategory =
| "navigation"
| "action"
| "account"
| "status"
| "communication"
| "alert"
| "content"
| "other"
| "editor"
| "file"
| "weather"
| "social";
export interface Icon {
name: string;
bidirectional: boolean;
category: IconCategory;
animated: boolean;
}