import { Button, Flex, Notice } from '@wordpress/components'; import { NoticeProps } from '@wordpress/components/build-types/notice/types'; const Notification = ( { actions, children, ...props }: NoticeProps ) => { return ( { children } { actions?.map( ( { label, className, onClick, url, variant } ) => ( ) ) } ); }; export default Notification;