mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-03 21:29:08 +00:00
Fix selection of icons, colors, add examples for personal finance
This commit is contained in:
@@ -21,6 +21,9 @@ import {
|
||||
House,
|
||||
Translate,
|
||||
Image,
|
||||
BowlFood,
|
||||
Lectern,
|
||||
Wallet,
|
||||
} from "@phosphor-icons/react";
|
||||
import { Markdown, OrgMode, Pdf, Word } from "@/app/components/logo/fileLogo";
|
||||
|
||||
@@ -83,6 +86,15 @@ const iconMap: IconMap = {
|
||||
Translate: (color: string, width: string, height: string) => (
|
||||
<Translate className={`${width} ${height} ${color} mr-2`} />
|
||||
),
|
||||
BowlFood: (color: string, width: string, height: string) => (
|
||||
<BowlFood className={`${width} ${height} ${color} mr-2`} />
|
||||
),
|
||||
Lectern: (color: string, width: string, height: string) => (
|
||||
<Lectern className={`${width} ${height} ${color} mr-2`} />
|
||||
),
|
||||
Wallet: (color: string, width: string, height: string) => (
|
||||
<Wallet className={`${width} ${height} ${color} mr-2`} />
|
||||
),
|
||||
};
|
||||
|
||||
function getIconFromIconName(
|
||||
|
||||
Reference in New Issue
Block a user