import React, {
Component
} from 'react-native';
import Svg, {
Path,
G,
Circle,
Text
} from 'react-native-svg';
class PathExample extends Component{
static title = 'Path';
render() {
return ;
}
}
class UnclosedPath extends Component{
static title = 'Unclosed paths';
render() {
return ;
}
}
class BezierCurve extends Component{
static title = 'The following example creates a quadratic Bézier curve, where A and C are the start and end points, B is the control point';
render() {
return ;
}
}
const icon = ;
const samples = [PathExample, UnclosedPath, BezierCurve];
export {
icon,
samples
}