import { FootprintsIcon } from "lucide-react"; import EmptyState from "src/components/EmptyState"; import Loading from "src/components/Loading"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "src/components/ui/card"; import { Channel } from "src/types"; export function ChannelWaitingForConfirmations({ channel, }: { channel: Channel | undefined; }) { if (!channel?.confirmationsRequired) { // 0-conf channel or waiting for transaction to be broadcasted, this should only take a few seconds return ( <>