import React from 'react'; import { styled } from '@rangodev/ui/src/theme'; import { Typography } from '@rangodev/ui'; const Container = styled('div', { display: 'flex', width: '100%', justifyContent: 'end', alignItems: 'center', paddingTop: '$16', }); const Logo = styled('svg', { fill: '$foreground', width: '$24', margin: '0 $8 0 $16', }); const StyledAnchor = styled('a', { display: 'flex', justifyContent: 'center', alignItems: 'center', textDecoration: 'none', }); export function BottomLogo() { return ( Powered By RANGO ); }