import type { SVGProps } from "react"; export function LogoIcon(props: SVGProps) { return ( ); } export function ArrowRightIcon(props: SVGProps) { return ( ); } export function GithubIcon(props: SVGProps) { return ( ); } export function ChevronDownIcon({ className = "", ...props }: SVGProps) { return ( ); } export function HamburgerIcon(props: SVGProps) { return ( ); } export function CloseIcon(props: SVGProps) { return ( ); }