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

export const IconSun16 = 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="M8 12.978a.75.75 0 0 1 .75.75V15a.75.75 0 0 1-1.5 0v-1.273a.75.75 0 0 1 .75-.75m-4.577-1.461a.75.75 0 0 1 1.06 1.06l-.904.903a.75.75 0 1 1-1.06-1.06zm8.094 0a.75.75 0 0 1 1.061 0l.903.903a.75.75 0 0 1-1.06 1.06l-.904-.903a.75.75 0 0 1 0-1.06M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8m0 1.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5M2.272 7.25a.75.75 0 0 1 0 1.5H1a.75.75 0 0 1 0-1.5zM15 7.25a.75.75 0 0 1 0 1.5h-1.273a.75.75 0 0 1 0-1.5zM2.519 2.519a.75.75 0 0 1 1.06 0l.904.903a.75.75 0 0 1-1.06 1.06l-.904-.903a.75.75 0 0 1 0-1.06m9.902 0a.75.75 0 0 1 1.06 1.06l-.903.903a.751.751 0 0 1-1.061-1.06zM8 .25a.75.75 0 0 1 .75.75v1.272a.75.75 0 0 1-1.5 0V1A.75.75 0 0 1 8 .25"
                />
            </svg>
        );
    }
);
