mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3 lines
173 B
TypeScript
3 lines
173 B
TypeScript
|
export const getEmptyStateImagePath = (category: string, type: string, isLightMode: boolean) =>
|
||
|
`/empty-state/${category}/${type}-${isLightMode ? "light" : "dark"}.webp`;
|