Files
homarr/packages/icons/src/auto-icon-searcher.ts
2025-01-06 19:37:18 +01:00

10 lines
274 B
TypeScript

import type { Database } from "@homarr/db";
import { like } from "@homarr/db";
import { icons } from "@homarr/db/schema";
export const getIconForName = (db: Database, name: string) => {
return db.query.icons.findFirst({
where: like(icons.name, `%${name}%`),
});
};