convert css box shadow to react native code example

Example 1: react-native shadow generator

shadowColor: "#000",
shadowOffset: {
	width: 0,
	height: 2,
},
shadowOpacity: 0.25,
shadowRadius: 3.84,

elevation: 5,

Example 2: convert css box shadow to react native

box-shadow: 0px 0px 40px "#6C6C70";
border-radius: 10px;

Example 3: convert css box shadow to react native

box-shadow: 0px 0px 6px "#6C6C70";
border-radius: 10px;

Example 4: convert css box shadow to react native

box-shadow: 0px 0px 2px "#6C6C70";
border-radius: 10px;

Example 5: convert css box shadow to react native

box-shadow: 0px 0px 2px "#6C6C70";
border-radius: 10px;

Example 6: convert css box shadow to react native

box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.15);
border-radius: 10px;