mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
12 lines
335 B
JavaScript
12 lines
335 B
JavaScript
import React from 'react';
|
|
import appMeta from 'config/app';
|
|
import Icon from 'components/Icon';
|
|
export default function() {
|
|
return (
|
|
<div className="sidebar__head">
|
|
<div className="sidebar__head-logo">
|
|
<Icon icon={'bigcapital'} width={140} height={28} className="bigcapital--alt" />
|
|
</div>
|
|
</div>
|
|
);
|
|
}; |