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

export const IconBellOff16 = 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="M9.103 12.872a.75.75 0 0 1 1.295.756A2.77 2.77 0 0 1 8 15a2.77 2.77 0 0 1-2.397-1.372.75.75 0 0 1 1.294-.756c.22.375.63.628 1.103.628s.883-.253 1.103-.628M1.22 1.22a.75.75 0 0 1 1.06 0l12.5 12.5a.75.75 0 1 1-1.06 1.06L10.94 12H1.75a.75.75 0 0 1 0-1.5c.462 0 1.25-.386 1.25-1.72V6.405c0-.691.119-1.37.344-2L1.22 2.28a.75.75 0 0 1 0-1.06m3.347 4.408a4.5 4.5 0 0 0-.067.777V8.78c0 .677-.145 1.252-.387 1.72H9.44zM8 1c3.093 0 5 2.666 5 5.405v1.78a.75.75 0 0 1-1.5 0v-1.78C11.5 4.276 10.062 2.5 8 2.5c-.546 0-1.033.12-1.457.325a.75.75 0 1 1-.655-1.348A4.8 4.8 0 0 1 8 1"
                />
            </svg>
        );
    }
);
