@open-tender/ui
Version:
A component library for use with the Open Tender web app
16 lines (15 loc) • 552 B
TypeScript
import React from 'react';
import { Styles } from '../types';
declare const Video: ({ className, classes, style, src, alt, loop, controls, muted, playsInline, autoPlay }: {
className: string;
classes?: string | undefined;
style?: Styles | undefined;
src?: string | undefined;
alt?: string | undefined;
loop?: boolean | undefined;
controls?: boolean | undefined;
muted?: boolean | undefined;
playsInline?: boolean | undefined;
autoPlay?: boolean | undefined;
}) => React.JSX.Element | null;
export default Video;