From ac23cca8b31079f123f7a5243a9a1cf92d02a154 Mon Sep 17 00:00:00 2001 From: afc163 Date: Thu, 9 Feb 2017 16:25:16 +0800 Subject: [PATCH] Fix missing ts types for TabPane, close #4776 --- components/tabs/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/tabs/index.tsx b/components/tabs/index.tsx index 5cde7c8dab..88ff724a56 100755 --- a/components/tabs/index.tsx +++ b/components/tabs/index.tsx @@ -34,6 +34,8 @@ export interface TabPaneProps { /** 选项卡头显示文字 */ tab?: React.ReactNode | string; style?: React.CSSProperties; + className?: string; + disabled?: boolean; } export default class Tabs extends React.Component {