12 lines
305 B
TypeScript
12 lines
305 B
TypeScript
import { Container, Text } from '@react-email/components';
|
|
|
|
export function EmailFooter(props: React.PropsWithChildren) {
|
|
return (
|
|
<Container className="mt-[24px]">
|
|
<Text className="px-4 text-[12px] leading-[20px] text-gray-300">
|
|
{props.children}
|
|
</Text>
|
|
</Container>
|
|
);
|
|
}
|