iconoir/packages/iconoir-react/src/server/NonBinary.tsx
2023-02-22 22:51:18 +00:00

29 lines
650 B
TypeScript

import * as React from "react";
function SvgNonBinary(
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 9a6 6 0 110 12 6 6 0 010-12zm0 0V3M9 4l6 3M15 4L9 7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgNonBinary);
export default ForwardRef;