iconic-icons-rn
Version:
Iconic icons for React Native
9 lines (8 loc) • 735 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgCamera(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M19.25 17.25v-7.5a2 2 0 00-2-2h-.333a1 1 0 01-.923-.615l-.738-1.77a1 1 0 00-.923-.615H9.667a1 1 0 00-.923.615l-.738 1.77a1 1 0 01-.923.615H6.75a2 2 0 00-2 2v7.5a2 2 0 002 2h10.5a2 2 0 002-2z" }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M15.25 13a3.25 3.25 0 11-6.5 0 3.25 3.25 0 016.5 0z" })));
}
export default SvgCamera;