import clsx from 'clsx'; import { ReactElement } from 'react'; interface TodoItemProps { label: string; status: string; onChecked: (newState: string) => void; } export const TodoItem = ({ status, label, onChecked }: TodoItemProps): ReactElement => { return (