SplitLine.js
893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import React,{PropTypes} from 'react';
import ReactDOM from 'react-dom';
import cx from 'classnames';
import s from './breadline.scss';
class SplitLine extends React.Component {
constructor(props) {
super(props);
}
static propTypes = {
style:PropTypes.object,
width:PropTypes.number
}
static defaultProps={
}
componentDidMount(){
}
componentWillReceiveProps(nextProps){
}
componentDidUpdate(prevProps,prevState){
}
componentWillUnmount() {
}
render(){
const {width,style}=this.props;
const maxWidth=`${width}px`;
return (
<div className={cx(s.split_line_wrap)}>
<div className={cx(s.split_line)} style={{...style,width:maxWidth}}></div>
</div>
)
}
}
export default SplitLine;