trptk/components/icons/QobuzIcon.tsx
2026-02-24 17:14:07 +01:00

54 lines
1.5 KiB
TypeScript

import type { SVGProps } from "react";
export function QobuzIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg
viewBox="0 0 192 192"
fill="none"
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
{...props}
>
<path
stroke="currentColor"
strokeLinecap="round"
strokeWidth={8}
d="M140.672 157.486a76.004 76.004 0 0 1-102.464-12.128 76.001 76.001 0 0 1 107.15-107.15 76.004 76.004 0 0 1 12.128 102.464"
/>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit={15}
strokeWidth={8}
d="M124.807 142.105a54.364 54.364 0 1 1 17.296-17.296"
/>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit={15}
strokeWidth={8}
d="M95.997 117.193c11.705 0 21.193-9.488 21.193-21.193 0-11.704-9.488-21.193-21.193-21.193-11.704 0-21.193 9.489-21.193 21.193 0 11.705 9.489 21.193 21.193 21.193Z"
/>
<path
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit={15}
strokeWidth={3.799}
d="M95.997 98.103a2.103 2.103 0 1 0 0-4.205 2.103 2.103 0 0 0 0 4.205Z"
/>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit={15}
strokeWidth={12}
d="m121.193 121.196 41.871 41.625"
/>
</svg>
);
}