Files
projet_gestion_commande/frontend-admin/node_modules/react-native-webview/lib/WebView.styles.d.ts
T
2026-02-07 22:33:02 +01:00

39 lines
789 B
TypeScript

declare const styles: {
container: {
flex: number;
overflow: "hidden";
};
loadingOrErrorView: {
position: "absolute";
flex: number;
justifyContent: "center";
alignItems: "center";
height: "100%";
width: "100%";
backgroundColor: string;
};
loadingProgressBar: {
height: number;
};
errorText: {
fontSize: number;
textAlign: "center";
marginBottom: number;
};
errorTextTitle: {
fontSize: number;
fontWeight: "500";
marginBottom: number;
};
webView: {
backgroundColor: string;
};
flexStart: {
alignSelf: "flex-start";
};
colorRed: {
color: string;
};
};
export default styles;