react-native-svg-haozu
Version:
28 lines (24 loc) • 793 B
JavaScript
import React, { Component } from "react";
import PropTypes from "prop-types";
import extractViewBox from "../lib/extract/extractViewBox";
import { requireNativeComponent } from "react-native";
import { SymbolAttributes } from "../lib/attributes";
export default class extends Component {
static displayName = "Symbol";
static propTypes = {
id: PropTypes.string.isRequired,
viewBox: PropTypes.string,
preserveAspectRatio: PropTypes.string
};
render() {
let { props } = this;
return (
<RNSVGSymbol name={props.id} {...extractViewBox(props)}>
{props.children}
</RNSVGSymbol>
);
}
}
const RNSVGSymbol = requireNativeComponent("RNSVGSymbol", null, {
nativeOnly: SymbolAttributes
});