diff --git a/striker-ui/components/InputMessageBox.tsx b/striker-ui/components/InputMessageBox.tsx new file mode 100644 index 00000000..8f2edf86 --- /dev/null +++ b/striker-ui/components/InputMessageBox.tsx @@ -0,0 +1,19 @@ +import { FC } from 'react'; + +import MessageBox, { MessageBoxProps } from './MessageBox'; + +const InputMessageBox: FC> = ({ + sx, + text, + ...restProps +} = {}) => ( + <> + {text && ( + + )} + +); +export default InputMessageBox;