iconoir/packages/iconoir-react/src/server/3DArcCenterPt.tsx

50 lines
1.2 KiB
TypeScript

import * as React from "react";
function Svg3DArcCenterPt(
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="M22 16c0-5.523-4.477-10-10-10-4.1 0-7.625 2.468-9.168 6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeDasharray="3 3"
/>
<path
d="M2 17a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M2 16h10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12 17a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(Svg3DArcCenterPt);
export default ForwardRef;