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