mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-01 02:56:04 +01:00
11 lines
250 B
TypeScript
11 lines
250 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 }}>
|
|
Homarr
|
|
</Text>
|
|
);
|
|
}
|