forked from BLC/sgeUpdated
Add 'sge-frontend/' from commit '5fa787e054b25ac53edc7ff0275ea7960a709401'
git-subtree-dir: sge-frontend git-subtree-mainline:876c278ac4git-subtree-split:5fa787e054
This commit is contained in:
34
sge-frontend/src/components/pdf-header/index.js
Normal file
34
sge-frontend/src/components/pdf-header/index.js
Normal file
@@ -0,0 +1,34 @@
|
||||
import React from "react";
|
||||
import { Row } from "reactstrap";
|
||||
|
||||
const PdfHeader = ({ areaName, year }) => {
|
||||
return (
|
||||
<Row className="mx-0 mt-2 mb-5 p-2 border-bottom">
|
||||
<div className="d-flex align-items-center justify-content-between">
|
||||
<div>
|
||||
<img alt="SecapSoft" src="./Secapsoft.png" width={"110"} height={"110"} />
|
||||
</div>
|
||||
<div>
|
||||
<span style={{ fontSize: "30px", fontWeight: "bold" }}>
|
||||
{areaName} Sera Gazı Emisyonu {year} Yılı Envanteri
|
||||
</span>
|
||||
</div>
|
||||
<div>
|
||||
<img
|
||||
alt="Enerji İstanbul"
|
||||
src="./enerji-istanbul-logo.png"
|
||||
width={"200"}
|
||||
height={"80"}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</Row>
|
||||
);
|
||||
};
|
||||
|
||||
export default PdfHeader;
|
||||
|
||||
Reference in New Issue
Block a user