Files
outline/server/emails/templates/components/Heading.tsx
Tom Moor 5c24f9e1d5 chore: Email + mailer refactor (#3342)
* Huge email refactor

* fix: One rename too many

* comments
2022-04-07 16:50:04 -07:00

15 lines
221 B
TypeScript

import * as React from "react";
const style = {
fontWeight: 500,
fontSize: "18px",
};
const Heading: React.FC = ({ children }) => (
<p>
<span style={style}>{children}</span>
</p>
);
export default Heading;