box-ui-elements
Version:
Box UI Elements
24 lines • 631 B
JavaScript
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
const IconDrag = ({
className = '',
color = '#aaa',
height = 16,
title,
width = 16
}) => /*#__PURE__*/React.createElement(AccessibleSVG, {
className: `icon-drag ${className}`,
height: height,
title: title,
viewBox: "0 0 24 24",
width: width
}, /*#__PURE__*/React.createElement("path", {
className: "fill-color",
d: "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z",
fill: "none"
}));
export default IconDrag;
//# sourceMappingURL=IconDrag.js.map