import React, {
Component
} from 'react';
import Svg, {
Defs,
G,
Path,
Use,
Symbol,
Circle,
ClipPath,
LinearGradient,
RadialGradient,
Stop,
Rect
} from 'react-native-svg';
class UseExample extends Component{
static title = 'Reuse svg code';
render() {
return ;
}
}
class UseShapes extends Component{
static title = 'Using Shapes Outside of a Defs Element';
render() {
return ;
}
}
class DefsExample extends Component{
static title = 'Basic Defs usage';
render() {
return ;
}
}
class SymbolExample extends Component{
static title = 'Symbol example, reuse elements with viewBox prop';
render() {
return ;
}
}
const icon = ;
const samples = [UseExample, UseShapes, DefsExample, SymbolExample];
export {
icon,
samples
};