mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-02 03:25:56 +01:00
17 lines
273 B
JavaScript
17 lines
273 B
JavaScript
//@flow
|
|
import React from 'react';
|
|
|
|
type Props = {
|
|
};
|
|
|
|
class HgAvatar extends React.Component<Props> {
|
|
|
|
render() {
|
|
// TODO we have to use Image from ui-components
|
|
return <img src="/scm/images/hg-logo.png" alt="Mercurial Logo" />;
|
|
}
|
|
|
|
}
|
|
|
|
export default HgAvatar;
|