dathost-remixicon-react
Version:
Remix Icon for React
6 lines (5 loc) • 455 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { memo } from "react";
const SvgGuideLine = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", ...props, children: _jsx("path", { d: "M13 8v8a3 3 0 0 1-3 3H7.83a3.001 3.001 0 1 1 0-2H10a1 1 0 0 0 1-1V8a3 3 0 0 1 3-3h3V2l5 4-5 4V7h-3a1 1 0 0 0-1 1M5 19a1 1 0 1 0 0-2 1 1 0 0 0 0 2" }) }));
const Memo = memo(SvgGuideLine);
export default Memo;