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

export const IconSync24 = 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="M21.25 11.25A.75.75 0 0 1 22 12c0 5.523-4.477 10-10 10a9.98 9.98 0 0 1-7.5-3.386v2.636a.75.75 0 0 1-1.5 0v-4.5a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5H5.519A8.5 8.5 0 0 0 20.5 12a.75.75 0 0 1 .75-.75m-1-9.25a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1 0-1.5h2.731A8.5 8.5 0 0 0 3.5 12 .75.75 0 0 1 2 12C2 6.477 6.477 2 12 2a9.98 9.98 0 0 1 7.5 3.386V2.75a.75.75 0 0 1 .75-.75"
                />
            </svg>
        );
    }
);
