2025-07-31 09:50:40 -07:00
|
|
|
import { Button } from "@chakra-ui/react";
|
|
|
|
|
|
|
|
|
|
export default function DeleteAllButton ({onDeleteAll}) {
|
|
|
|
|
return (
|
|
|
|
|
<Button onClick={onDeleteAll} color="#FFFFFF" bg="#EF4444" _hover={{ bg: "bg.error", color: "#EF4444"}}>
|
|
|
|
|
Delete All
|
|
|
|
|
</Button>
|
|
|
|
|
)
|
|
|
|
|
}
|