iconoir/packages/iconoir-react-native/src/NetworkRight.tsx
2023-01-11 18:09:27 +00:00

54 lines
1.2 KiB
TypeScript

import * as React from "react";
import Svg, { SvgProps, Rect, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgNetworkRight(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Rect
width={7}
height={5}
rx={0.6}
transform="matrix(0 -1 -1 0 22 21)"
stroke="currentColor"
/>
<Rect
width={7}
height={5}
rx={0.6}
transform="matrix(0 -1 -1 0 7 15.5)"
stroke="currentColor"
/>
<Rect
width={7}
height={5}
rx={0.6}
transform="matrix(0 -1 -1 0 22 10)"
stroke="currentColor"
/>
<Path
d="M17 17.5h-3.5a2 2 0 01-2-2v-7a2 2 0 012-2H17M11.5 12H7"
stroke="currentColor"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgNetworkRight);
export default ForwardRef;