diff --git a/src/ui/component/common/help-link.jsx b/src/ui/component/common/help-link.jsx new file mode 100644 index 000000000..867288f1e --- /dev/null +++ b/src/ui/component/common/help-link.jsx @@ -0,0 +1,13 @@ +// @flow +import * as ICONS from 'constants/icons'; +import React from 'react'; +import Button from 'component/button'; + +type Props = { + href: string, +}; + +export default function HelpLink(props: Props) { + const { href } = props; + return