import { FC } from "react";

interface IconPackageProps {
    className?: string;
}

const IconPackage: FC<IconPackageProps> = ({ className }) => {
    return (
        <svg
            width="20"
            height="20"
            viewBox="0 0 24 24"
            fill="none"
            xmlns="http://www.w3.org/2000/svg"
            className={className}
        >
            {/* Box outline */}
            <path
                d="M21 8L12 3L3 8L12 13L21 8Z"
                stroke="currentColor"
                strokeWidth="1.5"
                strokeLinejoin="round"
            />

            <path
                d="M3 8V16L12 21L21 16V8"
                stroke="currentColor"
                strokeWidth="1.5"
                strokeLinejoin="round"
            />

            <path
                d="M12 13V21"
                stroke="currentColor"
                strokeWidth="1.5"
                strokeLinecap="round"
            />

            {/* small check mark (verified style) */}
            <path
                d="M9.5 9.5L11 11L14 8"
                stroke="currentColor"
                strokeWidth="1.5"
                strokeLinecap="round"
                strokeLinejoin="round"
            />
        </svg>
    );
};

export default IconPackage;