import React from 'react'; import cn from 'classnames'; import { Popover, Button } from 'antd'; import stl from './controlButton.module.css'; interface IProps { label: React.ReactNode; icon?: string; disabled?: boolean; onClick?: () => void; count?: number; hasErrors?: boolean; active?: boolean; size?: number; noLabel?: boolean; labelClassName?: string; containerClassName?: string; noIcon?: boolean; popover?: React.ReactNode; customTags?: React.ReactNode; customKey?: string; } function ControlButton({ label, disabled = false, onClick, hasErrors = false, active = false, popover = undefined, customTags, customKey, }: IProps) { return ( ); } ControlButton.displayName = 'ControlButton'; export default ControlButton;