import { UIRenderHtmlCardProps } from '../../toolkit/toolkit-types';
const html = `
This text is centered!
`;
const cssInheritanceConfig: UIRenderHtmlCardProps = {
title: 'CSS Inheritance Example',
caption: '',
props: {
source: {
html
}
},
preferHtmlSrc: true
};
export default cssInheritanceConfig;