nyx-dashboard/components/Nav/Logo.js

13 lines
246 B
JavaScript
Raw Normal View History

2023-03-03 17:48:43 +01: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>
);
}