import React from 'react' import { Button } from '../../' import type { ButtonProps } from '../../' type BuyButtonProps = ButtonProps function BuyButton({ testId = 'fs-buy-button', icon, children, ...otherProps }: BuyButtonProps) { return ( ) } export default BuyButton