mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 20:37:21 +00:00
added bknd admin config override to make it easier to include <Admin />
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
import type { ComponentPropsWithoutRef } from "react";
|
||||
import type { ComponentPropsWithoutRef, ReactNode } from "react";
|
||||
import { twMerge } from "tailwind-merge";
|
||||
|
||||
export type AlertProps = ComponentPropsWithoutRef<"div"> & {
|
||||
className?: string;
|
||||
visible?: boolean;
|
||||
title?: string;
|
||||
message?: string;
|
||||
message?: ReactNode | string;
|
||||
};
|
||||
|
||||
const Base: React.FC<AlertProps> = ({ visible = true, title, message, className, ...props }) =>
|
||||
|
||||
Reference in New Issue
Block a user