import { Loader2 } from 'lucide-react' export type DNSTableHeaderProps = { display: string } export const DNSTableHeaders = ({ display }: DNSTableHeaderProps) => { // Display the DNS table headers if we have something to show if (display !== '') { return (

Type

) } // If we have not detected SSL TXT records ask the user to (re)validate return (

Validating custom domain and TLS configuration...

) }