import { UIRenderHtmlCardProps } from '../../toolkit/toolkit-types';
const html = `
- One
- Two
- Three
- Four
- Five
- Six
- Seven
- 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;