import { UIRenderHtmlCardProps } from '../../toolkit/toolkit-types'; const html = ` This text can be selected. `; const selectableTextConfig: UIRenderHtmlCardProps = { title: 'Selectable text example', caption: '', props: { source: { html }, defaultTextProps: { selectable: true } }, preferHtmlSrc: false }; export default selectableTextConfig;