// import { AlertTriangle } from "lucide-react"; import React, { PropsWithChildren } from "react"; export const ErrorBanner: React.FC = ({ children }) => (
{/* */}

{children}

); export const WarnBanner: React.FC = ({ children }) => (
{/* */} {children}
);