@vtex/styleguide
Version:
> VTEX Styleguide React components ([Docs](https://vtex.github.io/styleguide))
42 lines (36 loc) • 1.17 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
var _react = require("react");
var _react2 = _interopRequireDefault(_react);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var FileIcon = function FileIcon() {
return _react2.default.createElement("svg", {
width: "40",
height: "46",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, _react2.default.createElement("path", {
d: "M24.793.793A1 1 0 0 0 24.086.5H1.5a1 1 0 0 0-1 1v43a1 1 0 0 0 1 1h37a1 1 0 0 0 1-1V15.914a1 1 0 0 0-.293-.707L24.793.793z",
fill: "#E3E4E6"
}), _react2.default.createElement("path", {
d: "M9.5 33.5h21M9.5 24.5h21",
stroke: "#3F3F40",
strokeWidth: "1.2",
strokeMiterlimit: "10",
strokeLinecap: "round",
strokeLinejoin: "round"
}), _react2.default.createElement("path", {
d: "M9.5 15.5h6",
stroke: "#F71963",
strokeWidth: "1.2",
strokeMiterlimit: "10",
strokeLinecap: "round",
strokeLinejoin: "round"
}), _react2.default.createElement("path", {
d: "M24.5.5v15h15",
fill: "#CACBCC"
}));
};
exports.default = FileIcon;