{
  "name": "carousel-item",
  "type": "registry:component",
  "description": "Carousel item with slot for content",
  "files": [
    {
      "path": "ui/CarouselItem.astro",
      "type": "registry:component",
      "content": "---\ninterface Props {\n  class?: string;\n}\n\nconst { class: className = '' } = Astro.props;\n---\n\n<div\n  class={`carousel-item flex-shrink-0 basis-full ${className}`}\n  role=\"group\"\n>\n  <slot />\n</div>\n"
    }
  ],
  "category": "ui"
}