Skip to content

Commit

Permalink
Update index.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
koji committed Mar 27, 2024
1 parent 687ad9b commit 13b24dd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/src/atoms/Chip/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import type { FlattenSimpleInterpolation } from 'styled-components'
import type { IconName } from '../../icons'
import type { StyleProps } from '../../primitives'

// ToDo (kk:03/26/2024) basic will be removed when we add Tag component
export type ChipType =
| 'basic'
| 'error'
Expand Down Expand Up @@ -125,7 +126,7 @@ export function Chip(props: ChipProps): JSX.Element {
`

const TOUCHSCREEN_SMALL_CONTAINER_STYLE = css`
padding: ${SPACING.spacing4} ${background === false ? 0 : SPACING.spacing10};
padding: ${SPACING.spacing4} ${background === false ? 0 : SPACING.spacing8};
grid-gap: ${SPACING.spacing4};
`

Expand Down

0 comments on commit 13b24dd

Please sign in to comment.