immich/server/src/emails/components/button.component.tsx

13 lines
399 B
TypeScript
Raw Normal View History

import React from 'react';
import { Button, ButtonProps, Text } from '@react-email/components';
2025-07-01 22:48:41 -04:00
export const ImmichButton = ({ children, ...props }: ButtonProps) => (
<Button
{...props}
className="border bg-immich-primary rounded-full no-underline hover:no-underline text-white hover:text-gray-50 font-bold uppercase"
>
<Text className="my-3 mx-8">{children}</Text>
</Button>
);