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

export const IconStart24 = 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="M2.75 3a.75.75 0 0 1 .75.75v16.5l-.004.077a.75.75 0 0 1-1.492 0L2 20.25V3.75A.75.75 0 0 1 2.75 3m10.038 2.16a.75.75 0 0 1 1.034 1.074l-.052.057-5.157 4.959H21.25a.75.75 0 0 1 0 1.5H8.613l5.157 4.959.052.057a.75.75 0 0 1-1.034 1.075l-.058-.05-6.5-6.25a.75.75 0 0 1 0-1.082l6.5-6.25z"
                />
            </svg>
        );
    }
);
