@gechiui/icons
Version:
GeChiUI Icons package, based on dashicon.
16 lines (15 loc) • 454 B
JavaScript
import { createElement } from "@gechiui/element";
/**
* GeChiUI dependencies
*/
import { SVG, Path } from '@gechiui/primitives';
const dragHandle = createElement(SVG, {
width: "18",
height: "18",
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 18 18"
}, createElement(Path, {
d: "M5 4h2V2H5v2zm6-2v2h2V2h-2zm-6 8h2V8H5v2zm6 0h2V8h-2v2zm-6 6h2v-2H5v2zm6 0h2v-2h-2v2z"
}));
export default dragHandle;
//# sourceMappingURL=drag-handle.js.map