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

export const IconStar24 = 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}
                    fillRule="evenodd"
                    d="M11.99 1c.285 0 .548.163.674.418l2.993 6.064 6.692.979c.281.042.518.24.606.51.087.271.012.57-.19.77l-4.843 4.717 1.143 6.665a.75.75 0 0 1-.299.733.75.75 0 0 1-.79.058l-5.985-3.148-5.986 3.148a.752.752 0 0 1-1.088-.791l1.143-6.665L1.217 9.74a.75.75 0 0 1 .415-1.28l6.694-.978 2.993-6.064A.75.75 0 0 1 11.99 1M9.498 8.5a.76.76 0 0 1-.565.41l-5.58.816 4.037 3.933a.75.75 0 0 1 .216.664l-.952 5.556 4.99-2.625a.76.76 0 0 1 .697 0l4.99 2.625-.953-5.556a.75.75 0 0 1 .215-.664l4.038-3.933-5.58-.816a.75.75 0 0 1-.564-.41L11.99 3.444z"
                    clipRule="evenodd"
                />
            </svg>
        );
    }
);
