Skip to content

Commit 20c7b46

Browse files
committed
Update theme ui imports for layout components
1 parent 6076f92 commit 20c7b46

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/editor/src/components/ui/Label.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** @jsx jsx */
22
import { jsx } from '@emotion/core'
33
import { css } from 'theme-ui'
4-
import { Box } from 'theme-ui/layout'
4+
import { Box } from 'theme-ui'
55

66
export default props => (
77
<Box

packages/editor/src/components/ui/ListView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import styled from '@emotion/styled'
2-
import { Flex } from 'theme-ui/layout'
2+
import { Flex } from 'theme-ui'
33

44
export const ListViewItem = styled(Flex)`
55
border-bottom: thin solid;

packages/editor/src/components/ui/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export { Styled, css } from 'theme-ui'
2-
export { Flex, Box } from 'theme-ui/layout'
2+
export { Flex, Box } from 'theme-ui'
33

44
export { ListView, ListViewItem } from './ListView'
55
export { default as Pre } from './Pre'

0 commit comments

Comments
 (0)