interface ChevronLeftProps { width?: number; height?: number; active?: boolean; } export function ChevronLeft({ width = 20, height = 20, active, }: ChevronLeftProps) { return ( ); }