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

13 lines
368 B
TypeScript
Raw Normal View History

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