Files
liam-portfolio/src/lib/lucid-options.ts

15 lines
464 B
TypeScript

import { Code2, Github, Linkedin, LucideIcon, Notebook } from "lucide-react"
export const lucideOptions: { label: string, value: string }[] = [
{ label: "Code 2", value: "code-2" },
{ label: "Notebook", value: "notebook" },
{ label: "Github", value: "github" },
{ label: "Linkedin", value: "linkedin" },
];
export const lucidIconMap: Record<string, LucideIcon> = {
"code-2": Code2,
"notebook": Notebook,
"github": Github,
"linkedin": Linkedin,
};