mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-26 19:06:11 +01:00
17 lines
386 B
React
17 lines
386 B
React
|
import { h } from 'preact';
|
||
|
import Heading from './Heading';
|
||
|
import Logo from './Logo';
|
||
|
|
||
|
export default function LinkedLogo() {
|
||
|
return (
|
||
|
<Heading size="lg">
|
||
|
<a className="transition-colors flex items-center space-x-4 dark:text-white hover:text-blue-500" href="/">
|
||
|
<div class="w-10">
|
||
|
<Logo />
|
||
|
</div>
|
||
|
Frigate
|
||
|
</a>
|
||
|
</Heading>
|
||
|
);
|
||
|
}
|