@ant-design/pro-flow
Version:
A React based Flow components
17 lines (16 loc) • 486 B
TypeScript
/// <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;