Files
moodist/src/components/toolbar/menu/items/source.tsx
2024-08-31 19:25:51 +03:30

14 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"
/>
);
}