diff --git a/src/app/components/media/Video.tsx b/src/app/components/media/Video.tsx
index 15d49f3..484d17b 100644
--- a/src/app/components/media/Video.tsx
+++ b/src/app/components/media/Video.tsx
@@ -4,6 +4,28 @@ import { Box, IconButton, Icon, Icons, Tooltip, TooltipProvider, Text } from 'fo
import * as css from './media.css';
import * as videoCss from './videoControls.css';
+/**
+ * Fullscreen icon SVG
+ */
+function FullscreenIcon() {
+ return (
+
+ );
+}
+
+/**
+ * Exit fullscreen icon SVG
+ */
+function ExitFullscreenIcon() {
+ return (
+
+ );
+}
+
type VideoProps = VideoHTMLAttributes & {
disableControls?: boolean;
};
@@ -146,7 +168,7 @@ export const Video = forwardRef(
>
)}