Skip to content

Commit

Permalink
refactor(tab-action): 타입 충돌 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
sungik-choi committed Apr 29, 2022
1 parent fd1d24c commit bbb34a7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/Tabs/TabAction/TabAction.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
import React from 'react'

/* Internal dependencies */
import { BezierComponentProps, DisableProps, LinkProps } from 'Types/ComponentProps'
import { BezierComponentProps, DisableProps, LinkProps, ChildrenProps } from 'Types/ComponentProps'
import type TabsOptions from 'Components/Tabs/Tabs.types'

interface TabActionOptions {
children: React.ReactNode | ((args: { disabled: boolean }) => React.ReactNode)
interface TabActionOptions extends ChildrenProps {
onClick?: React.MouseEventHandler
}

Expand Down

0 comments on commit bbb34a7

Please sign in to comment.