1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-02 15:09:07 +00:00
conky/web/components/Footer.tsx

17 lines
411 B
TypeScript
Raw Normal View History

2022-10-14 14:55:06 +00:00
import CopyleftIcon from './CopyleftIcon'
const Footer: React.FunctionComponent = () => {
return (
<div className="flex py-4 justify-center items-center">
<div className="px-1">
<CopyleftIcon width={20} height={20} />
</div>
<div className="px-1 font-sans text-sm">
<p>{new Date().getFullYear()} Conky developers</p>
</div>
</div>
)
}
export default Footer