17 lines
462 B
JavaScript
17 lines
462 B
JavaScript
import React from 'react'
|
|
import "./index.less"
|
|
|
|
export default class RequiredLabelTip extends React.Component {
|
|
render() {
|
|
return (
|
|
<span className="requireLabel" style={{
|
|
display: "inline-block",
|
|
marginRight: "4px",
|
|
color: "#ff4d4f",
|
|
fontSize: "14px",
|
|
fontFamily: "SimSun,sans-serif",
|
|
lineHeight: 1
|
|
}}>*</span>
|
|
)
|
|
}
|
|
} |