dathost-remixicon-react
Version:
Remix Icon for React
6 lines (5 loc) • 534 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { memo } from "react";
const SvgHailLine = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", ...props, children: _jsx("path", { d: "M6 17.419A8.003 8.003 0 0 1 9 2a8 8 0 0 1 7.458 5.099A5.5 5.5 0 0 1 19 17.793v-2.13a3.5 3.5 0 1 0-4-5.612V10a6 6 0 1 0-9 5.197zM10 17a2 2 0 1 1 0-4 2 2 0 0 1 0 4m5 3a2 2 0 1 1 0-4 2 2 0 0 1 0 4m-5 3a2 2 0 1 1 0-4 2 2 0 0 1 0 4" }) }));
const Memo = memo(SvgHailLine);
export default Memo;