styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
15 lines (14 loc) • 836 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Dropbox = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 16 16" }, props, { ref: ref }),
React.createElement("path", { d: "M11.5.5L8 3.5l4.5 3 3.5-3zM8 3.5L4.5.5 0 3.5l3.5 3zM12.5 6.5l3.5 3-4.5 2.5L8 9zM8 9L3.5 6.5 0 9.5 4.5 12z", key: "k0" }),
React.createElement("path", { d: "M11.377 13.212L8 10.317l-3.377 2.895L2.5 12.033V13.5L8 16l5.5-2.5v-1.467z", key: "k1" })));
});
Dropbox.displayName = 'Dropbox';
export var DropboxDimensions = { height: 16, width: 16 };