15 lines
354 B
TypeScript
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;
|