This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2020-02-12 22:13:34 +00:00
|
|
|
import React from "react";
|
2020-02-12 17:23:10 +00:00
|
|
|
|
|
|
|
export default function Copy(props) {
|
|
|
|
return (
|
2020-02-12 22:13:34 +00:00
|
|
|
<svg width={12} height={14} viewBox="0 0 12 14" {...props}>
|
2020-02-12 17:23:10 +00:00
|
|
|
<path
|
2020-02-12 22:13:34 +00:00
|
|
|
d="M8 1H4a3 3 0 00-3 3v6h0m4-6h5a1 1 0 011 1v7a1 1 0 01-1 1H5a1 1 0 01-1-1V5a1 1 0 011-1z"
|
2020-02-12 17:23:10 +00:00
|
|
|
stroke="currentColor"
|
|
|
|
strokeWidth={2}
|
|
|
|
fill="none"
|
|
|
|
fillRule="evenodd"
|
|
|
|
strokeLinejoin="round"
|
|
|
|
/>
|
|
|
|
</svg>
|
2020-02-12 22:13:34 +00:00
|
|
|
);
|
2020-02-12 17:23:10 +00:00
|
|
|
}
|