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 MoonFilledIcon({ size = 24, width, height, ...props }: IconSvgProps) { return ( ); } export function SunFilledIcon({ size = 24, width, height, ...props }: IconSvgProps) { return ( ); }