// Underlined tab button, shared by the home-page tool and the sample-dog profile so both tab strips // look and behave the same. import type { ReactNode } from "react"; export default function TabButton({ active, onClick, children, }: { active: boolean; onClick: () => void; children: ReactNode; }) { return ( ); }