import React, {
Component
} from 'react-native';
import Svg, {
Text
} from 'react-native-art-svg';
class TextExample extends Component{
static title = 'Text';
render() {
return ;
}
}
class TextRotate extends Component{
static title = 'Transform the text';
render() {
return ;
}
}
class TextStroke extends Component{
static title = 'Stroke the text';
render() {
return ;
}
}
// TODO: wait for official done
class TextPath extends Component{
static title = 'Transform the text';
render() {
return ;
}
}
const icon = ;
const samples = [TextExample, TextRotate, TextStroke, TextPath];
export {
icon,
samples
}