import React, {
Component
} from 'react-native';
import Svg, {
Circle,
Rect,
Path
} from 'react-native-svg';
class SvgExample extends Component{
static title = 'SVG';
render() {
return ;
}
}
class SvgOpacity extends Component{
static title = 'SVG with `opacity` prop';
render() {
return ;
}
}
class SvgViewbox extends Component{
static title = 'SVG with `viewbox="40 20 100 40"`';
render() {
return ;
}
}
const icon = ;
const samples = [SvgExample, SvgOpacity, SvgViewbox];
export {
icon,
samples
}