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

export const IconSync16 = 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={16}
                height={16}
                fill="none"
                viewBox="0 0 16 16"
                aria-hidden={!title}
                ref={svgRef}
                aria-labelledby={titleId}
                {...props}
            >
                {title ? <title id={titleId}>{title}</title> : null}
                <path
                    fill={color}
                    d="M15.25 7.25A.75.75 0 0 1 16 8a8 8 0 0 1-13.5 5.81v.94a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 0 1.5H3.31A6.5 6.5 0 0 0 14.5 8a.75.75 0 0 1 .75-.75M8 0c2.13 0 4.067.833 5.5 2.19v-.94a.75.75 0 0 1 1.5 0v3a.75.75 0 0 1-.75.75h-3a.75.75 0 0 1 0-1.5h1.44A6.5 6.5 0 0 0 1.5 8 .75.75 0 0 1 0 8a8 8 0 0 1 8-8"
                />
            </svg>
        );
    }
);
