react-native-global-styler
Version:
Lightweight and developer-friendly React Native styling toolkit with prebuilt styled components and a powerful useGlobalStyler hook for shorthand props like m_10, radius_12, resize_cover, and more.
10 lines (9 loc) • 353 B
JavaScript
const TxtMatcher = {
size_xs: { key: "fontSize", value: 10 },
size_sm: { key: "fontSize", value: 12 },
size_md: { key: "fontSize", value: 14 },
size_lg: { key: "fontSize", value: 16 },
size_xl: { key: "fontSize", value: 18 },
size_2xl: { key: "fontSize", value: 20 },
};
export const TextMatcher = Object.assign({}, TxtMatcher);