export interface IconNode extends BaseNode {
  type: "icon";
  pathType: "root" | "relative";
  path: string;
}