plane/web/core/components/empty-state/helper.tsx
2024-06-11 14:39:52 +05:30

3 lines
173 B
TypeScript

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