Since we have className and styles for non-maximized view, it should be nice to have also such ones for maximized view.
I love the way material ui is doing this with the classes object:
https://material-ui.com/customization/components/
I think best would be something like
<Carousel
classnames={{
thumbnail: classNameOfThumbnail,
activeThumbnail: classNameOfActiveThumbnail,
maximizedCarousel: classNameOfMaximizedCarousel,
image: classNameOfImage,
imageContainer: classNameOfImageContainer,
...etc
}}
>
Since we have className and styles for non-maximized view, it should be nice to have also such ones for maximized view.
I love the way material ui is doing this with the
classesobject:https://material-ui.com/customization/components/
I think best would be something like