File size: 813 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
import clsx from 'clsx'
import { forwardRef, ReactNode } from 'react'
import { copy } from './Copy.css'
import * as FontSizes from '../../styles/fontStyles.css'
export interface CopyProps {
fontStyle?: keyof FontSizes.FontSizes
className?: string
children?: ReactNode
tag?: keyof Pick<
React.JSX.IntrinsicElements,
'p' | 'blockquote' | 'div' | 'label'
>
}
export const Copy = forwardRef<
| HTMLHeadingElement
| HTMLQuoteElement
| HTMLDivElement
| HTMLLabelElement
| HTMLParagraphElement,
CopyProps
>(({ fontStyle = 'XS', className, children, tag = 'p' }, ref) => {
const Element = tag
return (
<Element
className={clsx(FontSizes[fontStyle], copy, className)}
// @ts-expect-error – TODO: fix this
ref={ref}
>
{children}
</Element>
)
})
|