Fix linting issues

This commit is contained in:
Lei Nelissen
2022-05-17 23:45:57 +02:00
parent b989df43f3
commit f66b541e1b
3 changed files with 25 additions and 23 deletions

View File

@@ -1,33 +1,34 @@
import React, { PropsWithChildren } from 'react';
import { StyleSheet, View } from 'react-native';
export const shadowSmall = StyleSheet.create({
shadowColor: "#000",
shadowOffset: {
width: 0,
height: 2,
export const shadow = StyleSheet.create({
small: {
shadowColor: '#000',
shadowOffset: {
width: 0,
height: 2,
},
shadowOpacity: 0.1,
shadowRadius: 2.62,
elevation: 4,
},
shadowOpacity: 0.1,
shadowRadius: 2.62,
elevation: 4,
});
export const shadowMedium = StyleSheet.create({
shadowColor: "#000",
shadowOffset: {
width: 0,
height: 3,
},
shadowOpacity: 0.1,
shadowRadius: 4.65,
elevation: 6,
medium: {
shadowColor: '#000',
shadowOffset: {
width: 0,
height: 3,
},
shadowOpacity: 0.1,
shadowRadius: 4.65,
elevation: 6,
}
});
type SizeProp = 'small' | 'medium';
const shadowMap: Record<SizeProp, StyleSheet.NamedStyles<unknown>> = {
'small': shadowSmall,
'medium': shadowMedium,
'small': shadow.small,
'medium': shadow.medium,
};
export const ShadowWrapper = ({ children, size = 'small' }: PropsWithChildren<{ size?: SizeProp }>) => (