import type { Meta, StoryObj } from "@storybook/react"; import { QuoteCarouselModule } from "../"; // @ts-ignore import Arrow from "../../assets/icons/zhaArrow.svg"; import data from "./__mockdata__.json"; import item from "./__mockdataOneItem__.json"; const meta: Meta = { component: QuoteCarouselModule, tags: ["autodocs"], parameters: { layout: "fullscreen", backgrounds: { default: "dark", }, }, }; export default meta; type Story = StoryObj; export const QuoteCarousel: Story = { args: { data, carouselProps: { controls: { show: true, directionComponent: , }, showPagination: true, paginationType: "leadingZeroNumbers", animationStyle: "elegant", paginationStyle: { textStyle: "i-xs", }, }, textStyles: { quote: { textStyle: "h3", }, }, }, }; export const QuoteCarouselOnItem: Story = { args: { data: item, carouselProps: { controls: { show: true, directionComponent: , }, showPagination: true, paginationType: "leadingZeroNumbers", animationStyle: "elegant", paginationStyle: { textStyle: "i-xs", }, }, textStyles: { quote: { textStyle: "h3", }, }, }, };