mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-09 15:05:48 +01:00
25 lines
486 B
TypeScript
25 lines
486 B
TypeScript
import { Group, Image, Text } from '@mantine/core';
|
|
import * as React from 'react';
|
|
|
|
export function Logo({ style }: any) {
|
|
return (
|
|
<Group spacing="xs">
|
|
<Image
|
|
width={50}
|
|
src="/imgs/logo.png"
|
|
style={{
|
|
position: 'relative',
|
|
}}
|
|
/>
|
|
<Text
|
|
sx={style}
|
|
weight="bold"
|
|
variant="gradient"
|
|
gradient={{ from: 'red', to: 'orange', deg: 145 }}
|
|
>
|
|
Homarr
|
|
</Text>
|
|
</Group>
|
|
);
|
|
}
|