mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
23 lines
459 B
JavaScript
23 lines
459 B
JavaScript
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__content">
|
|
|
|
<div class="authentication-insider__form">
|
|
{ children }
|
|
</div>
|
|
|
|
<div class="authentication-insider__footer">
|
|
<AuthCopyright />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|