1
剛剛開始使用樣式組件進行遊戲。有沒有一種方式來設計第三方圖標,如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;