mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-03 08:36:01 +00:00
added auth strategies form + add ability to disable strategies
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import { TbAlertCircle } from "react-icons/tb";
|
||||
import { twMerge } from "tailwind-merge";
|
||||
|
||||
export type IconProps = {
|
||||
className?: string;
|
||||
title?: string;
|
||||
};
|
||||
|
||||
const Warning = ({ className, ...props }: IconProps) => (
|
||||
<TbAlertCircle
|
||||
{...props}
|
||||
className={twMerge("dark:text-amber-300 text-amber-700 cursor-help", className)}
|
||||
/>
|
||||
);
|
||||
|
||||
export const Icon = {
|
||||
Warning
|
||||
};
|
||||
Reference in New Issue
Block a user