Skip to content
Snippets Groups Projects

Resolve "Adding basic post component"

Files
23
 
import { FC, PropsWithChildren } from 'react';
 
import styles from '../../styles/NavMenuItem.module.css'
 
 
type NavMenuItemProps = {
 
label: string;
 
icon: any;
 
}
 
 
const NavMenuItem:FC<PropsWithChildren<NavMenuItemProps>> = ({
 
label,
 
icon
 
}) => {
 
 
return (
 
<div className={styles.menuItem}>
 
{icon}
 
<p className={styles.label}>{label}</p>
 
</div>
 
)
 
}
 
 
export default NavMenuItem;
 
\ No newline at end of file
Loading