UNPKG

@nexara/nativeflow

Version:

Beautiful, responsive, and customizable UI components for React Native – built for performance and seamless experiences.

30 lines (29 loc) 802 B
"use strict"; import { View } from 'react-native'; import { verticalScale } from "../../helpers/ResponsiveCalculations.js"; import { StyledText } from "../StyledComponents/index.js"; import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime"; const DialogDescription = ({ fScale = 'sm', containerStyle, textStyle, children, ...rest }) => { return /*#__PURE__*/_jsx(_Fragment, { children: /*#__PURE__*/_jsx(View, { style: containerStyle, children: /*#__PURE__*/_jsx(StyledText, { style: [{ lineHeight: verticalScale(20) }, textStyle], variant: "tertiary", fScale: fScale, ...rest, children: children }) }) }); }; export default DialogDescription; //# sourceMappingURL=DialogDescription.js.map