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