【发布时间】:2016-01-17 03:15:31
【问题描述】:
我有
render() {
return <AppBar style={{ position: "fixed" }} title={<span>my Title</span>}
iconElementLeft={<IconButton><NavigationMenu /></IconButton>}
iconStyleRight={{color:"red"}}
iconElementRight={<IconButton><span className = "material-icons">account_circle</span></IconButton>}
/>
}
但是 iconStyleRight 给了我错误
Type '{ [x: number]: undefined; color: any; }' is not assignable to type 'string'
不知道为什么。我尝试了很多组合,包括将style 添加到<span> 元素,它被忽略了。
希望正确的语法使这个正确的图标显示为红色,以便我了解如何将样式应用于我的图标。
【问题讨论】:
标签: material-ui