import { AlertTriangle } from "lucide-react"; import { Button } from "@/components/ui/button"; interface AutotradeWarningBannerProps { visible: boolean; isStopping?: boolean; onStop: () => void; } export function AutotradeWarningBanner({ visible, isStopping = false, onStop, }: AutotradeWarningBannerProps) { if (!visible) return null; return (
자동매매 실행 중: 브라우저/탭 종료 또는 외부 페이지 이동 시 주문이 즉시 중지됩니다.