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.
skynet-webportal/packages/webapp/src/svg/File.js

17 lines
460 B
JavaScript
Raw Normal View History

2020-02-18 16:25:03 +00:00
import React from "react";
2020-02-12 17:23:10 +00:00
export default function File(props) {
return (
<svg viewBox="0 0 36 40" width="36" height="40" {...props}>
<g fill="none" fillRule="evenodd">
<path
d="M35.5 16.207L19.793.5H2A1.5 1.5 0 00.5 2v36A1.5 1.5 0 002 39.5h32a1.5 1.5 0 001.5-1.5V16.207z"
stroke="#C5CEC7"
fill="#FFF"
/>
<path d="M20 1l15 15H22a2 2 0 01-2-2V1z" fill="#C5CEC7" />
</g>
</svg>
2020-02-18 16:25:03 +00:00
);
2020-02-12 17:23:10 +00:00
}