ConceptPortal-public/rsconcept/frontend/src/components/Common/SelectorButton.tsx

42 lines
895 B
TypeScript
Raw Normal View History

import clsx from 'clsx';
import { CProps } from '../props';
2023-10-06 14:39:32 +03:00
interface SelectorButtonProps
extends CProps.Button {
2023-10-06 14:39:32 +03:00
text?: string
icon?: React.ReactNode
2023-11-05 16:31:49 +03:00
colors?: string
2023-10-06 14:39:32 +03:00
transparent?: boolean
}
function SelectorButton({
text, icon,
2023-11-05 16:31:49 +03:00
colors = 'clr-btn-default',
className,
2023-10-06 14:39:32 +03:00
transparent,
...restProps
2023-10-06 14:39:32 +03:00
}: SelectorButtonProps) {
return (
<button type='button'
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,
},
className,
!transparent && colors
)}
{...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
}
export default SelectorButton;