import { SVGAttributes } from "react";

export default function Sulfur(props: SVGAttributes<SVGElement>) {
    return (
        <svg
            {...props}
            xmlns="http://www.w3.org/2000/svg"
            width="31"
            height="40"
            fill="none"
            viewBox="0 0 31 40"
        >
            <path
                stroke="#000"
                strokeLinecap="round"
                strokeWidth="1.95"
                d="M10.529 1.312h10.398M12.609 16.02V1.31h6.238v14.557l10.49 16.483a4.16 4.16 0 01-3.51 6.392H5.656a4.159 4.159 0 01-3.502-6.402l10.455-16.32zm-6.55 10.245H25.5l3.86 6.093a4.159 4.159 0 01-3.514 6.384H5.662a4.159 4.159 0 01-3.5-6.405l3.896-6.072z"
            ></path>
        </svg>
    );
}
