UNPKG

ultraman-shop

Version:

A React component library for building e-commerce interfaces

13 lines (12 loc) 353 B
import { FC, CSSProperties } from 'react'; interface IFoldingPanelProps { children?: React.ReactNode; isExpanded: boolean; onToggle: () => void; className?: string; style?: CSSProperties; canClose?: boolean; } /** 大屏标题组件 */ declare const FoldingPanel: FC<IFoldingPanelProps>; export default FoldingPanel;