wacomm 1.87.1 → 1.87.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,6 @@
1
+ interface CarouselProps {
2
+ children: React.ReactNode;
3
+ className?: string;
4
+ }
5
+ declare function Carousel({ children, className }: CarouselProps): import("react/jsx-runtime").JSX.Element;
6
+ export default Carousel;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { default as Carousel } from './Carousel';
3
+ declare const meta: Meta<typeof Carousel>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;