ultraman-shop
Version:
A React component library for building e-commerce interfaces
18 lines (17 loc) • 467 B
TypeScript
import { FC, CSSProperties } from 'react';
interface XTitleProps {
title?: string;
titleEn?: string;
moreOnClick?: () => void;
moreAnimateOnClick?: () => void;
packUpOnClick?: () => void;
rightSlot?: React.ReactNode;
logoSrc?: string;
bgImage?: string;
className?: string;
style?: CSSProperties;
noPrefix?: boolean;
}
/** 大屏标题组件 */
declare const XTitle: FC<XTitleProps>;
export default XTitle;