import { type FC } from "react"; import { StyledText } from "../StyledComponents"; import type { MenuItemLabelProps } from "../../types"; const MenuItemLabel: FC = ({ children, ...rest }) => { return (<> {children} ) } export default MenuItemLabel; export type { MenuItemLabelProps };