UNPKG

kia-ml

Version:

Kia

21 lines 519 B
import * as React from "react"; import { View, Text } from "react-native"; import { spacing } from "../../theme"; const VIEW_STYLE = { alignItems: 'center', justifyContent: 'center', marginLeft: spacing[1], marginRight: spacing[1] }; const TEXT_STYLE = { fontSize: 20, color: "#555555" }; export function ThatDot() { return /*#__PURE__*/React.createElement(View, { style: VIEW_STYLE }, /*#__PURE__*/React.createElement(Text, { style: TEXT_STYLE }, ".")); } //# sourceMappingURL=that-dot.js.map