2023-12-15 17:34:50 +03:00
|
|
|
import clsx from 'clsx';
|
|
|
|
|
2023-12-18 19:42:27 +03:00
|
|
|
import { CProps } from '../props';
|
|
|
|
|
2023-10-06 14:39:32 +03:00
|
|
|
interface SelectorButtonProps
|
2023-12-18 19:42:27 +03:00
|
|
|
extends CProps.Button {
|
2023-10-06 14:39:32 +03:00
|
|
|
text?: string
|
|
|
|
icon?: React.ReactNode
|
2023-12-18 19:42:27 +03:00
|
|
|
|
2023-11-05 16:31:49 +03:00
|
|
|
colors?: string
|
2023-10-06 14:39:32 +03:00
|
|
|
transparent?: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
function SelectorButton({
|
2023-12-18 19:42:27 +03:00
|
|
|
text, icon,
|
2023-11-05 16:31:49 +03:00
|
|
|
colors = 'clr-btn-default',
|
2023-12-18 19:42:27 +03:00
|
|
|
className,
|
2023-10-06 14:39:32 +03:00
|
|
|
transparent,
|
2023-11-27 13:50:56 +03:00
|
|
|
...restProps
|
2023-10-06 14:39:32 +03:00
|
|
|
}: SelectorButtonProps) {
|
|
|
|
return (
|
2023-12-05 01:22:44 +03:00
|
|
|
<button type='button'
|
2023-12-15 17:34:50 +03:00
|
|
|
className={clsx(
|
|
|
|
'px-1 flex flex-start items-center gap-1',
|
|
|
|
'text-sm small-caps select-none',
|
|
|
|
'text-btn clr-text-controls',
|
|
|
|
'disabled:cursor-not-allowed cursor-pointer',
|
|
|
|
{
|
|
|
|
'clr-hover': transparent,
|
|
|
|
'border': !transparent,
|
|
|
|
},
|
2023-12-18 19:42:27 +03:00
|
|
|
className,
|
|
|
|
!transparent && colors
|
|
|
|
)}
|
2023-12-05 01:22:44 +03:00
|
|
|
{...restProps}
|
|
|
|
>
|
|
|
|
{icon ? icon : null}
|
|
|
|
{text ? <div className={'font-semibold whitespace-nowrap pb-1'}>{text}</div> : null}
|
|
|
|
</button>);
|
2023-10-06 14:39:32 +03:00
|
|
|
}
|
|
|
|
|
2023-12-13 14:32:57 +03:00
|
|
|
export default SelectorButton;
|