UNPKG

@coreui/react

Version:

UI Components Library for React.js

27 lines (26 loc) 758 B
import React, { HTMLAttributes } from 'react'; export interface CTabPaneProps extends HTMLAttributes<HTMLDivElement> { /** * A string of all className you want applied to the base component. */ className?: string; /** * Callback fired when the component requests to be hidden. */ onHide?: () => void; /** * Callback fired when the component requests to be shown. */ onShow?: () => void; /** * Enable fade in and fade out transition. * * @since 5.1.0 */ transition?: boolean; /** * Toggle the visibility of component. */ visible?: boolean; } export declare const CTabPane: React.ForwardRefExoticComponent<CTabPaneProps & React.RefAttributes<HTMLDivElement>>;