styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 904 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.Dropbox = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M3 12.9l5.3 3.5 3.7-3.1L6.7 10zm5.3-9.3L3 7.1 6.7 10 12 6.7zM21 7.1l-5.3-3.5L12 6.7l5.3 3.3zm-9 6.2l3.7 3.1 5.3-3.5-3.7-2.9zm0 1.2l-3.7 3.1-1.6-1.1v1.2l5.3 3.2 5.3-3.2v-1.2l-1.6 1.1z", key: "k0" })));
});
exports.Dropbox.displayName = 'Dropbox';
exports.DropboxDimensions = { height: 24, width: 24 };
;