import Link from "next/link"; import * as React from "react"; import type { SVGProps } from "react"; export const VercelIcon = ({ size = 17 }) => { return ( Vercel Icon ); }; export const SpinnerIcon = ({ size = 16 }: { size?: number }) => ( Spinner Icon ); export const Github = (props: SVGProps) => ( GitHub Icon ); export function StarButton() { return ( Star on GitHub ); } export const XAiIcon = ({ size = 16 }) => { return ( xAI Icon ); };