revamp template
This commit is contained in:
9
src/components/menu/MenuIcon.tsx
Normal file
9
src/components/menu/MenuIcon.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
import clsx from 'clsx';
|
||||
|
||||
import { IMenuIconProps } from './';
|
||||
|
||||
const MenuIcon = ({ className, children }: IMenuIconProps) => {
|
||||
return <div className={clsx('menu-icon', className && className)}>{children}</div>;
|
||||
};
|
||||
|
||||
export { MenuIcon };
|
||||
Reference in New Issue
Block a user