import { Button } from '@wordpress/components'; import { FunctionComponent } from 'react'; interface Props { href: string; onClick?: () => void; children?: React.ReactNode; } const BillingButton: FunctionComponent< Props > = ( { href, children, onClick = () => null } ) => { return ( ); }; export default BillingButton;