mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-19 00:40:40 +02:00
37 lines
870 B
TypeScript
37 lines
870 B
TypeScript
|
import React from "react";
|
||
|
|
||
|
export function LetterHead() {
|
||
|
return (
|
||
|
<table
|
||
|
role="presentation"
|
||
|
width="100%"
|
||
|
style={{
|
||
|
marginBottom: "24px"
|
||
|
}}
|
||
|
>
|
||
|
<tr>
|
||
|
<td
|
||
|
style={{
|
||
|
fontSize: "14px",
|
||
|
fontWeight: "bold",
|
||
|
color: "#F97317"
|
||
|
}}
|
||
|
>
|
||
|
Pangolin
|
||
|
</td>
|
||
|
<td
|
||
|
style={{
|
||
|
fontSize: "14px",
|
||
|
textAlign: "right",
|
||
|
color: "#6B7280"
|
||
|
}}
|
||
|
>
|
||
|
{new Date().getFullYear()}
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default LetterHead;
|