/** * TorukIcon – the TORUK brand bird-wing logo as an inline SVG. * The base shape is ALWAYS fixed; only `color` is dynamic (driven by theme). * This is the icon that appears on the bubble button, title bar, etc. */ type TorukIconProps = { /** Icon fill color – driven by theme.button.iconColor */ color?: string; /** Rendered width: number (px) or string (e.g. "100%" for responsive containers). */ width?: number | string; }; export declare const TorukIcon: (props: TorukIconProps) => import("solid-js").JSX.Element; export {};