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

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

const IconChevronRight = ({ 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="9 18 15 12 9 6" />
        </svg>
    );
};

export default IconChevronRight;
