bb-plane-fork/packages/ui/src/utils/icons.ts
Prateek Shourya 53e6a62a12
fix: move lucide related constants to ui package (#7226)
* fix: move lucide related constants to ui package

* chore: update yarn.lock
2025-06-17 17:06:05 +05:30

7 lines
239 B
TypeScript

import { LUCIDE_ICONS_LIST } from "..";
/**
* Returns a random icon name from the LUCIDE_ICONS_LIST array
*/
export const getRandomIconName = (): string =>
LUCIDE_ICONS_LIST[Math.floor(Math.random() * LUCIDE_ICONS_LIST.length)].name;