1 | var __rest = (this && this.__rest) || function (s, e) {
|
2 | var t = {};
|
3 | for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
4 | t[p] = s[p];
|
5 | if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
6 | for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
7 | if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
8 | t[p[i]] = s[p[i]];
|
9 | }
|
10 | return t;
|
11 | };
|
12 | import React from 'react';
|
13 | import { Platform, StyleSheet } from 'react-native';
|
14 | import normalize from '../helpers/normalizeText';
|
15 | import { fonts, withTheme } from '../config';
|
16 | import Text from '../text/Text';
|
17 | const CardFeaturedSubtitle = (_a) => {
|
18 | var _b;
|
19 | var { theme, style } = _a, props = __rest(_a, ["theme", "style"]);
|
20 | return (<Text style={StyleSheet.flatten([
|
21 | Object.assign({ fontSize: normalize(13), marginBottom: 8, color: (_b = theme === null || theme === void 0 ? void 0 : theme.colors) === null || _b === void 0 ? void 0 : _b.white }, Platform.select({
|
22 | android: Object.assign({}, fonts.android.black),
|
23 | default: {
|
24 | fontWeight: '400',
|
25 | },
|
26 | })),
|
27 | style,
|
28 | ])} {...props}/>);
|
29 | };
|
30 | export default withTheme(CardFeaturedSubtitle, 'CardFeaturedSubtitle');
|
31 |
|
\ | No newline at end of file |