import { TbAlertCircle } from "react-icons/tb"; import { twMerge } from "tailwind-merge"; export type IconProps = { className?: string; title?: string; }; const Warning = ({ className, ...props }: IconProps) => ( ); const Err = ({ className, ...props }: IconProps) => ( ); export const Icon = { Warning, Err, };