mixmotion-player
Version:
Stream new music with dynamic visuals. A React audio player component with Mixcloud integration and fullscreen visual effects for a rich, immersive listening experience. It offers versatile access to Mixcloud content from playlists to users, genres and sh
15 lines (13 loc) • 479 B
TypeScript
import { default as React, CSSProperties } from 'react';
type PlayerButtonProps = {
children?: React.ReactNode;
handlePress?: () => void | undefined;
handleRelease?: () => void | undefined;
handleArrowPress?: (dir: string) => boolean;
focusKey: string;
className?: string;
style?: CSSProperties;
disabled?: boolean;
};
declare function PlayerButton(props: PlayerButtonProps): import("react/jsx-runtime").JSX.Element;
export default PlayerButton;