@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
22 lines (21 loc) • 599 B
JavaScript
import { jsx } from "react/jsx-runtime";
import { cva } from "class-variance-authority";
const divider = cva("flex border-b", {
variants: {
type: {
default: "border-b-nextadmin-border-default dark:border-b-dark-nextadmin-border-default",
strong: "border-b-nextadmin-border-strong dark:border-b-dark-nextadmin-border-strong"
}
},
defaultVariants: {
type: "default"
}
});
function Divider({ type }) {
return /*#__PURE__*/ jsx("div", {
className: divider({
type
})
});
}
export { Divider as default };