Merge remote-tracking branch 'origin/feature/login/registerPage'

This commit is contained in:
Ahmed Bouhuolia
2020-04-30 23:19:55 +02:00
23 changed files with 1052 additions and 517 deletions

View File

@@ -0,0 +1,29 @@
import React from 'react';
import Icon from 'components/Icon';
import AuthCopyright from './AuthCopyright';
export default function AuthInsider({
logo = true,
copyright = true,
children,
}) {
return (
<div class="authentication-insider">
<div className={'authentication-insider__logo-section'}>
<Icon
icon='bigcapital'
height={37}
width={214} />
</div>
<div class="authentication-insider__content">
{ children }
</div>
<div class="authentication-insider__footer">
<AuthCopyright />
</div>
</div>
)
}