UNPKG

@ant-design/pro-flow

Version:
17 lines (16 loc) 486 B
/// <reference types="react" /> export interface SwimlaneBackgroundProps { lanes: SwimLaneProps[]; className?: string; style?: React.CSSProperties; } export interface SwimLaneProps { id: string; label: string; labelColor?: string; backgroundColor?: string; width?: string; style?: React.CSSProperties; } declare const SwimlaneBackground: (props: SwimlaneBackgroundProps) => import("react/jsx-runtime").JSX.Element; export default SwimlaneBackground;