.MyComponent {
component: children;
background-color: #000;
.icon {
background: #FF0000;
component: icon;
}
}
<MyComponent icon={<Icon type='user' />}>
Hello world!
</MyComponent>
<!-- CSS is classes are hashed, e.g. css modules -->
<style>
.a {
background-color: #000;
}
.b {
background: #FF0;
}
</style>
<div class='a'>
Hello world!
<div class='b'>
<i class='icon-24-user' />
</div>
</div>