/[sudobot]/trunk/docs/components/Navbar/DocsLink.tsx
ViewVC logotype

Annotation of /trunk/docs/components/Navbar/DocsLink.tsx

Parent Directory Parent Directory | Revision Log Revision Log


Revision 575 - (hide annotations)
Mon Jul 29 17:59:26 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 885 byte(s)
chore: add trunk
1 rakinar2 575 import styles from "@/styles/Drawer.module.css";
2     import { Button } from "@mui/material";
3     import { MdNavigateNext } from "react-icons/md";
4    
5     type DocsLinksProps = {
6     onNavigateNext: () => void;
7     };
8    
9     export default function DocsLink({ onNavigateNext }: DocsLinksProps) {
10     return (
11     <li className={styles.listItem}>
12     <div
13     className={`w-[100%] ${styles.listItemAnchor} pr-2`}
14     onClick={onNavigateNext}
15     >
16     <span>Docs</span>
17     <Button
18     style={{
19     minWidth: 0,
20     padding: 2,
21     margin: 0,
22     color: "white",
23     }}
24     >
25     <MdNavigateNext className={`inline-block`} size={20} />
26     </Button>
27     </div>
28     </li>
29     );
30     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26