react-cookie-manager
Version:
🍪 The ultimate React cookie consent solution. Automatically block trackers, manage consent preferences, and protect user privacy with an elegant UI. Perfect for modern web applications.
11 lines • 408 B
TypeScript
import { default as React } from 'react';
import { CookieConsenterClassNames } from '../types/types';
interface FloatingCookieButtonProps {
theme?: "light" | "dark";
onClick: () => void;
onClose?: () => void;
classNames?: CookieConsenterClassNames;
}
export declare const FloatingCookieButton: React.FC<FloatingCookieButtonProps>;
export {};
//# sourceMappingURL=FloatingCookieButton.d.ts.map