Files
react-native-svg/apps/common/example/examples/Reusable.tsx
Jakub Grzywacz b3b175a7fb feat: move examples to ./apps (#2507)
# Summary

Due to the large number of example apps in the repository, I decided to
change the structure and move all applications into an "apps" folder to
maintain a clear structure.
2024-10-25 16:12:23 +02:00

161 lines
4.8 KiB
TypeScript

import React from 'react';
import {
Circle,
ClipPath,
Defs,
G,
LinearGradient,
Path,
RadialGradient,
Rect,
Stop,
Svg,
Symbol,
Use,
} from 'react-native-svg';
function UseExample() {
return (
<Svg height="100" width="300">
<Defs>
<G id="reuse-shape">
<Circle cx="50" cy="50" r="50" />
<Rect x="50" y="50" width="50" height="50" />
<Circle cx="50" cy="50" r="5" fill="blue" />
</G>
</Defs>
<Use href="#reuse-shape" x="20" y="0" />
<Use href="#reuse-shape" x="170" y="0" />
</Svg>
);
}
UseExample.title = 'Reuse svg code';
function UseShapes() {
return (
<Svg height="110" width="200">
<G id="outside-shape">
<Rect x="0" y="0" width="50" height="50" />
</G>
<Use href="#outside-shape" x="75" y="50" fill="#0f0" />
<Use
href="#outside-shape"
x="110"
y="0"
stroke="#0ff"
fill="#8a3"
rotation="45"
origin="25, 25"
/>
<Use
href="#outside-shape"
x="150"
y="50"
stroke="#0f0"
strokeWidth="1"
fill="none"
/>
</Svg>
);
}
UseShapes.title = 'Using Shapes Outside of a Defs Element';
function DefsExample() {
return (
<Svg height="100" width="100">
<Defs>
<G id="basic-path" x="5" y="2" opacity="0.9">
<Path
id="basic-test"
d="M38.459,1.66A0.884,0.884,0,0,1,39,2.5a0.7,0.7,0,0,1-.3.575L23.235,16.092,27.58,26.1a1.4,1.4,0,0,1,.148.3,1.3,1.3,0,0,1,0,.377,1.266,1.266,0,0,1-2.078.991L15.526,20.6l-7.58,4.35a1.255,1.255,0,0,1-.485,0,1.267,1.267,0,0,1-1.277-1.258q0-.01,0-0.02a1.429,1.429,0,0,1,0-.446C7.243,20.253,8.6,16.369,8.6,16.29L3.433,13.545A0.743,0.743,0,0,1,2.9,12.822a0.822,0.822,0,0,1,.623-0.773l8.164-2.972,3.018-8.5A0.822,0.822,0,0,1,15.427,0a0.752,0.752,0,0,1,.752.555l2.563,6.936S37.65,1.727,37.792,1.685A1.15,1.15,0,0,1,38.459,1.66Z"
/>
</G>
<ClipPath id="basic-clip">
<Circle r="25%" cx="0%" cy="0%" />
</ClipPath>
<LinearGradient id="basic-linear" x1="0%" y1="0%" x2="100%" y2="0%">
<Stop offset="0%" stopColor="yellow" />
<Stop offset="50%" stopColor="red" />
<Stop offset="100%" stopColor="blue" />
</LinearGradient>
<RadialGradient
id="basic-radial"
cx="50%"
cy="50%"
r="50%"
fx="50%"
fy="50%">
<Stop offset="0%" stopColor="yellow" />
<Stop offset="50%" stopColor="red" />
<Stop offset="100%" stopColor="blue" />
</RadialGradient>
</Defs>
<Use href="#basic-path" x="0" fill="blue" opacity="0.6" />
<Use href="#basic-path" x="20" y="5" fill="url(#basic-linear)" />
<Use
href="#basic-path"
clipPath="url(#basic-clip)"
fillOpacity="0.6"
stroke="#000"
strokeWidth="1"
/>
<Use href="#basic-path" x="-10" y="20" fill="url(#basic-radial)" />
</Svg>
);
}
DefsExample.title = 'Basic Defs usage';
function SymbolExample() {
return (
<Svg height="150" width="110">
<Symbol id="example-symbol" viewBox="0 0 150 110">
<Circle
cx="50"
cy="50"
r="40"
strokeWidth="8"
stroke="red"
fill="red"
/>
<Circle
cx="90"
cy="60"
r="40"
strokeWidth="8"
stroke="green"
fill="white"
/>
</Symbol>
<Use href="#example-symbol" x="0" y="0" width="100" height="50" />
<Use href="#example-symbol" x="0" y="50" width="75" height="38" />
<Use href="#example-symbol" x="0" y="100" width="50" height="25" />
</Svg>
);
}
SymbolExample.title = 'Symbol example, reuse elements with viewBox prop';
const icon = (
<Svg height="30" width="30" viewBox="0 0 20 20">
<Defs>
<G id="reusable-path" scale="0.5">
<Path d="M38.459,1.66A0.884,0.884,0,0,1,39,2.5a0.7,0.7,0,0,1-.3.575L23.235,16.092,27.58,26.1a1.4,1.4,0,0,1,.148.3,1.3,1.3,0,0,1,0,.377,1.266,1.266,0,0,1-2.078.991L15.526,20.6l-7.58,4.35a1.255,1.255,0,0,1-.485,0,1.267,1.267,0,0,1-1.277-1.258q0-.01,0-0.02a1.429,1.429,0,0,1,0-.446C7.243,20.253,8.6,16.369,8.6,16.29L3.433,13.545A0.743,0.743,0,0,1,2.9,12.822a0.822,0.822,0,0,1,.623-0.773l8.164-2.972,3.018-8.5A0.822,0.822,0,0,1,15.427,0a0.752,0.752,0,0,1,.752.555l2.563,6.936S37.65,1.727,37.792,1.685A1.15,1.15,0,0,1,38.459,1.66Z" />
</G>
<ClipPath id="reusable-clip">
<Circle r="50%" cx="0%" cy="0%" />
</ClipPath>
</Defs>
<Use href="#reusable-path" fill="#3a8" />
<Use
href="#reusable-path"
fill="red"
clipPath="url(#reusable-clip)"
fillOpacity="0.6"
stroke="#000"
strokeWidth="1"
/>
</Svg>
);
const samples = [UseExample, UseShapes, DefsExample, SymbolExample];
export {icon, samples};