import React from 'react';
import {
Circle,
ClipPath,
Defs,
Ellipse,
G,
Path,
Polygon,
RadialGradient,
Rect,
Stop,
Svg,
Text,
} from 'react-native-svg';
function ClipPathElement() {
return (
);
}
ClipPathElement.title = 'Clip by set clip-path with a path data';
function ClipRule() {
return (
);
}
ClipRule.title = 'Clip a group with clipRule="evenodd"';
function TextClipping() {
return (
);
}
TextClipping.title = 'Transform the text';
const icon = (
);
const samples = [ClipPathElement, ClipRule, TextClipping];
export {icon, samples};