mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
* allow multiple runs of handleSubmit * collect what we need in local state for reuse after method has run * run each step conditionally * split up handleSubmit * switch submit button text * empty values.feedback fix * error copy * tiny logic fix for consistency * code comments * submit button fixes * add loader during submission * add new white loader style * button style override fixes
17 lines
448 B
TypeScript
17 lines
448 B
TypeScript
import React, { ReactElement } from 'react'
|
|
import styles from './index.module.css'
|
|
|
|
export interface LoaderProps {
|
|
message?: string
|
|
white?: boolean
|
|
}
|
|
|
|
export default function Loader({ message, white }: LoaderProps): ReactElement {
|
|
return (
|
|
<div className={styles.loaderWrap}>
|
|
<span className={`${styles.loader} ${white ? styles.white : ''}`} />
|
|
{message && <span className={styles.message}>{message}</span>}
|
|
</div>
|
|
)
|
|
}
|