import type { SVGProps } from "react"; export interface ScribbleIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } export function ScribbleIcon({ className = "", size = 24, color = "currentColor", ...props }: ScribbleIconProps) { return ( ); }