// @flow import * as React from "react"; import { MenuSeparator } from "reakit/Menu"; import styled from "styled-components"; export default function Separator(rest: {}) { return ( {(props) => } ); } const HorizontalRule = styled.hr` margin: 0.5em 12px; `;