@gechiui/icons
Version:
GeChiUI Icons package, based on dashicon.
14 lines (13 loc) • 383 B
JavaScript
import { createElement } from "@gechiui/element";
/**
* GeChiUI dependencies
*/
import { SVG, Path } from '@gechiui/primitives';
const pullLeft = createElement(SVG, {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24"
}, createElement(Path, {
d: "M4 18h6V6H4v12zm9-9.5V10h7V8.5h-7zm0 7h7V14h-7v1.5z"
}));
export default pullLeft;
//# sourceMappingURL=pull-left.js.map