moodist/src/components/menu/items/source.tsx
2024-02-24 19:54:41 +03:30

13 lines
244 B
TypeScript

import { LuGithub } from 'react-icons/lu/index';
import { Item } from '../item';
export function Source() {
return (
<Item
href="https://github.com/remvze/moodist"
icon={<LuGithub />}
label="Source Code"
/>
);
}