| 1 |
import { __ } from '@wordpress/i18n'; |
| 2 |
|
| 3 |
export const CloseButton = ({ onClose }) => ( |
| 4 |
<button |
| 5 |
className="block h-6 w-6 bg-transparent p-px text-inherit outline-hidden focus:shadow-none focus:ring-wp focus:ring-design-main" |
| 6 |
type="button" |
| 7 |
onClick={onClose} |
| 8 |
data-test="modal-close-button" |
| 9 |
aria-label={__('Close', 'extendify-local')} |
| 10 |
> |
| 11 |
<svg |
| 12 |
style={{ fill: 'currentColor' }} |
| 13 |
xmlns="http://www.w3.org/2000/svg" |
| 14 |
viewBox="0 0 24 24" |
| 15 |
> |
| 16 |
<title>{__('Close', 'extendify-local')}</title> |
| 17 |
<path d="M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z" /> |
| 18 |
</svg> |
| 19 |
</button> |
| 20 |
); |
| 21 |
|