ds-smart-ui
Version:
Smart UI v1.0.5 — A production-ready React component library by PT Praisindo Teknologi. Covers inputs, navigation, data display, feedback, and layout with a unified design system, semantic Typography tokens, and full Storybook documentation.
14 lines (13 loc) • 488 B
TypeScript
import { default as Card } from '../../Surfaces/Card';
type CardProps = React.ComponentProps<typeof Card>;
interface TabPanelsProps {
selectedTab: string;
activeTab: string;
children: React.ReactNode;
/** Optional base id used to construct the panel/card identifier */
id?: string;
/** Props forwarded to the underlying `Card` container */
cardProps?: Omit<CardProps, "children">;
}
declare const TabPanels: React.FC<TabPanelsProps>;
export default TabPanels;