import type { SVGProps } from "react"; interface AgentNativeIconProps extends Omit, "fill"> { /** * Pixel size for the icon. Mirrors the Tabler icons API so this can be a * drop-in replacement for `` etc. If you want * className-driven sizing instead (e.g. `w-4 h-4`), omit `size` — the SVG * will fill its container based on the className. */ size?: number | string; } /** * Monochrome agent-native "A" mark. Source paths are taken from the Tauri * menu-bar icon at `packages/core/src/assets/branding/tray-icon.svg`, with the * padded tray viewBox cropped for toolbar use and `fill="white"` swapped for * `fill="currentColor"` so the icon inherits the surrounding text color. */ export function AgentNativeIcon({ size = 24, className, ...rest }: AgentNativeIconProps) { return ( ); }