src/components/caption.tsximport clsx from 'clsx'interface CaptionProps {className?: stringchildren?: React.ReactNodehtml?: string}export function Caption({ className, children, html }: CaptionProps) {const classes = clsx('text-xs text-caption text-left font-normal italic mt-2',className)if (html) {return (<figcaptionclassName={classes}dangerouslySetInnerHTML={{ __html: html }}/>
Showing the first 20 lines.
Get full code