metadata-based-explorer1
Version:
Box UI Elements
34 lines (32 loc) • 1.51 kB
JavaScript
import * as React from 'react';
import classNames from 'classnames';
import AccessibleSVG from '../accessible-svg';
import { bdlNeutral03 } from '../../styles/variables';
var IconCollectionsBolt = function IconCollectionsBolt(_ref) {
var _ref$className = _ref.className,
className = _ref$className === void 0 ? '' : _ref$className,
_ref$color = _ref.color,
color = _ref$color === void 0 ? bdlNeutral03 : _ref$color,
_ref$height = _ref.height,
height = _ref$height === void 0 ? 32 : _ref$height,
title = _ref.title,
_ref$width = _ref.width,
width = _ref$width === void 0 ? 32 : _ref$width;
return React.createElement(AccessibleSVG, {
className: classNames('bdl-IconCollectionsBolt', className),
height: height,
title: title,
viewBox: "0 0 32 32",
width: width
}, React.createElement("g", {
className: "fill-color",
fill: color,
fillRule: "evenodd"
}, React.createElement("path", {
d: "M24 12.876h-4.187l.065-8.476L14 14.011h4.187l-.065 8.389z"
}), React.createElement("path", {
fillRule: "nonzero",
d: "M7.896 0h21.642A2.462 2.462 0 0 1 32 2.462v21.642a2.462 2.462 0 0 1-2.462 2.462H7.896a2.462 2.462 0 0 1-2.462-2.462V2.462A2.462 2.462 0 0 1 7.896 0zm.615 23.49h20.412V3.076H8.511v20.412zM1.509 13.282c.834 0 1.51.676 1.51 1.51V26.52a2.462 2.462 0 0 0 2.461 2.46h11.728a1.51 1.51 0 0 1 0 3.019H4.923A4.923 4.923 0 0 1 0 27.077V14.792a1.51 1.51 0 0 1 1.51-1.509z"
})));
};
export default IconCollectionsBolt;