UNPKG

apphouse

Version:

Component library for React that uses observable state management and theme-able components.

13 lines (12 loc) 370 B
import React from 'react'; export type PlayPauseButtonSize = 'small' | 'medium' | 'large' | 'xLarge' | 'xxLarge'; export interface PlayPauseButtonProps { isPlaying?: boolean; onClick?: () => void; color?: string; /** * @default 'medium' */ size?: PlayPauseButtonSize; } export declare const PlayPauseButton: React.FC<PlayPauseButtonProps>;