mirror of
				https://github.com/ajnart/homarr.git
				synced 2025-11-03 20:15:57 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			288 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			288 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>
 | 
						|
  );
 | 
						|
}
 |