import { AlertCircleIcon } from "lucide-react"; import { Alert, AlertDescription, AlertTitle } from "src/components/ui/alert"; import { RecommendedChannelPeer } from "src/types"; type ChannelPeerNoteProps = { peer: RecommendedChannelPeer; }; export function ChannelPeerNote({ peer }: ChannelPeerNoteProps) { return ( Please note when opening a channel with {peer.name} {peer.note} ); }