Files
newsletter-hackernews/components/emails/components/note.tsx
2023-12-19 20:04:32 +01:00

19 lines
351 B
TypeScript

type NoteProps = {
children: React.ReactNode;
};
export function Note({ children }: NoteProps) {
return (
<div
style={{
marginTop: '2rem',
padding: '1.5rem 1.5rem',
backgroundColor: '#EBF1F5',
color: '#718096'
}}
>
<div style={{ fontSize: '0.875rem' }}>{children}</div>
</div>
);
}