better-auth-dashboard
Version:
A better-Auth powered admin dashboard.
13 lines (12 loc) • 445 B
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>>;
}[];
};