@amaui/icons-material-rounded-react
Version:
Icons material rounded for React
15 lines • 808 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import React from 'react';
import { Icon } from '@amaui/ui-react';
const IconMaterialDragHandleFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
name: "DragHandleFilled",
short_name: "DragHandle",
viewBox: "0 0 24 24"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M5 11q-.425 0-.713-.288Q4 10.425 4 10t.287-.713Q4.575 9 5 9h14q.425 0 .712.287Q20 9.575 20 10t-.288.712Q19.425 11 19 11Zm0 4q-.425 0-.713-.288Q4 14.425 4 14t.287-.713Q4.575 13 5 13h14q.425 0 .712.287.288.288.288.713t-.288.712Q19.425 15 19 15Z"
}));
});
IconMaterialDragHandleFilled.displayName = 'AmauiIconMaterialDragHandleFilled';
export default IconMaterialDragHandleFilled;