import { LcbBlockProps } from '../../components/lcb-block/types'
export interface LcbTabsProps extends LcbBlockProps {
  /** 是否吸顶 */
  sticky?: boolean
  items: {
    title: string
    name: string
    activeUrl?: string
    inactiveUrl?: string
  }[]
  showTitle?: boolean
  lineWidth?: number
  lineHeight?: number
  slidable?: 'always' | 'auto'
  slidableNum?: number
  itemFontSize?: number
  mode?: 'tabs' | 'block' | 'image'
  tagsMode?: 'scroll' | 'tiled'
  gap?: number
  dynamicScope?: string
  imgHeight?: number
  imgTitleGap?: number
  activeColor?: string
  inactiveColor?: string
}
