design: first impl of logo, still with glitch
This commit is contained in:
@@ -1,10 +1,13 @@
|
||||
import { LiveLogo } from './LiveLogo';
|
||||
|
||||
interface Props {
|
||||
accent: string;
|
||||
peerCount: number;
|
||||
}
|
||||
|
||||
export const Brand = ({ peerCount }: Props) => (
|
||||
export const Brand = ({ accent, peerCount }: Props) => (
|
||||
<div className="brand">
|
||||
<div className="brand-mark">S</div>
|
||||
<LiveLogo className="brand-mark" accent={accent} size={28} />
|
||||
<div className="brand-name">SoftLAN</div>
|
||||
{peerCount > 0 && (
|
||||
<span
|
||||
|
||||
Reference in New Issue
Block a user