Files
homarr/packages/icons/src/auto-icon-searcher.ts
2026-01-15 21:54:44 +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}%`),
});
};