flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
25 lines (21 loc) • 663 B
JavaScript
var jsxRuntime = require('react/jsx-runtime');
var React = require('react');
const ChevronLeftIcon = React.forwardRef((props, ref) => /* @__PURE__ */ jsxRuntime.jsx(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "1em",
height: "1em",
fill: "none",
stroke: "currentColor",
strokeWidth: 2,
viewBox: "0 0 24 24",
ref,
...props,
children: /* @__PURE__ */ jsxRuntime.jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m15 19-7-7 7-7" })
}
));
ChevronLeftIcon.displayName = "ChevronLeftIcon";
exports.ChevronLeftIcon = ChevronLeftIcon;
//# sourceMappingURL=chevron-left-icon.cjs.map
;