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.
14 lines (13 loc) • 420 B
TypeScript
export declare const sidesArr: readonly ["l", "r", "b", "t", "tl", "bl", "tr", "br", "h", "v"];
export declare const sidesRadius: readonly ["tl", "bl", "tr", "br"];
type Sides = typeof sidesArr[number];
export type SidesRadius = typeof sidesRadius[number];
export declare const SideMatcher: {
l: string[];
r: string[];
b: string[];
t: string[];
h: string[];
v: string[];
};
export default Sides;