import React from 'react'; import cn from 'classnames'; import styles from './QuestionBox.css'; import {Icon} from 'coral-ui'; import Markdown from 'coral-framework/components/Markdown'; import Slot from 'coral-framework/components/Slot'; const QuestionBox = ({content, enable, icon = '', className = ''}) => (
{ icon === 'default' ? (
) : (
) }
); export default QuestionBox;