Skip to content

Commit 718be9f

Browse files
committed
fix import path issues in Chip component
1 parent 563ee5d commit 718be9f

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

components/src/atoms/Chip/index.tsx

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
11
import * as React from 'react'
22

3-
import {
4-
BORDERS,
5-
Flex,
6-
DIRECTION_ROW,
7-
ALIGN_CENTER,
8-
SPACING,
9-
TYPOGRAPHY,
10-
Icon,
11-
COLORS,
12-
} from '@opentrons/components'
3+
import { BORDERS, COLORS } from '../../helix-design-system'
4+
import { Flex } from '../../primitives'
5+
import { ALIGN_CENTER, DIRECTION_ROW } from '../../styles'
6+
import { SPACING, TYPOGRAPHY } from '../../ui-style-constants'
7+
import { Icon } from '../../icons'
138

14-
import { StyledText } from '../../../../app/src/atoms/text'
9+
import { StyledText } from '@opentrons/app/src/atoms/text'
1510

16-
import type { IconName, StyleProps } from '@opentrons/components'
11+
import type { IconName } from '../../icons'
12+
import type { StyleProps } from '../../primitives'
1713

1814
export type ChipType =
1915
| 'basic'

0 commit comments

Comments
 (0)