/** The route-destination marks — one per navigable Studio route, plus the
* plugin-provenance mark for plugin-contributed navigation. */
import { Icon, type IconComponent } from './icon-frame';
/** Observability: a dial gauge — arc, base and needle. */
export const DashboardIcon: IconComponent = (props) => (
);
/** Tools: an open-ended spanner over its handle. */
export const ToolsIcon: IconComponent = (props) => (
);
/** Agents: a bot — antenna, panel head with eyes and mouth, side ports. */
export const AgentsIcon: IconComponent = (props) => (
);
/** Presets: three sliders, each with its knob at a different stop. */
export const PresetsIcon: IconComponent = (props) => (
);
/** Extensions: a jigsaw piece — knob above, socket to the right. */
export const ExtensionsIcon: IconComponent = (props) => (
);
/** Templates: a stack of two sheets, the front one offset. */
export const TemplatesIcon: IconComponent = (props) => (
);
/** Connectors: a two-pin power plug on its lead. */
export const ConnectorsIcon: IconComponent = (props) => (
);
/** Hooks: a webhook fan-out — one source branching to two subscribers. */
export const HooksIcon: IconComponent = (props) => (
);
/** Storage: a database cylinder with two shelves. */
export const StorageIcon: IconComponent = (props) => (
);
/** States: a stacked-disk cylinder — one document store per subject. */
export const DatabaseIcon: IconComponent = (props) => (
);
/** Scheduling: a calendar grid with its binding posts. */
export const SchedulingIcon: IconComponent = (props) => (
);
/** Interactions: two overlapping speech bubbles — a conversation. */
export const InteractionsIcon: IconComponent = (props) => (
);
/** Notifications: a bell with its clapper. */
export const NotificationsIcon: IconComponent = (props) => (
);
/** Conversations: one speech bubble holding transcript lines. */
export const ConversationsIcon: IconComponent = (props) => (
);
/** Marketplace: a shopping bag. */
export const MarketplaceIcon: IconComponent = (props) => (
);
/** Manifest: a document with a folded corner and its entries. */
export const ManifestIcon: IconComponent = (props) => (
);
/** Settings: an eight-tooth cog around its bore. */
export const SettingsIcon: IconComponent = (props) => (
);
/** System: a processor die with its pins. */
export const SystemIcon: IconComponent = (props) => (
);
/** Served endpoints: a broadcast node radiating to the tools it serves. */
export const ServedEndpointsIcon: IconComponent = (props) => (
);
/** Plugin: a puzzle piece — the host's provenance mark for plugin-contributed nav. */
export const PluginIcon: IconComponent = (props) => (
);