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