9 lines
258 B
React
9 lines
258 B
React
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>
|
|
)
|
|
} |