import React, {
Component
} from 'react-native';
import Svg, {
Path,
G
} from 'react-native-art-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 StrokeWidth 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 = 'The stroke-linecap property defines different types of endings to an open path';
render() {
return ;
}
}
const icon = ;
const samples = [StrokeExample, StrokeWidth, StrokeLinecap, StrokeDasharray];
export {
icon,
samples
}