mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
12 lines
399 B
TypeScript
12 lines
399 B
TypeScript
import React from 'react';
|
|
|
|
import { Button, ButtonProps, Text } from '@react-email/components';
|
|
|
|
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>
|
|
);
|