Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Matheus <matheus_benini@hotmail.com> Co-authored-by: bosiraphael <raphael.bosi@gmail.com>
36 lines
918 B
TypeScript
36 lines
918 B
TypeScript
import { useTheme } from '@emotion/react';
|
|
|
|
import { IconChevronRight } from '@/ui/icon';
|
|
import { IconComponent } from '@/ui/icon/types/IconComponent';
|
|
|
|
import { MenuItemLeftContent } from '../internals/components/MenuItemLeftContent';
|
|
import {
|
|
StyledMenuItemBase,
|
|
StyledMenuItemLeftContent,
|
|
} from '../internals/components/StyledMenuItemBase';
|
|
|
|
export type MenuItemNavigateProps = {
|
|
LeftIcon?: IconComponent;
|
|
text: string;
|
|
onClick?: () => void;
|
|
className?: string;
|
|
};
|
|
|
|
export const MenuItemNavigate = ({
|
|
LeftIcon,
|
|
text,
|
|
className,
|
|
onClick,
|
|
}: MenuItemNavigateProps) => {
|
|
const theme = useTheme();
|
|
|
|
return (
|
|
<StyledMenuItemBase onClick={onClick} className={className}>
|
|
<StyledMenuItemLeftContent>
|
|
<MenuItemLeftContent LeftIcon={LeftIcon} text={text} />
|
|
</StyledMenuItemLeftContent>
|
|
<IconChevronRight size={theme.icon.size.sm} />
|
|
</StyledMenuItemBase>
|
|
);
|
|
};
|