import { memo } from '@wordpress/element'; const Checkmark = (props) => { const { className, ...otherProps } = props; return ( ); }; export default memo(Checkmark);