Fixed a property name

This commit is contained in:
Oleksandr Zhurbenko 2017-04-24 15:19:57 -07:00
parent edabe3c623
commit ace300c316

View File

@ -211,7 +211,7 @@ export default class WhiteboardToolbar extends Component {
className={styles.toolbarButton} className={styles.toolbarButton}
customSvgIcon={ customSvgIcon={
<svg className={styles.customSvgIcon} shapeRendering="geometricPrecision"> <svg className={styles.customSvgIcon} shapeRendering="geometricPrecision">
<circle shapeRendering="geometricPrecision" cx="50%" cy="50%" r={this.state.thicknessSelected} fill={this.state.colorSelected} stroke="black" stroke-width="1"/> <circle shapeRendering="geometricPrecision" cx="50%" cy="50%" r={this.state.thicknessSelected} fill={this.state.colorSelected} stroke="black" strokeWidth="1"/>
</svg> </svg>
} }
/> />
@ -231,7 +231,7 @@ export default class WhiteboardToolbar extends Component {
className={styles.toolbarButton} className={styles.toolbarButton}
customSvgIcon={ customSvgIcon={
<svg className={styles.customSvgIcon}> <svg className={styles.customSvgIcon}>
<rect x="25%" y="25%" width="50%" height="50%" fill={this.state.colorSelected} stroke="black" stroke-width="1"/> <rect x="25%" y="25%" width="50%" height="50%" fill={this.state.colorSelected} stroke="black" strokeWidth="1"/>
</svg> </svg>
} }
/> />