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