urbi-exhibitions
Version:
10 lines (9 loc) • 405 B
TypeScript
import { PropsWithChildren } from 'react';
export interface PlayButtonProps extends PropsWithChildren {
onPlay: () => void;
className?: string;
isActive?: boolean;
dir?: string;
style?: React.CSSProperties;
}
export declare const PlayButton: import('react').MemoExoticComponent<({ onPlay, className, children, isActive, dir, style, }: PlayButtonProps) => import("react").JSX.Element>;