/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import styled from '@essex/styled-components' import type { IDropdownStyles } from '@fluentui/react' export const BlockContainer = styled.div` display: flex; ` export const ControlBlock = styled.div` display: inline; gap: 8px; padding: 10px; ` export const Control = styled.div` width: 200px; ` export const dropdownStyles: Partial = { dropdown: { marginTop: '4px' }, } export const Table = styled.div` margin-top: 12px; height: calc(100vh - 220px); `