/// import type { PublicLitElement as LitElement } from "@arcgis/lumina"; export abstract class SolutionItemIcon extends LitElement { /** * The design type (human-readable, alternative to type + typeKeywords) * * @default '' */ accessor designType: string; /** * Indicate if this is portal * * @default false */ accessor isPortal: boolean; /** * The type for the item * * @default '' */ accessor type: string; /** The typeKeywords for the item */ accessor typeKeywords: string[]; }