// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { AuthInsiderCard } from './_components'; import { Skeleton } from '@/components'; /** * Invite accept loading space. */ export function InviteAcceptLoading({ isLoading, children }) { return isLoading ? ( ) : ( children ); } function SkeletonField() { return ( XXXX XXXX XXXX XXXX XXXX XXXX ); } const Fields = styled.div` display: flex; flex-direction: column; gap: 20px; `; const SkeletonFieldRoot = styled.div` display: flex; flex-direction: column; gap: 8px; `;