diff --git a/web/components/src/VideoJsPlayer/index.tsx b/web/components/src/VideoJsPlayer/index.tsx index 1842a33d6..ea26016a1 100644 --- a/web/components/src/VideoJsPlayer/index.tsx +++ b/web/components/src/VideoJsPlayer/index.tsx @@ -5,6 +5,7 @@ import Player from 'video.js/dist/types/player' //import 'video.js/dist/video-js.css' import MediaError from 'video.js/dist/types/media-error' import useVideojsAnalytics from '../../../lib/hooks/useVideojsAnalytics' +import { Play, Pause } from '../../../icons' type VideoJSProps = Omit, 'src'> & { src: string @@ -152,7 +153,7 @@ export const VideoJS: React.FC = ({ hover:bg-black-100 `} > -
{isPlaying ? '⏸' : '⏵'}
+
{isPlaying ? : }
)} diff --git a/web/icons/Pause.tsx b/web/icons/Pause.tsx new file mode 100644 index 000000000..1d37fec51 --- /dev/null +++ b/web/icons/Pause.tsx @@ -0,0 +1,34 @@ +import { forwardRef, Ref, SVGProps } from 'react' + +export type PauseProps = { + /** Size, use if you need large icon resolutions + * @default 1em + */ + size?: string | number + /** @ignore */ + ref?: Ref +} & SVGProps + +export const Pause = forwardRef(function Pause( + { size = '1em', className = '', ...rest }, + ref, +) { + return ( + + + + ) +}) +export default Pause diff --git a/web/icons/Play.tsx b/web/icons/Play.tsx new file mode 100644 index 000000000..ac2e67671 --- /dev/null +++ b/web/icons/Play.tsx @@ -0,0 +1,29 @@ +import { forwardRef, Ref, SVGProps } from 'react' + +export type PlayProps = { + /** Size, use if you need large icon resolutions + * @default 24 + */ + size?: string | number + /** @ignore */ + ref?: Ref +} & SVGProps + +export const Play = forwardRef(function Play({ size = 24, className = '', ...rest }, ref) { + return ( + + + + ) +}) +export default Play diff --git a/web/icons/index.ts b/web/icons/index.ts index 381b38768..2c2b71206 100644 --- a/web/icons/index.ts +++ b/web/icons/index.ts @@ -4,3 +4,5 @@ export { default as Linkedin } from './Linkedin' export { default as Twitter } from './Twitter' export { default as Youtube } from './Youtube' export { default as ArrowRight } from './ArrowRight' +export { default as Play } from './Play' +export { default as Pause } from './Pause' diff --git a/web/pageComponents/shared/VideoPlayer.tsx b/web/pageComponents/shared/VideoPlayer.tsx index 11c1b85d7..9fe356c9e 100644 --- a/web/pageComponents/shared/VideoPlayer.tsx +++ b/web/pageComponents/shared/VideoPlayer.tsx @@ -27,7 +27,7 @@ const getHeightWidth = (aspectRatio: string, height?: number | string) => { if (!height) { switch (aspectRatio) { case VideoPlayerRatios['1:1']: - return 'h-[320px] sm: h-[320px] sm: w-[320px] md: h-[487px] md: w-[487px] lg: h-[600px] lg: w-[600px]' + return 'h-[320px] sm:h-[320px] sm:w-[320px] md:h-[487px] md:w-[487px] lg:h-[600px] lg:w-[600px]' case VideoPlayerRatios['16:9']: return 'h-[56.25%] w-full' case VideoPlayerRatios['9:16']: