import {Button as BaseButton} from '@shopify/checkout-ui-extensions'; import {createRemoteReactComponent} from '@remote-ui/react'; import type {ReactPropsFromRemoteComponentType} from '@remote-ui/react'; export type ButtonProps = ReactPropsFromRemoteComponentType; export const Button = createRemoteReactComponent(BaseButton, { fragmentProps: ['overlay'], });