{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "testimonials-marquee", "type": "registry:component", "title": "Testimonials Marquee", "author": "ncdai ", "description": "A testimonials marquee component for showcasing user feedback in a scrolling format.", "registryDependencies": [ "@ncdai/utils", "@kibo-ui/marquee" ], "files": [ { "path": "src/registry/testimonials-marquee/testimonials-marquee.tsx", "content": "import { cn } from \"@/lib/utils\";\n\nexport function Testimonial({\n className,\n children,\n ...props\n}: React.ComponentProps<\"figure\">) {\n return (\n \n {children}\n \n );\n}\n\nexport function TestimonialQuote({\n className,\n children,\n ...props\n}: React.ComponentProps<\"blockquote\">) {\n return (\n \n {children}\n \n );\n}\n\nexport function TestimonialAuthor({\n className,\n children,\n ...props\n}: React.ComponentProps<\"figcaption\">) {\n return (\n \n {children}\n \n );\n}\n\nexport function TestimonialAvatar({\n className,\n children,\n ...props\n}: React.ComponentProps<\"div\">) {\n return (\n \n {children}\n \n );\n}\n\nexport function TestimonialAvatarImg({\n className,\n src,\n alt,\n ...props\n}: React.ComponentProps<\"img\">) {\n return (\n \n );\n}\n\nexport function TestimonialAvatarRing({\n className,\n ...props\n}: React.ComponentProps<\"div\">) {\n return (\n \n );\n}\n\nexport function TestimonialAuthorName({\n className,\n children,\n ...props\n}: React.ComponentProps<\"div\">) {\n return (\n \n {children}\n \n );\n}\n\nexport function TestimonialAuthorTagline({\n className,\n children,\n ...props\n}: React.ComponentProps<\"div\">) {\n return (\n \n {children}\n \n );\n}\n\nexport function TestimonialVerifiedBadge({\n className,\n ...props\n}: React.ComponentProps<\"svg\">) {\n return (\n \n \n \n );\n}\n", "type": "registry:component" } ], "docs": "https://chanhdai.com/components/testimonials-marquee" }