mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 21:39:40 +02:00
22 lines
368 B
TypeScript
22 lines
368 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-2 right-2')}
|
|||
|
onClick={() => onClose()}
|
|||
|
>
|
|||
|
×
|
|||
|
</button>
|
|||
|
);
|
|||
|
}
|