import React from "react"; import { Button } from "./Button/Button"; import Typography from "./typography/Typography"; type AcceptCookiesProps = { onClickAccept?: () => void; onClickCustomise?: () => void; }; export function AcceptCookies({ onClickAccept, onClickCustomise, }: AcceptCookiesProps) { return (
By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.
); }