UNPKG

@neuctra/ui

Version:

A modern, responsive, customizable React UI component library powered by Tailwind CSS and Vite.

24 lines (23 loc) 715 B
interface AudioTrack { src: string; title: string; artist?: string; thumbnail?: string; duration?: string; } interface AudioGalleryProps { tracks?: AudioTrack[]; className?: string; galleryTitle?: string; primaryColor?: string; backgroundColor?: string; textColor?: string; secondaryColor?: string; autoplay?: boolean; borderColor?: string; border?: number; maxWidth?: number; loop?: boolean; } export declare function AudioGallery({ tracks, className, galleryTitle, primaryColor, backgroundColor, textColor, secondaryColor, border, borderColor, maxWidth, autoplay, loop, }: AudioGalleryProps): import("react/jsx-runtime").JSX.Element; export {};