import React from 'react' import { ApplyTypography } from '@hanzo/ui/primitives' import { cn } from '@hanzo/ui/util' const TitleAndByline: React.FC<{ title: string | undefined byline?: string | undefined clx?: string bylineClx?: string }> = ({ title, byline, clx='', bylineClx='' }) => ( (title || byline) ? ( *]:!m-0 ', clx)} >

{title}

{byline && (
{byline}
)}
) : (null) ) export default TitleAndByline