@wordpress/icons
Version:
WordPress Icons package, based on dashicon.
13 lines • 371 B
JavaScript
import { createElement } from "react";
/**
* WordPress dependencies
*/
import { SVG, Path } from '@wordpress/primitives';
const chevronLeft = createElement(SVG, {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24"
}, createElement(Path, {
d: "M14.6 7l-1.2-1L8 12l5.4 6 1.2-1-4.6-5z"
}));
export default chevronLeft;
//# sourceMappingURL=chevron-left.js.map