katoikia-app/web-ui/web-react/src/AppFooter.js

21 lines
440 B
JavaScript
Raw Normal View History

2022-07-06 04:15:11 +00:00
import React from 'react';
export const AppFooter = (props) => {
2022-07-25 04:38:48 +00:00
return (
<div className="layout-footer">
<img
src={
props.layoutColorMode === 'light'
2022-08-28 07:47:26 +00:00
? 'images/deimos-logo.png'
2022-07-25 04:38:48 +00:00
: 'assets/layout/images/logo-white.svg'
}
alt="Logo"
2022-08-28 07:47:26 +00:00
height="40"
2022-07-25 04:38:48 +00:00
className="mr-2"
/>
por
<span className="font-medium ml-2">Deimos</span>
2022-07-25 04:38:48 +00:00
</div>
);
};