import { UIRenderHtmlCardProps } from '../../toolkit/toolkit-types'; const html = `
  ___________________________
< I'm an expert in my field. >
  ---------------------------
    \\   ^__^ 
    \\  (oo)\\_______
       (__)\\       )\\/\\
           ||----w |
           ||     ||
  
A cow saying, "I'm an expert in my field." The cow is illustrated using preformatted text characters.
`; const preformattedConfig: UIRenderHtmlCardProps = { title: 'Preformatted Text', caption: 'Notice that every white-space inside the
 tag is preserved while white-spaces outside are collapsed.',
  props: {
    source: {
      html
    }
  },
  preferHtmlSrc: true
};

export default preformattedConfig;