jc-biz-components
Version:
jc component library based on Antd
22 lines (19 loc) • 511 B
JavaScript
import React, { Component } from 'react'
// import styles from './style.css'
class Title extends Component {
render () {
const { txt, desc } = this.props
return (
<div
style={{
'line-height': '40px',
'font-size': '13px',
'color': '#4A90E2',
'border-bottom': '1px dashed #979797',
'margin-bottom': '18px' }}
>{ txt }<span style={{ fontSize: 12, marginLeft: 8 }}>{ desc || '' }</span>
</div>
)
}
}
export default Title