import React from 'react';
import {
Circle,
ClipPath,
Defs,
G,
Path,
Polyline,
RadialGradient,
Rect,
Stop,
Svg,
Text,
} from 'react-native-svg';
function StrokeExample() {
return (
);
}
StrokeExample.title =
'The stroke property defines the color of a line, text or outline of an element';
function StrokeLinecap() {
return (
);
}
StrokeLinecap.title =
'The strokeLinecap property defines different types of endings to an open path';
function StrokeDasharray() {
return (
);
}
StrokeDasharray.title = 'strokeDasharray';
function StrokeDashoffset() {
return (
);
}
StrokeDashoffset.title =
'the strokeDashoffset attribute specifies the distance into the dash pattern to start the dash.';
function StrokePattern() {
return (
);
}
StrokePattern.title = 'Advanced stroke example.';
const icon = (
);
const samples = [
StrokeExample,
StrokeLinecap,
StrokeDasharray,
StrokeDashoffset,
StrokePattern,
];
export {icon, samples};