Files
full-stack-fastapi-template/packages/react-email/ui/Link.tsx
T

8 lines
208 B
TypeScript

type LinkProps = React.PropsWithChildren & { href: string }
export const Link = ({ children, href }: LinkProps) => (
<a href={href} className="text-brand-dark underline break-all">
{children}
</a>
)