import React, { SVGProps } from 'react' import { SendIcon } from '../../../../assets/icons' type SendButtonProps = { label: string isDisabled?: boolean isLoading?: boolean disableIcon?: boolean } & React.ButtonHTMLAttributes export const SendButton = ({ label, isDisabled, isLoading, disableIcon, ...props }: SendButtonProps) => { return ( ) } export const Spinner = (props: SVGProps) => ( )