import { FileIcon } from "lucide-react" type IconProps = React.HTMLAttributes export const Icons = { logo: (props: IconProps) => ( ), twitter: (props: IconProps) => ( ), gitHub: (props: IconProps) => ( ), radix: (props: IconProps) => ( ), aria: (props: IconProps) => ( ), npm: (props: IconProps) => ( ), yarn: (props: IconProps) => ( ), pnpm: (props: IconProps) => ( ), react: (props: IconProps) => ( ), tailwind: (props: IconProps) => ( ), google: (props: IconProps) => ( ), apple: (props: IconProps) => ( ), paypal: (props: IconProps) => ( ), spinner: (props: IconProps) => ( ), json: (props: IconProps) => ( ), ts: (props: IconProps) => ( ), css: (props: IconProps) => ( ), bash: (props: IconProps) => ( ), v0: (props: IconProps) => ( ), } export function getIconForLanguageExtension(language: string) { switch (language) { case "json": return case "css": return case "js": case "jsx": case "ts": case "tsx": case "typescript": return default: return } }