/** * 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 React from 'react'; import styled from '@emotion/styled'; import {Layout} from './Layout'; import {theme} from './theme'; const SandyToolbarContainer = styled(Layout.Horizontal)({ flexWrap: 'wrap', padding: theme.space.small, boxShadow: `inset 0px -1px 0px ${theme.dividerColor}`, }); export function Toolbar({ children, style, }: { children?: React.ReactNode; position?: 'bottom' | 'top'; compact?: boolean; style?: React.CSSProperties; }) { return ( {children} ); }