iconoir/packages/iconoir-react/src/server/ProjectCurve3D.tsx
2023-03-04 14:55:31 +00:00

29 lines
728 B
TypeScript

import * as React from "react";
function SvgProjectCurve3D(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M12 21c-4.97 0-9-1.79-9-4s4.03-4 9-4 9 1.79 9 4-4.03 4-9 4zM12 2a3 3 0 013 3v1H9V5a3 3 0 013-3zM3.5 15.5l4-7M20.5 15.5l-4-7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgProjectCurve3D);
export default ForwardRef;