Skip to content

Commit

Permalink
fix import path issues in Chip component
Browse files Browse the repository at this point in the history
  • Loading branch information
koji committed Mar 20, 2024
1 parent 563ee5d commit 718be9f
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions components/src/atoms/Chip/index.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
import * as React from 'react'

import {
BORDERS,
Flex,
DIRECTION_ROW,
ALIGN_CENTER,
SPACING,
TYPOGRAPHY,
Icon,
COLORS,
} from '@opentrons/components'
import { BORDERS, COLORS } from '../../helix-design-system'
import { Flex } from '../../primitives'
import { ALIGN_CENTER, DIRECTION_ROW } from '../../styles'
import { SPACING, TYPOGRAPHY } from '../../ui-style-constants'
import { Icon } from '../../icons'

import { StyledText } from '../../../../app/src/atoms/text'
import { StyledText } from '@opentrons/app/src/atoms/text'

import type { IconName, StyleProps } from '@opentrons/components'
import type { IconName } from '../../icons'
import type { StyleProps } from '../../primitives'

export type ChipType =
| 'basic'
Expand Down

0 comments on commit 718be9f

Please sign in to comment.