diff --git a/native/components/color-selector-button.react.js b/native/components/color-selector-button.react.js
new file mode 100644
--- /dev/null
+++ b/native/components/color-selector-button.react.js
@@ -0,0 +1,24 @@
+// @flow
+
+import * as React from 'react';
+import { View, StyleSheet } from 'react-native';
+
+type ColorSelectorButtonProps = {
+  +color: string,
+};
+
+function ColorSelectorButton(props: ColorSelectorButtonProps): React.Node {
+  const { color } = props;
+  return <View style={[styles.button, { backgroundColor: color }]} />;
+}
+
+const styles = StyleSheet.create({
+  button: {
+    borderRadius: 100,
+    height: 40,
+    margin: 15,
+    width: 40,
+  },
+});
+
+export default ColorSelectorButton;