I have a component that I've defined custom styles to, e.g.
<Button
styles={(theme, params) => ({
root: {
minWidth: params.variant === 'subtle' ? undefined : 172,
```
When I use it in my app, I sometimes need to pass extra styles on `root`, for example: ` textDecoration: 'none'` However, if I just pass it via `styles` the already existing styles (minWidth) disappears. I have to pass both `minWidth` and `textDecoration` in this case. How can I make it so I have to just pass the extra styles but the pre-existing ones remain there?