# Edge
All default edge components are exported and can be used or extended if necessary.
```vue
```
## Path utils
Vue Flow exports a couple of functions you can use to create your own custom edges without having to worry how to actually
create a bezier path.
This can be helpful if you don't want to actually change the way the path is calculated but just want to implement some custom logic on top of the
regular edge behavior.
### [getBezierPath](/typedocs/functions/getBezierPath.html/)
- Details:
Returns a bezier path.
### [getBezierCenter](/typedocs/functions/getBezierCenter.html/)
- Details:
Returns a bezier path's center x and y values.
### [getSimpleBezierPath](/typedocs/functions/getSimpleBezierPath.html/)
- Details:
Returns a simple bezier path (no curvature at handles).
### [getSimpleBezierCenter](/typedocs/functions/getSimpleBezierCenter.html/)
- Details:
Returns a simple bezier path's center x and y values.
### [getSmoothStepPath](/typedocs/functions/getSmoothStepPath.html/)
- Details:
Returns a smoothstep path (use border-radius 0 for a step path).
### [getEdgeCenter](/typedocs/functions/getEdgeCenter.html/)
- Details:
Returns an edge path's center x and y values.