apphouse
Version:
Component library for React that uses observable state management and theme-able components.
21 lines (20 loc) • 592 B
TypeScript
/// <reference types="react" />
import { CSSProperties } from 'glamor';
/**
* Interface for styles to be applied to the audio player component
*/
export interface AudioPlayerStyles {
container?: CSSProperties;
audio?: CSSProperties;
}
/**
* Interface for the AudioPlayer component
*/
interface AudioPlayerProps extends React.HTMLProps<HTMLAudioElement> {
styleOverwrites?: AudioPlayerStyles;
}
/**
* A simple audio player component that plays audio files.
*/
export declare const AudioPlayer: (props: AudioPlayerProps) => import("react/jsx-runtime").JSX.Element;
export {};