chore: authorization module name changed and backend type and request functions added
This commit is contained in:
18
src/features/authorization/components/AuthenticationCard.tsx
Normal file
18
src/features/authorization/components/AuthenticationCard.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import { Paper } from '@mui/material';
|
||||
import React, { type PropsWithChildren } from 'react';
|
||||
|
||||
// Beacuse in the otp verify there is a element outside of the authentication card
|
||||
export const AuthenticationCard = ({ children }: PropsWithChildren) => {
|
||||
return (
|
||||
<Paper
|
||||
elevation={0}
|
||||
sx={{
|
||||
borderRadius: 4,
|
||||
p: 6,
|
||||
width: '34.5rem',
|
||||
}}
|
||||
>
|
||||
{children}
|
||||
</Paper>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user