Prettify common files

This commit is contained in:
Sofiya Tepikin
2022-08-23 12:55:25 +02:00
parent 732f19ed63
commit 1b8fd97d16
13 changed files with 52 additions and 52 deletions
+5 -5
View File
@@ -14,17 +14,17 @@ const AppIcon = ({ color, name, style, ...props }) => {
AppIcon.propTypes = {
color: PropTypes.string,
name: PropTypes.string.isRequired,
style: PropTypes.object
style: PropTypes.object,
}
AppIcon.defaultProps = {
color: 'black'
color: 'black',
}
const styles = StyleSheet.create({
icon: {
fontSize: Sizes.subtitle
}
fontSize: Sizes.subtitle,
},
})
export default AppIcon
export default AppIcon