/** * @file dasboard/header/NewTaskButton.tsx * @description Client component rendering an interactive trigger button for creating new tasks. */ "use client"; import { Plus } from "lucide-react"; /** * Renders a stylized button component with an icon and active state animations to initiate task creation. * * @returns {JSX.Element} The rendered new task button component. */ export default function NewTaskButton() { return ( ); }