You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
615 B
19 lines
615 B
import React,{Component} from "React";
|
|
|
|
export default function LeaderIcon(props = {}) {
|
|
let icon = null;
|
|
if (props.small) {
|
|
icon = <div className="font-8 blueFull Actionbtn" style={{
|
|
height: '14px',
|
|
'line-height': '14px',
|
|
width: '24px',
|
|
padding: 0,
|
|
'margin-top': '-2px',
|
|
'margin-left': '2px',
|
|
'vertical-align': 'middle', }}>组长</div>
|
|
} else {
|
|
icon = <div className="font-8 blueFull Actionbtn" style={{ height: '16px', 'line-height': '16px', width: '30px'}}>组长</div>
|
|
|
|
}
|
|
return icon
|
|
} |