import React, { Component } from 'react-native'; import Svg, { ClipPath, Defs, RadialGradient, Stop, Rect, Text, Ellipse, G, Polygon, Circle } from 'react-native-art-svg'; class ClipPathAttr extends Component{ static title = 'Clip by set clip-path with a path data'; render() { return ; } } class ClipRule extends Component{ static title = 'Clip a group with clipRule="evenodd"'; render() { return ; } } class ClipPathElement extends Component{ static title = 'Clip by set clip-path with a path data'; render() { return ; } } const icon = ; const samples = [ClipPathAttr, ClipRule, ClipPathElement]; export { icon, samples }