import { SVGAttributes } from "react";

export default function Fish(props: SVGAttributes<SVGElement>) {
    return (
        <svg
            {...props}
            xmlns="http://www.w3.org/2000/svg"
            width="42"
            height="32"
            fill="none"
            viewBox="0 0 42 32"
        >
            <path
                stroke="#000"
                strokeLinecap="round"
                strokeWidth="1.95"
                d="M12.12 10.557c9.647-6.018 22.346-3.075 28.363 6.572l-.475.728a20.587 20.587 0 01-4.113 4.438c-8.093 6.49-19.588 5.873-26.943-1.022a7.63 7.63 0 01-7.664 4.844l-.316-.03v-.536c0-3.212 1.407-6.146 3.685-8.154a9.505 9.505 0 01-3.67-6.987l-.015-.534V8.172l.431.017a8.694 8.694 0 017.32 5.018 20.534 20.534 0 013.396-2.65zm11.804 16.246l.274-.014c-1.516 1.51-3.374 2.657-5.49 3.278a12.134 12.134 0 01-4.891.412 23.405 23.405 0 001.792-5.035 20.645 20.645 0 008.315 1.359zm2.03-19.447l.215.324a20.5 20.5 0 00-12.26 1.88 21.952 21.952 0 00-4.68-6.516 12.749 12.749 0 012.605-1.091c5.427-1.594 10.97.736 14.12 5.403z"
                clipRule="evenodd"
            ></path>
        </svg>
    );
}
