react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 512 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgCamera3Line = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M2 6c0-.552.455-1 .992-1h18.016c.548 0 .992.445.992 1v14c0 .552-.455 1-.992 1H2.992A.994.994 0 0 1 2 20zm2 1v12h16V7zm10 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6m0 2a5 5 0 1 1 0-10 5 5 0 0 1 0 10M4 2h6v2H4z" />
</Svg>
);
export default SvgCamera3Line;