import * as PropTypes from 'prop-types'; import * as React from 'react'; import { Segment, Text, ICSSInJSStyle } from '@fluentui/react-northstar'; import { OpenOutsideIcon } from '@fluentui/react-icons-northstar'; import MegaphoneIcon from './MegaphoneIcon'; import config from '../../config'; const wrapStyle: ICSSInJSStyle = { wordBreak: 'break-word' }; const ContributionPrompt: any = ({ children }) => ( {children &&
{children}
}

If there's no{' '} pull request {' '} open for this, you should{' '} contribute {' '} one!

); ContributionPrompt.propTypes = { children: PropTypes.node, }; export default ContributionPrompt;