ohif-viewer/platform/viewer/src/components/OHIFLogo/OHIFLogo.js
Igor Octaviano e7de8be2d8 fix: 🎸 switch ohif logo from text + font to SVG (#1021)
currently we are using font + text, not it was changed to use svg
instead

Closes: 723
2019-10-09 22:15:53 -04:00

21 lines
417 B
JavaScript

import './OHIFLogo.css';
import { Icon } from '@ohif/ui';
import React from 'react';
function OHIFLogo() {
return (
<a
target="_blank"
rel="noopener noreferrer"
className="header-brand"
href="http://ohif.org"
>
<Icon name="ohif-logo" className="header-logo-image" />
<Icon name="ohif-text-logo" className="header-logo-text" />
</a>
);
}
export default OHIFLogo;