Files
Web-Frontend/client/src/components/deprecated/DeleteAllButton.jsx
T

9 lines
258 B
React
Raw Normal View History

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>
)
}