import React from 'react';
import * as Svg from 'react-native-svg';
import Example from './Example';
class LineExample extends React.Component {
static title = 'Line';
render() {
return (
);
}
}
class LineWithStrokeLinecap extends React.Component {
static title = 'Line';
render() {
return (
);
}
}
const icon = (
);
const Line: Example = {
icon,
samples: [LineExample, LineWithStrokeLinecap],
};
export default Line;