UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

9 lines (8 loc) 627 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgLayers(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: "M12 4.75L19.25 9 12 13.25 4.75 9 12 4.75z" }), React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M9.25 12l-4.5 3L12 19.25 19.25 15l-4.578-3" }))); } export default SvgLayers;