26 lines
413 B
TypeScript
26 lines
413 B
TypeScript
import clsx from 'clsx';
|
|
|
|
import styles from './CloseButton.module.css';
|
|
|
|
export function CloseButton({
|
|
onClose,
|
|
className,
|
|
}: {
|
|
onClose: () => void;
|
|
className?: string;
|
|
}) {
|
|
return (
|
|
<button
|
|
type="button"
|
|
className={clsx(
|
|
styles.close,
|
|
className,
|
|
'absolute top-4 right-5 close-button'
|
|
)}
|
|
onClick={() => onClose()}
|
|
>
|
|
×
|
|
</button>
|
|
);
|
|
}
|