@esri/calcite-components-react@2.13.2
I'm having difficulty getting the CalciteCarousel and CalciteCarouselItem components to render properly. They seem to be treated as simple <div>s. I've tried some different props combinations and some css things but nothing seems to render a carousel.
I based my testing on the "Carousel - full height in Panel" example found here
https://developers.arcgis.com/calcite-design-system/components/carousel/
Any suggestions are welcome. Thanks.
Without getting into a lot of detail, here is my code
<CalcitePanel heading="Working on a carousel" style={{ height: "100%" }}>
<CalciteCarousel label="Cool things" arrowType="inline">
<CalciteCarouselItem label="Cool thing 1">
<div>
<p>Cool thing 1</p>
</div>
</CalciteCarouselItem>
<CalciteCarouselItem label="Cool thing 2">
<div>
<p>Cool thing 2</p>
</div>
</CalciteCarouselItem>
<CalciteCarouselItem label="Cool thing 3">
<div>
<p>Cool thing 3</p>
</div>
</CalciteCarouselItem>
</CalciteCarousel>
</CalcitePanel>