Files
Homarr/components/layout/Logo.tsx

16 lines
292 B
TypeScript
Raw Normal View History

2022-04-25 00:11:32 +02:00
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>
);
}