Files
LifeTrinket/src/Icons/generated/PartnerTax.tsx
Viktor Rådberg 7e0175aeed config vite
2023-08-26 13:23:30 +02:00

35 lines
1.8 KiB
TypeScript

import PropTypes from "prop-types";
import { SVGProps } from "react";
interface SVGRProps {
title?: string;
titleId?: string;
size?: string;
}
const PartnerTax = ({
title,
titleId,
...props
}: SVGProps<SVGSVGElement> & SVGRProps) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
paintOrder="stroke fill markers"
viewBox="0 -50 380 390"
height={props.size || 16}
width={props.size || 16}
aria-labelledby={titleId}
{...props}
>
{title ? <title id={titleId}>{title}</title> : null}
<path d="M144.5 18.6c-1.1.3-4.7.9-8 1.5s-10 3.1-15 5.5C101.9 35.1 87.3 53 82 73.6c-2.7 10.5-2.7 26.3 0 36.8 6.3 24.6 25.9 45 50.5 52.5 10.3 3.1 29.3 3.5 39.5.8 25.3-6.7 46.5-28 53.1-53.4 2.7-10.5 2.7-26 0-36.4-8.4-32.9-39.1-56.4-72.5-55.8-3.3.1-7 .3-8.1.5z" />
<path d="M215.8 24.7c-1.6.2-2.8.8-2.8 1.2 0 .4 2.1 2.7 4.6 5.1 13.3 13 21.9 31 24.4 51.4 1.6 12.1.8 22.8-2.5 34.1-4.3 14.9-10.7 25.8-21.3 36.7-3.6 3.7-6.3 7-6 7.3.3.4 4.6.9 9.5 1.2 12.2.8 23.1-1.5 35.2-7.4 7.8-3.7 10.9-5.9 17.7-12.7 6.8-6.8 9-9.9 12.7-17.7 5-10.2 7.7-21.2 7.7-30.9s-2.7-20.7-7.7-30.9c-3.7-7.8-5.9-10.9-12.7-17.7-6.8-6.8-9.9-9-17.7-12.7-13.4-6.5-28-9-41.1-7zM125.5 185.5c-16.4 1.8-28.5 4-45 8-38.4 9.4-55 18.1-66 34.5-15.9 23.6-19.2 70.9-6.7 96l2.7 5.5 143.1.3 143.2.2 2.2-3.7c6-10.1 9.3-26 9.3-44.3 0-22.2-4.8-40.8-14-54.3-10.6-15.6-28-24.7-64.6-33.6-37.9-9.3-71.8-12.1-104.2-8.6z" />
<path d="M272.1 193.5c8.2 3 21 9.7 26.7 14 15.4 11.6 25.2 31.4 28.7 58 3 23 .9 44.7-6.2 63.1-.4 1.2 3.3 1.4 22 1.4h22.6l3-6.3c11.6-23.7 10.1-65.1-3.1-88.7-4.6-8.1-15.2-17.9-24.5-22.7-12.7-6.6-34.2-13.3-56.6-17.8-14-2.7-18.2-3.1-12.6-1z" />
</svg>
);
};
PartnerTax.propTypes = {
title: PropTypes.string,
};
export default PartnerTax;