import {Skeleton} from '@common/ui/skeleton/skeleton'; import {MediaPlayIcon} from '@common/icons/media/media-play'; import React from 'react'; interface Props { animate?: boolean; } export function VideoPlayerSkeleton({animate}: Props) { return (
); }