import React from "react"; import { Button } from "@sparkle/components/Button"; import { Counter } from "@sparkle/components/Counter"; import { cn } from "@sparkle/lib/utils"; interface NotificationButtonProps { buttonProps: React.ComponentProps; counterProps: React.ComponentProps; className?: string; } const NotificationButton = ({ className, buttonProps, counterProps, }: NotificationButtonProps) => { return (
); }; export { NotificationButton };