import { BlankLine, Highlight } from "./utils"; type HeaderProps = { user: string; hostname: string; }; const Header = ({ user, hostname }: HeaderProps) => ( <>
{"-".repeat(user.length + 1 + hostname.length)}
> ); type InfoLineProps = { label: string; value: string; }; const InfoLine = ({ label, value }: InfoLineProps) => ({label}: {value}
); const Description = () => (