UNPKG

@tarojsx/ui

Version:

We reinvents the UI for Taro3+

19 lines (18 loc) 502 B
import React from 'react'; import { IconProps } from './Icon'; import '../style/ListHeader.scss'; export interface ListHeaderProps { className?: string; style?: React.CSSProperties; title: React.ReactNode; transparent?: boolean; thumb?: string; iconInfo?: IconProps; iconType?: string; iconPrefixClass?: string; iconColor?: string; iconSize?: number; sticky?: boolean; top?: number | string; } export declare const ListHeader: React.FC<ListHeaderProps>;