import clsx from 'clsx'; import { globalIDs } from '@/utils/constants'; import { CProps } from '../props'; interface ButtonProps extends CProps.Control, CProps.Colors, CProps.Button { text?: string; icon?: React.ReactNode; dense?: boolean; loading?: boolean; } function Button({ text, icon, title, loading, dense, disabled, noBorder, noOutline, colors = 'clr-btn-default', className, ...restProps }: ButtonProps) { return ( ); } export default Button;