@nexara/nativeflow
Version:
Beautiful, responsive, and customizable UI components for React Native – built for performance and seamless experiences.
26 lines (25 loc) • 586 B
JavaScript
import React from "react";
import { StyledText } from "../StyledComponents/index.js";
import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
const MenuItemLabel = ({
fs,
style,
children,
textVariant = 'h5',
...rest
}) => {
return /*#__PURE__*/_jsx(_Fragment, {
children: /*#__PURE__*/_jsx(StyledText, {
fs: fs,
variant: textVariant,
color: "#000",
numberOfLines: 1,
flexShrink: 1,
...rest,
children: children
})
});
};
export default MenuItemLabel;
//# sourceMappingURL=MenuItemLabel.js.map
;