import { IIcon, BladeSizes } from "@omnia/fx-models"; export interface BusinessProfileSettingsSection { /** * The title of the navigation node */ title: string; /** * The icon to use * */ icon: IIcon; /** * The element that will be rendered when selected */ elementToRender: string; /** * This influence the order of the navigation nodes, be nice, use ordering with gap -100, 0, 100, 200 So other extensions etc can inject between */ weight: number; /** * The size of blade * */ bladeSize?: BladeSizes; /** * The key of the blade * */ key?: string; }