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