import React from 'react';
import {Polyline, Svg} from 'react-native-svg';
function PolylineExample() {
return (
);
}
PolylineExample.title =
'The element is used to create any shape that consists of only straight lines';
function StraightLines() {
return (
);
}
StraightLines.title = 'Another example with only straight lines';
function PolylineFill() {
return (
);
}
PolylineFill.title = 'Fill Polyline';
function PolylineFillStroke() {
return (
);
}
PolylineFillStroke.title =
'Stroke Polyline with strokeLinecap and strokeLinejoin';
const icon = (
);
const samples = [
PolylineExample,
StraightLines,
PolylineFill,
PolylineFillStroke,
];
export {icon, samples};