diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-03-26 20:56:54 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-03-26 20:56:54 +0100 |
commit | deb1bb57ae0d5c0766632d7255de4e478cbd4bb0 (patch) | |
tree | 5f3fae945456c50486296784f6628bc48334d444 /components/navbarItem.tsx | |
parent | a01b3f2d8fae7fa8aaa9f2c6b3ae86a91dc9b0e3 (diff) |
navbar component + layout variables
Diffstat (limited to 'components/navbarItem.tsx')
-rw-r--r-- | components/navbarItem.tsx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/components/navbarItem.tsx b/components/navbarItem.tsx deleted file mode 100644 index b724444..0000000 --- a/components/navbarItem.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import { ReactNode } from 'react'; - -export default function NavbarItem(props: { - icon?: ReactNode; - title: string; - href: string; -}) { - return <a href={props.href} className="navbarItem"> - <div> - {props.icon} - <span>{props.title}</span> - </div> - </a> -} |