react-native-spotlight-guide
Version:
A modern, customizable and high-performance spotlight/walkthrough library for React Native with TypeScript support
55 lines (54 loc) • 1.28 kB
TypeScript
export declare const styles: {
childWrapper: {
alignSelf: "flex-start";
};
overlay: {
position: "absolute";
top: number;
left: number;
right: number;
bottom: number;
};
contentContainer: {
position: "absolute";
backgroundColor: string;
padding: number;
borderRadius: number;
shadowColor: string;
shadowOffset: {
width: number;
height: number;
};
shadowOpacity: number;
shadowRadius: number;
elevation: number;
maxWidth: number;
};
contentText: {
fontSize: number;
color: string;
marginBottom: number;
};
buttonContainer: {
flexDirection: "row";
justifyContent: "center";
alignItems: "center";
gap: number;
paddingHorizontal: number;
};
button: {
flexBasis: number;
paddingHorizontal: number;
paddingVertical: number;
backgroundColor: string;
borderRadius: number;
alignItems: "center";
justifyContent: "center";
};
buttonText: {
color: string;
fontSize: number;
fontWeight: "600";
textAlign: "center";
};
};