From d53afb6b743ef68acca2599866ce294c7418f23f Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Tue, 20 Jan 2026 17:11:18 +0700 Subject: [PATCH] feat: create PopoverButton component --- src/components/popover/PopoverButton.tsx | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/components/popover/PopoverButton.tsx diff --git a/src/components/popover/PopoverButton.tsx b/src/components/popover/PopoverButton.tsx new file mode 100644 index 00000000..ad72e24e --- /dev/null +++ b/src/components/popover/PopoverButton.tsx @@ -0,0 +1,29 @@ +import Button, { ButtonProps } from '@/components/Button'; + +export interface PopoverButtonProps extends ButtonProps { + popoverTarget: string; + anchorName: string; +} + +const PopoverButton = ({ + children, + popoverTarget, + anchorName, + ...props +}: PopoverButtonProps) => { + return ( + + ); +}; + +export default PopoverButton;