export function HeyGenLogo() { return HeyGen Logo; } type IconSvgProps = { size?: number; width?: number; height?: number; className?: string; }; export function GithubIcon({ size = 24, width, height, ...props }: IconSvgProps) { return ( ); } export function ChevronDownIcon({ size = 24, width, height, ...props }: IconSvgProps) { return ( ); } export function SendIcon({ size = 24, width, height, ...props }: IconSvgProps) { return ( ); } export function MicIcon({ size = 24, width, height, ...props }: IconSvgProps) { return ( ); } export function MicOffIcon({ size = 24, width, height, ...props }: IconSvgProps) { return ( ); } export function LoadingIcon({ size = 24, width, height, className, ...props }: IconSvgProps) { return ( ); } export function CloseIcon({ size = 24, width, height, ...props }: IconSvgProps) { return ( ); }