import { IconProp } from "@fortawesome/fontawesome-svg-core"; import { IconInterface } from "../icon/Icon"; export interface SidebarButton { id: string; icon: IconInterface | IconProp; to: string; label: string; type?: 'link' | 'button'; }