plane/apps/web/core/components/empty-state/helper.tsx
sriram veeraghanta 944b873184
chore: move all services inside the apps folder (#7321)
* chore: move all services inside the apps folder

* chore: rename apiserver to server
2025-07-03 00:44:13 +05:30

3 lines
173 B
TypeScript

export const getEmptyStateImagePath = (category: string, type: string, isLightMode: boolean) =>
`/empty-state/${category}/${type}-${isLightMode ? "light" : "dark"}.webp`;