dathost-remixicon-react
Version:
Remix Icon for React
6 lines (5 loc) • 550 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { memo } from "react";
const SvgFacebookLine = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", ...props, children: _jsx("path", { d: "M13 9h4.5l-.5 2h-4v9h-2v-9H7V9h4V7.128c0-1.783.186-2.43.534-3.082a3.64 3.64 0 0 1 1.512-1.512C13.698 2.186 14.345 2 16.128 2q.784 0 1.372.15V4h-1.372c-1.324 0-1.727.078-2.139.298-.303.162-.529.388-.691.692-.22.411-.298.814-.298 2.138z" }) }));
const Memo = memo(SvgFacebookLine);
export default Memo;