mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 08:54:13 +00:00
13 lines
244 B
TypeScript
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"
|
|
/>
|
|
);
|
|
}
|