UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

17 lines (16 loc) 466 B
import { DivProps } from "../../types/index.mjs"; import { ReactNode } from "react"; //#region src/awesome/SpotlightCard/type.d.ts interface SpotlightCardProps<T = any> extends DivProps { borderRadius?: number; columns?: number; gap?: number | string; items: T[]; maxItemWidth?: string | number; renderItem: (item: T) => ReactNode; size?: number; spotlight?: boolean; } //#endregion export { SpotlightCardProps }; //# sourceMappingURL=type.d.mts.map