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