better-auth-dashboard
Version:
A better-Auth powered admin dashboard.
18 lines (16 loc) • 444 B
text/typescript
import type { LucideProps } from "lucide-react";
import type { ForwardRefExoticComponent, RefAttributes } from "react";
export type Plugin = {
title: string;
slug: string;
icon: ForwardRefExoticComponent<
Omit<LucideProps, "ref"> & RefAttributes<SVGSVGElement>
>;
subItems: {
title: string;
slug: string;
icon: ForwardRefExoticComponent<
Omit<LucideProps, "ref"> & RefAttributes<SVGSVGElement>
>;
}[];
};