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