mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-02 19:45:54 +01:00
16 lines
292 B
TypeScript
16 lines
292 B
TypeScript
import { Text } from '@mantine/core';
|
|
import * as React from 'react';
|
|
|
|
export function Logo({ style }: any) {
|
|
return (
|
|
<Text
|
|
sx={style}
|
|
weight="bold"
|
|
variant="gradient"
|
|
gradient={{ from: 'red', to: 'orange', deg: 145 }}
|
|
>
|
|
MyHomePage
|
|
</Text>
|
|
);
|
|
}
|