@resulbeser1/air-command-ui-components
Version:
UI Components for Air Command System
8 lines (7 loc) • 380 B
TypeScript
export type IconName = "arrow_down" | "arrow_up" | "circle" | "close" | "commertial" | "dark" | "drone" | "edit" | "error" | "fighter_jet" | "invisible" | "light" | "polygon" | "rectangle" | "success" | "trash" | "trash_1" | "unknown_aircraft" | "visible";
export interface IconProps {
name: IconName;
alt?: string;
className?: string;
theme?: "light" | "dark";
}