import { Box, Text, useColorModeValue } from "@chakra-ui/react"; import { AlertTriangle, LucideIcon } from "lucide-react"; import NextLink from "next/link"; type EmptyStateProps = { text: string; icon: LucideIcon; "data-cy"?: string; }; export const EmptyState = (props: EmptyStateProps) => { const backgroundColor = useColorModeValue("white", "gray.800"); return ( {props.text} Go back to the dashboard ); }; export const TaskEmptyState = () => { return ; };