browsertrix/emails/components/warning.tsx
Emma Segal-Grossman 8db0e44843
Feat: New email templating system & service (#2712)
Co-authored-by: Ilya Kreymer <ikreymer@gmail.com>
2025-08-01 17:00:24 -04:00

8 lines
269 B
TypeScript

import { Text } from "@react-email/components";
export const Warning = ({ children }: { children: React.ReactNode }) => (
<Text className="text-base font-semibold text-red-600 bg-red-50 rounded-lg p-4 border border-red-500 border-solid">
{children}
</Text>
);