css
Description
Optional. Adds a custom CSS class to the component's root elementUsage
css?: string;
Example
<div class="demo-box">
<Month css="my-class" />
</div>
<style>
.demo-box :global(.my-class) {
background-color: gold;
}
</style>
Related article: Styling the Month control