UNPKG

ultraman-shop

Version:

A React component library for building e-commerce interfaces

16 lines (15 loc) 426 B
import React, { FC, CSSProperties } from 'react'; export interface ICockpitTabs { item: { label: string; value: string; children?: React.ReactNode; }[]; onChange: (value: string) => void; defaultActiveKey?: string; type?: 'link' | 'button'; className?: string; style?: CSSProperties; } declare const CockpitTabs: FC<ICockpitTabs>; export default CockpitTabs;