You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
688 B
24 lines
688 B
import React, { FC } from 'react'; |
|
import classNames from 'classnames'; |
|
|
|
import { StatusState } from '../../utils/input-statuses'; |
|
|
|
export type FormStatusIndicatorProps = { |
|
status: StatusState; |
|
}; |
|
|
|
export const FormStatusIndicator: FC<FormStatusIndicatorProps> = ({ status }) => { |
|
const { type, icon, message } = status || {}; |
|
const classes = classNames({ |
|
'status-container': true, |
|
[`status-${type}`]: type, |
|
empty: !message, |
|
}); |
|
return ( |
|
<span className={classes}> |
|
{icon ? <span className="status-icon">{icon}</span> : null} |
|
{message ? <span className="status-message">{message}</span> : null} |
|
</span> |
|
); |
|
}; |
|
export default FormStatusIndicator;
|
|
|