import { forwardRef, useMemo } from 'react';
import { IconProps } from './types';

export const IconVolumeX24 = forwardRef<SVGSVGElement, IconProps>(
    ({ color = 'currentColor', title, ...props }, svgRef) => {
        const titleId = useMemo(
            () =>
                title
                    ? 'title-' + Math.random().toString(36).substr(2, 9)
                    : undefined,
            [title]
        );
        return (
            <svg
                xmlns="http://www.w3.org/2000/svg"
                width={24}
                height={24}
                fill="none"
                viewBox="0 0 24 24"
                aria-hidden={!title}
                ref={svgRef}
                aria-labelledby={titleId}
                {...props}
            >
                {title ? <title id={titleId}>{title}</title> : null}
                <path
                    fill={color}
                    d="M9.047 4.805c1.115-1.056 2.952-.265 2.953 1.27v11.85c0 1.536-1.838 2.327-2.953 1.271l-3.3-3.127A.25.25 0 0 0 5.573 16H2.75A1.75 1.75 0 0 1 1 14.25v-4.5C1 8.784 1.784 8 2.75 8h2.824a.25.25 0 0 0 .172-.068zm1.453 1.27a.25.25 0 0 0-.422-.181l-3.3 3.127c-.326.307-.756.479-1.204.479H2.75a.25.25 0 0 0-.25.25v4.5c0 .138.112.25.25.25h2.824c.448 0 .878.173 1.203.48l3.301 3.127a.25.25 0 0 0 .422-.181zm11.22 2.146a.75.75 0 0 1 1.06 1.06l-2.72 2.72 2.72 2.72a.75.75 0 0 1-1.06 1.06L19 13.061l-2.72 2.72a.75.75 0 0 1-1.06-1.06L17.94 12l-2.72-2.72a.75.75 0 0 1 1.06-1.06L19 10.94z"
                />
            </svg>
        );
    }
);
