UNPKG

@confi/conflux-react-ui-test-package

Version:

Modern and minimalist React UI library.

15 lines (14 loc) 435 B
import React from 'react'; interface Props { label: string | React.ReactNode; value?: string; disabled?: boolean; } declare const defaultProps: { disabled: boolean; }; export declare type TabsItemProps = Props & typeof defaultProps; declare const _default: React.ComponentType<Partial<{ disabled: boolean; }> & Pick<React.PropsWithChildren<TabsItemProps>, "label" | "children" | "value">>; export default _default;