/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format */ import {Glyph, styled, colors} from 'flipper'; import React from 'react'; type Props = { title: string; icon: string; active: boolean; onClick: () => void; }; const ToolbarIcon = styled.div({ marginRight: 9, marginTop: -3, marginLeft: 4, position: 'relative', // for settings popover positioning }); export default function(props: Props) { return ( ); }