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

export const IconConsulColor24 = 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}
                <g fill="#e03875">
                    <path d="M12.009 23a11 11 0 1 1 7.442-19.092l-2.61 2.73a7.229 7.229 0 1 0 0 10.73l2.61 2.73A10.97 10.97 0 0 1 12.009 23M20.86 17.498a.901.901 0 1 1 0-1.802.901.901 0 0 1 0 1.802" />
                    <path d="M11.939 14.384a2.383 2.383 0 1 1-.02-4.767 2.383 2.383 0 0 1 .02 4.766M21.895 14.426a.902.902 0 1 1 0-1.804.902.902 0 0 1 0 1.804M19.214 14.313a.901.901 0 1 1 0-1.803.901.901 0 0 1 0 1.803M21.895 11.388a.901.901 0 1 1 0-1.803.901.901 0 0 1 0 1.802M19.214 11.49a.902.902 0 1 1 0-1.803.902.902 0 0 1 0 1.803M20.913 8.355a.901.901 0 1 1-.005-1.802.901.901 0 0 1 .005 1.802" />
                </g>
            </svg>
        );
    }
);
