redbadger/pride-london-app

View on GitHub
src/screens/EventDetailsScreen/IconList.js

Summary

Maintainability
A
0 mins
Test Coverage
// @flow
import React from "react";
import type { Node } from "react";
import { View, StyleSheet } from "react-native";
import LayoutColumn from "../../components/LayoutColumn";

type IconListProps = {|
  children: Node
|};

const IconList = ({ children }: IconListProps) => (
  <View style={styles.container}>
    <LayoutColumn spacing={4}>{children}</LayoutColumn>
  </View>
);

// Note: marginVertical are to accomodate touchables within IconItem.
const styles = StyleSheet.create({
  container: {
    marginVertical: -6
  }
});

export default IconList;