UNPKG

ultraman-shop

Version:

A React component library for building e-commerce interfaces

17 lines (16 loc) 444 B
import { FC, CSSProperties } from 'react'; interface XTitleProps { title?: string; titleEn?: string; moreOnClick?: () => void; moreAnimateOnClick?: () => void; packUpOnClick?: () => void; rightSlot?: React.ReactNode; bgImage?: string; className?: string; style?: CSSProperties; noPrefix?: boolean; } /** 大屏标题组件 */ declare const XTitle: FC<XTitleProps>; export default XTitle;