'use client'; import { Button } from '@/ui/Button'; import { Panel } from '@/ui/Panel'; import { AccountItem } from '@/ui/AccountItem'; import { Badge } from '@/ui/Badge'; import { Globe, Link as LinkIcon } from 'lucide-react'; import React from 'react'; interface ConnectedAccountsPanelProps { iracingId?: string | number; onConnectIRacing?: () => void; } export function ConnectedAccountsPanel({ iracingId, onConnectIRacing }: ConnectedAccountsPanelProps) { return ( Verified ) : ( ) } /> Connect } /> ); }