import React from 'react'; import { Space } from 'antd'; class IceLabel extends React.Component { constructor(props) { super(props); } render() { const { value } = this.props; return (
); } nl2br(str) { return (`${str}`).replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, '
'); } } export default IceLabel;