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