14 lines
2.5 KiB
TypeScript
14 lines
2.5 KiB
TypeScript
|
|
import {SVGAttributes} from "react";
|
||
|
|
|
||
|
|
export default function PawsDecoration(props: SVGAttributes<SVGElement>) {
|
||
|
|
return (
|
||
|
|
<svg {...props} viewBox="0 0 400 350" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||
|
|
<g opacity=".35" fill="#8A8A8A">
|
||
|
|
<path d="M31.13 292.304c4.61-1.125 10.243 5.075 13.861 14.559 6.197-8.478 13.57-13.138 17.786-10.724 5.002 2.864 3.664 14.605-2.99 26.224-4.347 7.592-9.889 13.252-14.603 15.464-.742.802-1.6 1.344-2.565 1.58a4.613 4.613 0 0 1-.834.122c-4.887 1.893-14.34-.778-23.41-7.031C7.352 324.9 1.068 314.892 4.34 310.146c2.818-4.089 11.807-2.936 21.291 2.319-1.379-10.479.758-19.005 5.498-20.161ZM228.85 25.324c4.409 1.756 5.406 10.073 2.856 19.899 9.964-3.317 18.673-2.84 20.709 1.57 2.416 5.234-5.48 14.026-17.635 19.637-7.945 3.667-15.742 5.067-20.866 4.137-1.069.223-2.081.168-3.004-.2a4.57 4.57 0 0 1-.75-.384c-5.08-1.29-11.234-8.945-15.001-19.298-4.578-12.581-3.898-24.379 1.519-26.35 4.666-1.698 11.323 4.451 16.005 14.231 4.95-9.339 11.634-15.047 16.167-13.242ZM145.999 243.334c4.29 2.031 4.76 10.394 1.597 20.04 10.153-2.683 18.815-1.658 20.569 2.872 2.081 5.375-6.353 13.652-18.838 18.486-8.159 3.159-16.028 4.065-21.084 2.814-1.081.156-2.088.037-2.987-.388a4.656 4.656 0 0 1-.723-.43c-4.989-1.607-10.649-9.636-13.756-20.206-3.777-12.845-2.355-24.576 3.176-26.202 4.764-1.401 11.02 5.156 15.077 15.212 5.529-9.009 12.559-14.285 16.969-12.198ZM366.871 13.708c4.29 2.03 4.76 10.394 1.597 20.04 10.153-2.683 18.815-1.658 20.569 2.872 2.081 5.375-6.353 13.652-18.838 18.486-8.159 3.16-16.029 4.066-21.085 2.815-1.08.155-2.087.036-2.986-.39a4.602 4.602 0 0 1-.723-.43c-4.989-1.606-10.649-9.635-13.756-20.205-3.776-12.845-2.355-24.576 3.176-26.202 4.764-1.4 11.021 5.156 15.077 15.211 5.529-9.008 12.559-14.284 16.969-12.197ZM247.503 117.591c3.358 3.354.991 11.389-5.23 19.411 10.464.885 18.278 4.761 18.408 9.616.154 5.763-10.571 10.724-23.954 11.082-8.747.234-16.464-1.557-20.805-4.434-1.07-.217-1.978-.668-2.681-1.37a4.496 4.496 0 0 1-.537-.648c-4.159-3.19-6.792-12.653-6.167-23.653.76-13.367 6.041-23.938 11.796-23.611 4.958.282 8.647 8.559 9.089 19.393 8.235-6.627 16.628-9.234 20.081-5.786ZM112.344 139.976c4.68.785 7.412 8.703 6.996 18.846 9.038-5.348 17.652-6.722 20.574-2.842 3.467 4.605-2.392 14.867-13.088 22.92-6.99 5.263-14.315 8.28-19.52 8.454-.998.443-1.999.603-2.979.439a4.566 4.566 0 0 1-.814-.217c-5.238-.187-12.87-6.369-18.74-15.692-7.134-11.33-8.962-23.005-4.084-26.076 4.202-2.646 12.008 1.957 18.65 10.526 2.866-10.173 8.192-17.165 13.005-16.358Z"/>
|
||
|
|
</g>
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
|