// src/components/Icon/IconChevronLeft.tsx
import React from 'react';

interface IconProps {
    className?: string;
    onClick?: () => void;
}

const IconChevronLeft = ({ className = "w-5 h-5", onClick }: IconProps) => {
    return (
        <svg
            xmlns="http://www.w3.org/2000/svg"
            viewBox="0 0 24 24"
            fill="none"
            stroke="currentColor"
            strokeWidth="1.5"
            strokeLinecap="round"
            strokeLinejoin="round"
            className={className}
            onClick={onClick}
        >
            <polyline points="15 18 9 12 15 6" />
        </svg>
    );
};

export default IconChevronLeft;
