nyx-dashboard/components/Nav/Logo.js

13 lines
234 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) {
2022-01-08 22:38:17 +01:00
return (
<Box {...props}>
<Text fontSize="lg" fontWeight="bold">
Logo
</Text>
</Box>
);
}