Files
vue-flow/src/components/Edges/StepEdge.tsx
T

15 lines
354 B
TypeScript

import { defineComponent } from 'vue';
import { EdgeSmoothStepProps } from '../../types';
import SmoothStepEdge from './SmoothStepEdge';
const StepEdge = defineComponent({
components: { SmoothStepEdge },
props: EdgeSmoothStepProps,
setup(props) {
return () => <SmoothStepEdge {...props} borderRadius={0} />;
}
});
export default StepEdge;