@brizy/ui-icons
Version:
6 lines (5 loc) • 585 B
JavaScript
import React from "react";
export const CopyOutline = ({ className, onClick, style }) => (React.createElement("svg", { className: className, style: style, onClick: onClick, width: "1em", height: "1em", viewBox: "0 0 16 16", fill: "none", stroke: "currentColor", strokeWidth: 1.75, strokeLinecap: "round", strokeLinejoin: "round" },
React.createElement("g", { transform: "scale(0.666667)" },
React.createElement("rect", { x: 8, y: 8, width: 12, height: 12, rx: 2 }),
React.createElement("path", { d: "M16 8V5a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h3" }))));