UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

9 lines (8 loc) 678 B
import * as React from "react"; import Svg, { Path, Rect } from "react-native-svg"; function SvgCopy(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: "M6.5 15.25v0a1.75 1.75 0 01-1.75-1.75V6.75a2 2 0 012-2h6.75c.966 0 1.75.784 1.75 1.75v0" }), React.createElement(Rect, { width: 10.5, height: 10.5, x: 8.75, y: 8.75, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, rx: 2 }))); } export default SvgCopy;