mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-26 09:25:51 +00:00
12 lines
368 B
TypeScript
12 lines
368 B
TypeScript
import React from 'react';
|
|
|
|
import { Button, ButtonProps } from '@react-email/components';
|
|
|
|
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>
|
|
);
|