【发布时间】:2018-02-08 20:04:52
【问题描述】:
刚刚开始使用样式化组件。有没有办法设置第三方图标的样式,例如 Material Design Icons?这是我到目前为止的代码,但显然它不起作用。 相关代码在内容组件下方谢谢!
const MaterialIcon = (props) => <i className="material-icons">account_balance</i>;
const Icon = styled(MaterialIcon)`
background-color: green;
font-size: 50px;
`;
const CheckThisOut = props => (
<Wrapper>
<Header>
<h5>{props.title}</h5>
<Icon />
</Header>
<Divider />
<Content>
<p>5% of all participants in this campaign were first time users.</p>
</Content>
</Wrapper>
);
export default CheckThisOut;
【问题讨论】: