mirror of
https://github.com/remvze/moodist.git
synced 2026-03-07 04:23:12 +08:00
14 lines
244 B
TypeScript
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"
|
|
/>
|
|
);
|
|
}
|