@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 chevronDown = createElement(SVG, {
viewBox: "0 0 24 24",
xmlns: "http://www.w3.org/2000/svg"
}, createElement(Path, {
d: "M17.5 11.6L12 16l-5.5-4.4.9-1.2L12 14l4.5-3.6 1 1.2z"
}));
export default chevronDown;
//# sourceMappingURL=chevron-down.js.map