@nexara/nativeflow
Version:
Beautiful, responsive, and customizable UI components for React Native – built for performance and seamless experiences.
31 lines (30 loc) • 847 B
JavaScript
;
import React from 'react';
import { View } from 'react-native';
import { moderateVerticalScale } from "../../helpers/ResponsiveCalculations.js";
import { StyledText } from "../StyledComponents/index.js";
import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
const DialogDescription = ({
textVariant = 'h5',
fs,
containerStyle,
textStyle,
children
}) => {
return /*#__PURE__*/_jsx(_Fragment, {
children: /*#__PURE__*/_jsx(View, {
style: containerStyle,
children: /*#__PURE__*/_jsx(StyledText, {
style: [{
lineHeight: moderateVerticalScale(13)
}, textStyle],
color: "#a1a1aa",
variant: textVariant,
fs: fs,
children: children
})
})
});
};
export default DialogDescription;
//# sourceMappingURL=DialogDescription.js.map