diff --git a/islands/TodoList.tsx b/islands/TodoList.tsx index 3612a69..2842745 100644 --- a/islands/TodoList.tsx +++ b/islands/TodoList.tsx @@ -2,6 +2,8 @@ import { Todo, UserWithTodos } from '@homeman/models.ts' import { JSX } from 'preact' import { Button } from '@homeman/components/Button.tsx' import { Avatar } from '@homeman/components/Avatar.tsx' +import { ChevronDoubleDownOutline, ChevronDownOutline } from 'preact-heroicons' +import { ChevronDownMiniSolid } from 'preact-heroicons' export interface Props { user: UserWithTodos @@ -90,14 +92,15 @@ export function TodoList( {doneTodos.length > 0 ? ( - - +{doneTodos.length} completed todos -
- -
-
+
+ + +{doneTodos.length} completed todos + + + +
) : ''}