import React, {
Component
} from 'react-native';
import Svg, {
Path,
Rect,
G,
Defs,
Stop,
RadialGradient,
Polyline,
ClipPath,
Circle
} from 'react-native-svg';
class StrokeExample extends Component{
static title = 'The stroke property defines the color of a line, text or outline of an element';
render() {
return ;
}
}
class StrokeLinecap extends Component{
static title = 'The stroke-linecap property defines different types of endings to an open path';
render() {
return ;
}
}
class StrokeDasharray extends Component{
static title = 'strokeDasharray';
render() {
return ;
}
}
class StrokePattern extends Component{
static title = 'Advanced stroke example.';
render() {
return ;
}
}
const icon = ;
const samples = [StrokeExample, StrokeLinecap, StrokeDasharray, StrokePattern];
export {
icon,
samples
}