@nexara/nativeflow
Version:
Beautiful, responsive, and customizable UI components for React Native – built for performance and seamless experiences.
36 lines (35 loc) • 1.16 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _react = _interopRequireDefault(require("react"));
var _reactNative = require("react-native");
var _ResponsiveCalculations = require("../../helpers/ResponsiveCalculations.js");
var _index = require("../StyledComponents/index.js");
var _jsxRuntime = require("react/jsx-runtime");
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
const DialogDescription = ({
textVariant = 'h5',
fs,
containerStyle,
textStyle,
children
}) => {
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
style: containerStyle,
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.StyledText, {
style: [{
lineHeight: (0, _ResponsiveCalculations.moderateVerticalScale)(13)
}, textStyle],
color: "#a1a1aa",
variant: textVariant,
fs: fs,
children: children
})
})
});
};
var _default = exports.default = DialogDescription;
//# sourceMappingURL=DialogDescription.js.map