@premieroctet/next-admin
Version:
Next-Admin provides a customizable and turnkey admin dashboard for applications built with Next.js and powered by the Prisma ORM. It aims to simplify the development process by providing a turnkey admin system that can be easily integrated into your proje
19 lines (18 loc) • 676 B
JavaScript
import { jsx } from "react/jsx-runtime";
import external_clsx_default from "clsx";
const DoubleArrow = ({ className, ...props })=>/*#__PURE__*/ jsx("svg", {
className: external_clsx_default("h-5 w-5 cursor-pointer text-gray-400", className),
"aria-hidden": "true",
fill: "none",
stroke: "currentColor",
viewBox: "0 0 20 20",
...props,
children: /*#__PURE__*/ jsx("path", {
d: "M7 7l3-3 3 3m0 6l-3 3-3-3",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: "1.5"
})
});
const icons_DoubleArrow = DoubleArrow;
export { icons_DoubleArrow as default };