We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6076f92 commit 20c7b46Copy full SHA for 20c7b46
3 files changed
packages/editor/src/components/ui/Label.js
@@ -1,7 +1,7 @@
1
/** @jsx jsx */
2
import { jsx } from '@emotion/core'
3
import { css } from 'theme-ui'
4
-import { Box } from 'theme-ui/layout'
+import { Box } from 'theme-ui'
5
6
export default props => (
7
<Box
packages/editor/src/components/ui/ListView.js
@@ -1,5 +1,5 @@
import styled from '@emotion/styled'
-import { Flex } from 'theme-ui/layout'
+import { Flex } from 'theme-ui'
export const ListViewItem = styled(Flex)`
border-bottom: thin solid;
packages/editor/src/components/ui/index.js
export { Styled, css } from 'theme-ui'
-export { Flex, Box } from 'theme-ui/layout'
+export { Flex, Box } from 'theme-ui'
export { ListView, ListViewItem } from './ListView'
export { default as Pre } from './Pre'
0 commit comments