43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
import type { Dispatch, SetStateAction } from 'react';
|
|
import React, { useRef } from 'react';
|
|
import { Button as AriaButton } from 'react-aria-components';
|
|
import { useButton } from 'react-aria';
|
|
import { cn } from '~/utils/cn';
|
|
|
|
interface Props extends React.HTMLProps<HTMLButtonElement> {
|
|
variant?: 'heavy'
|
|
isDisabled?: boolean
|
|
children: React.ReactNode
|
|
label: string
|
|
}
|
|
|
|
export default function IconButton({ variant = 'light', ...props }: Props) {
|
|
const ref = useRef<HTMLButtonElement | null>(null);
|
|
const { buttonProps } = useButton(props, ref);
|
|
|
|
return (
|
|
<button
|
|
ref={ref}
|
|
{...buttonProps}
|
|
aria-label={props.label}
|
|
className={cn(
|
|
'rounded-full flex items-center justify-center p-1',
|
|
'focus:outline-none focus:ring',
|
|
props.isDisabled && 'opacity-60 cursor-not-allowed',
|
|
...(variant === 'heavy'
|
|
? [
|
|
'bg-headplane-900 dark:bg-headplane-50 font-semibold',
|
|
'hover:bg-headplane-900/90 dark:hover:bg-headplane-50/90',
|
|
'text-headplane-200 dark:text-headplane-800'
|
|
] : [
|
|
'bg-headplane-100 dark:bg-headplane-700/30 font-medium',
|
|
'hover:bg-headplane-200/90 dark:hover:bg-headplane-800/30',
|
|
]),
|
|
props.className,
|
|
)}
|
|
>
|
|
{props.children}
|
|
</button>
|
|
)
|
|
}
|