UNPKG

jobiqo-cl

Version:

[![CircleCI](https://circleci.com/gh/jobiqo/jobiqo-cl.svg?style=svg&circle-token=5a24efa5b8bbc4879276123e77d0d3f35ca7144c)](https://circleci.com/gh/jobiqo/jobiqo-cl)

18 lines (17 loc) 630 B
/// <reference types="react" /> export interface WYSIWYGTextProps { /** * The format for the text. If set to full_html dangerouslySetInnerHTML will be used. */ format?: 'full_html' | 'filtered'; /** * The content to be displayed inside. */ content: string; } /** * Renders full HTML Content or filtered HTML content dependin on format. Use with care. * Full HTML could be mean potential XSS scripting vulnerability if the provider of the content * is not trusted (admin) don't use this component. */ export declare const WYSIWYGText: ({ format, content }: WYSIWYGTextProps) => JSX.Element;