import { UIRenderHtmlCardProps } from '../../toolkit/toolkit-types'; const html = `
  1. One
  2. Two
  3. Three
  4. Four
  5. Five
  6. Six
  7. Seven
  8. Eight
`; const olUpperRomanConfig: UIRenderHtmlCardProps = { title: 'Upper Roman List Style Type', caption: 'Notice how marker pseudo-elements will inherit from the styles of the
    tag.', props: { source: { html } }, preferHtmlSrc: true }; export default olUpperRomanConfig;