react-native-style-tachyons
Version:
functional, maintainable styling for react-native
49 lines (48 loc) • 802 B
TypeScript
export default function scaleStyles(rem: number): {
"absolute-fill": {
position: string;
top: number;
bottom: number;
right: number;
left: number;
};
absolute: {
position: string;
};
"top-0": {
top: number;
};
"top-1": {
top: number;
};
"top-2": {
top: number;
};
"right-0": {
right: number;
};
"right-1": {
right: number;
};
"right-2": {
right: number;
};
"bottom-0": {
bottom: number;
};
"bottom-1": {
bottom: number;
};
"bottom-2": {
bottom: number;
};
"left-0": {
left: number;
};
"left-1": {
left: number;
};
"left-2": {
left: number;
};
};