@brizy/ui
Version:
React elements in Brizy style
18 lines (17 loc) • 475 B
TypeScript
import { ReactElement } from "react";
export interface Props {
src: string;
isAutoPlay: boolean;
isVisual: boolean;
showArtwork: boolean;
showLikeButton: boolean;
showBuyButton: boolean;
showDownloadButton: boolean;
showShareButton: boolean;
showComments: boolean;
showPlayCounts: boolean;
showUsername: boolean;
controlsColor: string;
className?: string;
}
export declare const SoundCloud: (props: Props) => ReactElement;