import { SVGAttributes } from "react";

export default function FooterDivider(props: SVGAttributes<SVGElement>) {
    return (
        <svg
            {...props}
            xmlns="http://www.w3.org/2000/svg"
            width="1140"
            height="168"
            fill="none"
            viewBox="0 0 1140 168"
        >
            <path
                stroke="#fff"
                strokeDasharray="12 12"
                strokeLinecap="round"
                strokeLinejoin="round"
                strokeWidth="3"
                d="M12 164c69-43.001 261.885 4.934 339 1 98-5 286-35 314-51 45-25.714 2-84-14-93-43.831-24.654-116-26-160 0"
            ></path>
            <path
                stroke="#fff"
                strokeDasharray="12 12"
                strokeLinecap="round"
                strokeLinejoin="round"
                strokeWidth="3"
                d="M1129.94 164c-69-43.001-261.887 4.934-339.002 1-98-5-286-35-314-51-45-25.714-2-84 14-93"
            ></path>
        </svg>
    );
}
