css
Description
adds a custom style to a buttonType
string
Example
<div class="demo-box">
<Button type={'primary'} css="my" {click}>Click Me</Button>
</div>
<style>
.demo-box :global(button.my){
background-color: gold;
}
</style>
Related article: Styling a button