iconoir/packages/iconoir-react/src/Magnet.tsx
2021-10-13 16:29:32 +02:00

37 lines
849 B
TypeScript

import * as React from 'react';
function SvgMagnet(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
strokeWidth={1.5}
height="1.5em"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M4 4v8.296C4 16.551 7.582 20 12 20s8-3.45 8-7.704V4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4 4h5.63v6.818C9.63 12.023 10.69 13 12 13s2.37-.977 2.37-2.182V4H20M9 8H4M20 8h-5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgMagnet);
export default ForwardRef;