@graysham/mixmotion-player
Version:
<h1 align='center'> Mixmotion Player </h1>
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;