import { BlankLine, Highlight } from "./utils"; type HeaderProps = { user: string; hostname: string; }; const Header = ({ user, hostname }: HeaderProps) => ( <>

{user}@{hostname}

{"-".repeat(user.length + 1 + hostname.length)}

); type InfoLineProps = { label: string; value: string; }; const InfoLine = ({ label, value }: InfoLineProps) => (

{label}: {value}

); const Description = () => (
); export default Description;