nexara-nativeflow
Version:
Beautiful, responsive, and customizable UI components for React Native – built for performance and seamless experiences.
31 lines (29 loc) • 762 B
JavaScript
;
import React from 'react';
import { StyleSheet } from "react-native";
import { StyledView } from "../StyledComponents/index.js";
import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
const Surface = ({}) => {
const STYLES = StyleSheet.create({
CONTAINER: {
height: 100,
width: 100,
backgroundColor: '#fff',
shadowColor: "#000",
// shadowOffset: {
// width: 100,
// height: 100,
// },
// shadowOpacity: 0.43,
// shadowRadius: 9.51,
elevation: 15
}
});
return /*#__PURE__*/_jsx(_Fragment, {
children: /*#__PURE__*/_jsx(StyledView, {
style: STYLES.CONTAINER
})
});
};
export default Surface;
//# sourceMappingURL=Surface.js.map