mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-23 23:05:46 +00:00
chore: update Menu component
This commit is contained in:
@@ -1,16 +1,32 @@
|
|||||||
import { ReactNode } from 'react';
|
import { ReactNode } from 'react';
|
||||||
|
|
||||||
import { cn } from '@/lib/helper';
|
import { cn } from '@/lib/helper';
|
||||||
|
import { Size } from '@/types/theme';
|
||||||
|
|
||||||
interface MenuProps {
|
interface MenuProps {
|
||||||
children?: ReactNode;
|
children?: ReactNode;
|
||||||
|
size?: Size;
|
||||||
|
direction?: 'vertical' | 'horizontal';
|
||||||
className?: string;
|
className?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const Menu = ({ children, className }: MenuProps) => {
|
const Menu = ({
|
||||||
return (
|
children,
|
||||||
<ul className={cn('menu w-full p-0 gap-0.5', className)}>{children}</ul>
|
size = 'md',
|
||||||
);
|
direction = 'vertical',
|
||||||
|
className,
|
||||||
|
}: MenuProps) => {
|
||||||
|
const menuBaseClassName = cn('menu w-full', {
|
||||||
|
'menu-xs': size === 'xs',
|
||||||
|
'menu-sm': size === 'sm',
|
||||||
|
'menu-md': size === 'md',
|
||||||
|
'menu-lg': size === 'lg',
|
||||||
|
'menu-xl': size === 'xl',
|
||||||
|
'menu-vertical': direction === 'vertical',
|
||||||
|
'menu-horizontal': direction === 'horizontal',
|
||||||
|
});
|
||||||
|
|
||||||
|
return <ul className={cn(menuBaseClassName, className)}>{children}</ul>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Menu;
|
export default Menu;
|
||||||
|
|||||||
Reference in New Issue
Block a user