quintodrome/ui/src/personal/HelpMsg.jsx

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
168 B
React
Raw Normal View History

2021-06-09 18:35:20 -08:00
import HelpOutlineIcon from '@material-ui/icons/HelpOutline'
export const HelpMsg = ({ caption }) => (
<>
<HelpOutlineIcon />
&nbsp;&nbsp; {caption}
</>
)