WIP/ Feature :Register wizard coding style

This commit is contained in:
elforjani3
2020-10-07 19:58:43 +02:00
parent be6cb9c0e4
commit b6a8385adc
14 changed files with 843 additions and 70 deletions

View File

@@ -7,23 +7,17 @@ export default function AuthInsider({
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 }
{/* <Icon icon="bigcapital" height={37} width={214} /> */}
</div>
<div class="authentication-insider__content">{children}</div>
<div class="authentication-insider__footer">
<AuthCopyright />
</div>
</div>
)
}
);
}