Files
Homarr/components/layout/Logo.tsx
2022-05-12 13:07:47 +02:00

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>
);
}