import React from "react";
import { Visible } from "@arc-ui/components/Visible";
import { Spacing } from "@arc-ui/components/Spacing";
import {
VideoCardPlayer,
VideoCardPlayerProps,
VideoCardThumbnail,
} from "../../internal/VideoCardPlayer";
import {
VideoHeroCardContent,
VideoHeroCardContentProps,
} from "./components/VideoHeroCardContent";
export const VideoHeroCard = ({
content,
thumbnailImg,
player,
...props
}: VideoHeroCardProps) => {
return (
}
orientation="landscape"
playIconSize="l"
player={player}
{...props}
>
{content && (
)}
);
};
export interface VideoHeroCardProps {
/**
* Content for the video card.
*/
content: Omit;
/**
* Thumbnail for the video hero card.
*/
thumbnailImg: string;
/**
* Configuration for the video player.
*/
player: VideoCardPlayerProps["player"];
}