UNPKG

@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

15 lines 811 B
import { type VariantProps } from "class-variance-authority"; import * as React from "react"; declare const buttonVariants: (props?: ({ variant?: "link" | "default" | "destructive" | "destructiveOutline" | "outline" | "secondary" | "ghost" | null | undefined; size?: "default" | "sm" | "lg" | null | undefined; icon?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> { asChild?: boolean; loading?: boolean; } declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>; export { Button, buttonVariants }; export default Button; //# sourceMappingURL=Button.d.ts.map