/** * External dependencies */ import { Button } from '@wordpress/components'; /** * Internal dependencies */ import './close-button.scss'; type Props = { onClick?: () => void; }; export const CloseButton = ( { onClick }: Props ) => { return (
); };