import { twMerge } from 'tailwind-merge' import { CarouselNextIcon } from '~/components/icons/carousel-next' import { CarouselPreviousIcon } from '~/components/icons/carousel-previous' import type { TNews } from '~/types/news' import { Button } from './button' export const Carousel = (properties: TNews) => { const { title, description, items, type } = properties return (

{title}

{description}

{items.map(({ image, title, content }, index) => (
{title}

{title}

{content}

))}
) }