ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
1import { LucideIcon } from "lucide-react"; 2 3interface PlaceholderTabProps { 4 icon: LucideIcon; 5 title: string; 6 message: string; 7} 8 9export default function PlaceholderTab({ 10 icon: Icon, 11 title, 12 message, 13}: PlaceholderTabProps) { 14 return ( 15 <div className="p-6"> 16 <div className="flex items-center space-x-3 mb-6"> 17 <h2 className="text-xl font-bold text-purple-950 dark:text-cyan-50"> 18 {title} 19 </h2> 20 </div> 21 <p className="text-purple-900 dark:text-cyan-100">{message}</p> 22 </div> 23 ); 24}