styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 705 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var BoxAdd = 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: "M13 1H3L0 4v10.5a.5.5 0 00.5.5h15a.5.5 0 00.5-.5V4l-3-3zM8 13L3 9h3V6h4v3h3l-5 4zM2.414 3l1-1h9.172l1 1H2.414z", key: "k0" })));
});
BoxAdd.displayName = 'BoxAdd';
export var BoxAddDimensions = { height: 16, width: 16 };