import * as React from "react";
import { View } from "react-native";

type Props = {
  width: number;
};

export const Gutter = ({ width }: Props) => <View style={{ width }} />;
