import { FC } from 'react';

interface IconNotAnswerProps {
    className?: string;
    fill?: boolean;
    duotone?: boolean;
}

const IconNotAnswer: FC<IconNotAnswerProps> = ({ className, fill = false, duotone = true }) => {
    return (
        <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" className={className}>
            {/* Icon from Solar by 480 Design - https://creativecommons.org/licenses/by/4.0/ */}
            <path fill="currentColor" d="M8 12.862h-.75zm0 .616h.75zM6.58 15.33l-.211-.72zm-2 .587l-.211-.72zM2 14.064h.75zm0-1.923h.75zm.44-1.352l-.577-.479zM12 7v.75zm9.37 2.856l.5-.56zM16 13.25h-.75zm1.7 1.912l-.108.743zm2 .294l.11-.742zm2.3-1.913h-.75zm0-2.125h.75zm-10-.022v-.75zm-4.75 1.466v.616h1.5v-.616zm-.881 1.748l-2 .586l.422 1.44l2-.587zm-3.619-.546v-1.923h-1.5v1.923zm.268-2.797C3.902 10.201 6.513 7.75 12 7.75v-1.5c-6.01 0-9.021 2.714-10.137 4.06zM12 7.75c5.233 0 7.865 1.767 8.87 2.665l1-1.118C20.594 8.157 17.609 6.25 12 6.25zm3.25 5.112v.388h1.5v-.388zm2.342 3.043l2 .293l.217-1.485l-2-.293zm5.158-2.362v-2.125h-1.5v2.125zM16 12.862c.75 0 .75-.001.75-.002v-.016l-.004-.067a1.5 1.5 0 0 0-.126-.455a2.06 2.06 0 0 0-.677-.798c-.686-.503-1.874-.878-3.943-.878v1.5c1.93 0 2.743.358 3.057.588c.149.11.19.192.198.21q.006.016.001-.002a.3.3 0 0 1-.006-.065v-.013c0-.001 0-.002.75-.002m-4-2.216c-2.07 0-3.257.375-3.943.878c-.351.257-.56.54-.677.798a1.5 1.5 0 0 0-.126.455l-.004.067v.016s0 .002.75.002s.75 0 .75.002v.006l-.006.072q-.005.018.001.001a.6.6 0 0 1 .198-.209c.314-.23 1.126-.588 3.057-.588zm7.592 5.552c1.634.24 3.158-.985 3.158-2.655h-1.5c0 .698-.655 1.286-1.44 1.17zm1.279-5.783c.242.217.379.563.379 1.003h1.5c0-.733-.23-1.542-.88-2.121zM2.75 12.141c0-.367.093-.662.268-.874l-1.155-.957c-.457.552-.613 1.22-.613 1.831zm12.5 1.109c0 1.347 1.014 2.46 2.342 2.655l.217-1.485c-.628-.092-1.059-.604-1.059-1.17zM4.37 15.196c-.838.245-1.62-.368-1.62-1.132h-1.5c0 1.833 1.81 3.079 3.54 2.571zm2.88-1.718c0 .505-.343.974-.881 1.132l.422 1.44c1.149-.338 1.959-1.372 1.959-2.572z" />
        </svg>
    );
};

export default IconNotAnswer;

