import React, { Component } from 'react-native'; import Svg, { ClipPath, Defs, RadialGradient, Stop, Rect, Text, Ellipse, G, Polygon, Circle } from 'react-native-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 ; } } class TextClipping extends Component{ static title = 'Transform the text'; render() { return NOT THE FACE ; } } const icon = ; const samples = [ClipPathAttr, ClipRule, ClipPathElement, TextClipping]; export { icon, samples }