1
0
mirror of synced 2025-12-22 03:16:52 -05:00
Files
docs/components/ui/Lead/Lead.tsx
Kevin Heis 504155926d Create a lead component (#21311)
* Create a lead component

* Update to remove markdown-body from Lead, copy over <code> styles

* ...so I can read the test output

* Update Lead.tsx

* Update Lead.tsx
2021-09-16 19:02:56 +00:00

22 lines
584 B
TypeScript

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 (
<Component
className={cx('f2 color-text-secondary mb-3', styles.container, className)}
{...restProps}
{...(typeof children === 'string'
? { dangerouslySetInnerHTML: { __html: children } }
: { children })}
/>
)
}