nyx-dashboard/components/Nav/Logo.js

12 lines
265 B
JavaScript
Raw Normal View History

2021-06-27 12:44:22 +02:00
import React from "react";
import { Box, Text } from "@chakra-ui/react";
export default function Logo(props) {
return (
<Box {...props}>
<Text fontSize="lg" fontWeight="bold">
Logo
</Text>
</Box>
);
}