parent
599cd59d2f
commit
0bbef6205c
1 changed files with 19 additions and 0 deletions
@ -0,0 +1,19 @@ |
|||||||
|
import { FC } from 'react'; |
||||||
|
|
||||||
|
import MessageBox, { MessageBoxProps } from './MessageBox'; |
||||||
|
|
||||||
|
const InputMessageBox: FC<Partial<MessageBoxProps>> = ({ |
||||||
|
sx, |
||||||
|
text, |
||||||
|
...restProps |
||||||
|
} = {}) => ( |
||||||
|
<> |
||||||
|
{text && ( |
||||||
|
<MessageBox |
||||||
|
// eslint-disable-next-line react/jsx-props-no-spreading
|
||||||
|
{...{ ...restProps, sx: { marginTop: '.4em', ...sx }, text }} |
||||||
|
/> |
||||||
|
)} |
||||||
|
</> |
||||||
|
); |
||||||
|
export default InputMessageBox; |
Loading…
Reference in new issue