dathost-remixicon-react
Version:
Remix Icon for React
6 lines (5 loc) • 479 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { memo } from "react";
const SvgFolderCheckLine = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", ...props, children: _jsx("path", { d: "M3 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h10v-2H4V5h5.586l2 2H20v6h2V6a1 1 0 0 0-1-1h-8.586l-2-2zm12.465 15.465L19 22l4.95-4.95-1.415-1.414L19 19.172l-2.121-2.122z" }) }));
const Memo = memo(SvgFolderCheckLine);
export default Memo;