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 = { "code-2": Code2, "notebook": Notebook, "github": Github, "linkedin": Linkedin, };