2
0
Files
bot/packages/bot-engine/src/components/ChatBlock/ChatStep/inputs/SendButton.tsx

59 lines
1.6 KiB
TypeScript
Raw Normal View History

2022-01-10 08:05:03 +01:00
import React from 'react'
import { SendIcon } from '../../../../assets/icons'
type SendButtonProps = {
label: string
2022-01-12 09:10:59 +01:00
isDisabled?: boolean
2022-05-24 14:25:15 -07:00
isLoading?: boolean
disableIcon?: boolean
2022-01-10 08:05:03 +01:00
} & React.ButtonHTMLAttributes<HTMLButtonElement>
export const SendButton = ({
label,
isDisabled,
2022-05-24 14:25:15 -07:00
isLoading,
disableIcon,
2022-01-10 08:05:03 +01:00
...props
}: SendButtonProps) => {
return (
<button
type="submit"
2022-05-24 14:25:15 -07:00
disabled={isDisabled || isLoading}
2022-01-10 08:05:03 +01:00
{...props}
2022-01-12 09:10:59 +01:00
className={
2022-05-24 14:25:15 -07:00
'py-2 px-4 justify-center font-semibold rounded-md text-white focus:outline-none flex items-center disabled:opacity-50 disabled:cursor-not-allowed disabled:brightness-100 transition-all filter hover:brightness-90 active:brightness-75 typebot-button ' +
2022-01-12 09:10:59 +01:00
props.className
}
2022-01-10 08:05:03 +01:00
>
2022-05-24 14:25:15 -07:00
{isLoading && (
<svg
className="animate-spin -ml-1 mr-3 h-5 w-5 text-white"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
>
<circle
className="opacity-25"
cx="12"
cy="12"
r="10"
stroke="currentColor"
strokeWidth="4"
></circle>
<path
className="opacity-75"
fill="currentColor"
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
></path>
</svg>
)}
<span className={'xs:flex ' + (disableIcon ? '' : 'hidden')}>
{label}
</span>
<SendIcon
className={'send-icon flex ' + (disableIcon ? 'hidden' : 'xs:hidden')}
/>
2022-01-10 08:05:03 +01:00
</button>
)
}