mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-03 09:34:48 +02:00
36 lines
870 B
TypeScript
36 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;
|