forked from github/plane
87f39d7372
* chore: empty state asset added * chore: empty state asset updated and image path helper function added * chore: empty state asset updated * chore: empty state asset updated and empty state details constant added * chore: empty state component, helper function and comicbox button added * chore: draft, archived and project issue empty state * chore: cycle, module and issue layout empty state * chore: analytics, dashboard, all issues, pages and project view empty state * chore:projects empty state * chore:projects empty state improvement * chore: cycle, module, view and page loader improvement * chore: code refactor
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`;
|