RC-2: remove additional sign ways component and correct locales in sign in and sign up pages
This commit is contained in:
@@ -1,40 +0,0 @@
|
||||
import FuseSvgIcon from '@fuse/core/FuseSvgIcon/FuseSvgIcon';
|
||||
import { Typography } from '@mui/material';
|
||||
import Button from '@mui/material/Button';
|
||||
import { memo } from 'react';
|
||||
|
||||
function AdditionalSignWays({ divider, text }) {
|
||||
return (
|
||||
<>
|
||||
{divider && (
|
||||
<div className="flex items-center mt-28">
|
||||
<div className="flex-auto mt-px border-t" />
|
||||
<Typography className="mx-8" color="text.secondary">
|
||||
{text}
|
||||
</Typography>
|
||||
<div className="flex-auto mt-px border-t" />
|
||||
</div>
|
||||
)}
|
||||
|
||||
<div className="flex items-center justify-center w-full mt-28 space-x-16">
|
||||
<Button variant="outlined" className="flex-auto max-w-fit">
|
||||
<FuseSvgIcon size={20} color="action">
|
||||
feather:facebook
|
||||
</FuseSvgIcon>
|
||||
</Button>
|
||||
<Button variant="outlined" className="flex-auto max-w-fit">
|
||||
<FuseSvgIcon size={20} color="action">
|
||||
feather:twitter
|
||||
</FuseSvgIcon>
|
||||
</Button>
|
||||
<Button variant="outlined" className="flex-auto max-w-fit">
|
||||
<FuseSvgIcon size={20} color="action">
|
||||
feather:github
|
||||
</FuseSvgIcon>
|
||||
</Button>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export default memo(AdditionalSignWays);
|
||||
Reference in New Issue
Block a user