import { ReactNode } from 'react' import cx from 'classnames' import styles from './Lead.module.scss' export type LeadPropsT = { children: string | ReactNode className?: string as?: keyof JSX.IntrinsicElements } export function Lead({ children, className, as: Component = 'div', ...restProps }: LeadPropsT) { return ( ) }