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

45 lines
1.1 KiB
TypeScript

import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgPcFirewall(
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}
>
<Path
d="M7 22h10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M2 17V4a2 2 0 012-2h16a2 2 0 012 2v13a2 2 0 01-2 2H4a2 2 0 01-2-2z"
stroke="currentColor"
/>
<Path
d="M12.485 6.121l3.06.765a.59.59 0 01.449.586C15.818 14 12 15 12 15s-3.818-1-3.994-7.528a.59.59 0 01.448-.586l3.06-.765a2 2 0 01.971 0z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPcFirewall);
export default ForwardRef;