Update footer logo.

ARCH-322
This commit is contained in:
Robert Raposa
2018-12-19 13:49:14 -05:00
parent bea36fb387
commit a284c286f5
2 changed files with 2 additions and 2 deletions

View File

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -1,12 +1,12 @@
import React from 'react';
import { Hyperlink, Icon } from '@edx/paragon';
import EdXLogo from '../../../assets/edx-sm.png';
import EdXFooterLogo from '../../../assets/edx-footer.png';
export default function Footer() {
function renderLogo() {
return (
<img src={EdXLogo} alt="edX logo" height="30" width="60" />
<img src={EdXFooterLogo} alt="edX logo" />
);
}