UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

8 lines (7 loc) 556 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgProjector(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: "M18.25 7.75H5.75v7.5a2 2 0 002 2h8.5a2 2 0 002-2v-7.5zM18.25 4.75H5.75a1 1 0 00-1 1v1a1 1 0 001 1h12.5a1 1 0 001-1v-1a1 1 0 00-1-1zM12 17.5v1.75" }))); } export default SvgProjector;