diff --git a/src/app/components/media/Video.tsx b/src/app/components/media/Video.tsx index 03108c3..3018347 100644 --- a/src/app/components/media/Video.tsx +++ b/src/app/components/media/Video.tsx @@ -1,10 +1,168 @@ -import React, { VideoHTMLAttributes, forwardRef } from 'react'; +import React, { VideoHTMLAttributes, forwardRef, useRef, useState, useEffect } from 'react'; import classNames from 'classnames'; +import { Box, IconButton, Icon, Icons, Tooltip, TooltipProvider, Text } from 'folds'; import * as css from './media.css'; +import * as videoCss from './videoControls.css'; -export const Video = forwardRef>( - ({ className, ...props }, ref) => ( - // eslint-disable-next-line jsx-a11y/media-has-caption -