Files
xyflow/packages/core/src/components/Edges/StepEdge.tsx
T
2022-08-08 13:34:00 +02:00

11 lines
295 B
TypeScript

import { memo } from 'react';
import { EdgeSmoothStepProps } from '../../types';
import SmoothStepEdge from './SmoothStepEdge';
const StepEdge = memo((props: EdgeSmoothStepProps) => <SmoothStepEdge {...props} borderRadius={0} />);
StepEdge.displayName = 'StepEdge';
export default StepEdge;