22 lines
418 B
TypeScript
22 lines
418 B
TypeScript
'use client';
|
|
|
|
import { Group } from '@/ui/Group';
|
|
import React from 'react';
|
|
|
|
interface AuthFooterLinksProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
/**
|
|
* AuthFooterLinks
|
|
*
|
|
* Semantic container for links at the bottom of auth cards.
|
|
*/
|
|
export function AuthFooterLinks({ children }: AuthFooterLinksProps) {
|
|
return (
|
|
<Group direction="column" gap={3} align="center" fullWidth>
|
|
{children}
|
|
</Group>
|
|
);
|
|
}
|