import React from 'react'; import cn from 'classnames'; import stl from './controlButton.module.css'; import { Popover, Button } from 'antd'; interface IProps { label: string; 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; } const ControlButton = ({ label, disabled = false, onClick, hasErrors = false, active = false, popover = undefined, customTags, }: IProps) => ( ); ControlButton.displayName = 'ControlButton'; export default ControlButton;