iconic-icons-rn
Version:
Iconic icons for React Native
9 lines (8 loc) • 711 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgPictureInPicture(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", strokeLinejoin: "round", strokeWidth: 1.5, d: "M7.25 17.25h-.5a2 2 0 01-2-2v-8.5a2 2 0 012-2h10.5a2 2 0 012 2v2.5" }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M10.75 13.75a1 1 0 011-1h6.5a1 1 0 011 1v4.5a1 1 0 01-1 1h-6.5a1 1 0 01-1-1v-4.5z" })));
}
export default SvgPictureInPicture;