* Add new package * Add twenty-emails package * Use generated files from twenty-emails in twenty-server * Fix deleted file * Import emails templates properly
18 lines
325 B
TypeScript
18 lines
325 B
TypeScript
import { Img } from '@react-email/components';
|
|
|
|
const logoStyle = {
|
|
marginBottom: '40px',
|
|
};
|
|
|
|
export const Logo = () => {
|
|
return (
|
|
<Img
|
|
src="https://app.twenty.com/icons/windows11/Square150x150Logo.scale-100.png"
|
|
alt="Twenty logo"
|
|
width="40"
|
|
height="40"
|
|
style={logoStyle}
|
|
/>
|
|
);
|
|
};
|