@tplc/business
Version:
21 lines (20 loc) • 561 B
text/typescript
import { LcbActionViewProps } from '../lcb-action-view/types'
import { LcbBlockProps } from '../lcb-block/types'
import { ActionView } from 'action'
export interface LcbBannerListProps extends LcbBlockProps {
items?: ActionView[]
/** 风格 1.顶部title 2.底部title */
styleGroup?: 1 | 2
/** 轮播图高度 默认192 */
height?: number
/** 轮播图宽度 */
imgWidth?: number
title: string
hint?: string
logo?: string
rightIcon?: string
leftIcon?: string
itemPadding?: number
imageRadius?: number
link?: LcbActionViewProps
}