@gechiui/icons
Version:
GeChiUI Icons package, based on dashicon.
14 lines (13 loc) • 393 B
JavaScript
import { createElement } from "@gechiui/element";
/**
* GeChiUI dependencies
*/
import { SVG, Path } from '@gechiui/primitives';
const stretchFullWidth = createElement(SVG, {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24"
}, createElement(Path, {
d: "M5 4v11h14V4H5zm3 15.8h8v-1.5H8v1.5z"
}));
export default stretchFullWidth;
//# sourceMappingURL=stretch-full-width.js.map