@orfeas126/box-ui-elements
Version:
Box UI Elements
22 lines • 567 B
JavaScript
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
const IconPlusThin = ({
className = '',
color = '#222',
height = 9,
title,
width = 9
}) => /*#__PURE__*/React.createElement(AccessibleSVG, {
className: `icon-plus-thin ${className}`,
height: height,
title: title,
viewBox: "0 0 9 9",
width: width
}, /*#__PURE__*/React.createElement("path", {
className: "fill-color",
d: "M5 4V0H4v4H0v1h4v4h1V5h4V4H5z",
fill: color,
fillRule: "evenodd"
}));
export default IconPlusThin;
//# sourceMappingURL=IconPlusThin.js.map