| 1 |
import { __ } from '@wordpress/i18n'; |
| 2 |
import { close, Icon } from '@wordpress/icons'; |
| 3 |
|
| 4 |
export const DismissButton = ({ onClick, className, size }) => ( |
| 5 |
<button |
| 6 |
type="button" |
| 7 |
aria-label={__('Dismiss notification', 'extendify-local')} |
| 8 |
onClick={onClick} |
| 9 |
className={className} |
| 10 |
> |
| 11 |
<Icon icon={close} size={size} className="fill-current" /> |
| 12 |
</button> |
| 13 |
); |
| 14 |
|