css
Description
Optional. Adds a custom style to a buttonUsage
css?: string;
Example
<Button type={'primary'} css="my" onClick={onClick}>Click Me</Button>
button.my {
background-color: gold;
}
Related article: Styling a button
css?: string;
<Button type={'primary'} css="my" onClick={onClick}>Click Me</Button>
button.my {
background-color: gold;
}
Related article: Styling a button