iconoir/packages/iconoir-react/src/server/CurveArray.tsx
2023-06-21 05:55:46 +00:00

35 lines
916 B
TypeScript

import * as React from "react";
function SvgCurveArray(
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="M5.164 17c.29-1.049.67-2.052 1.132-3M11.5 7.794A16.838 16.838 0 0114 6.296M4.5 22a2.5 2.5 0 110-5 2.5 2.5 0 010 5z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M9.5 12a2.5 2.5 0 110-5 2.5 2.5 0 010 5zM19.5 7a2.5 2.5 0 110-5 2.5 2.5 0 010 5z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCurveArray);
export default ForwardRef;