'use client'; import { FC } from 'react'; import { Image } from '../../../'; const VideoCoverImage: FC = ({ data: { src, alt }, ...props }: any) => { if (!src) return null; return {alt}; }; export default VideoCoverImage;