7 lines
153 B
JavaScript
7 lines
153 B
JavaScript
import Svg from 'react-native-svg';
|
|
|
|
export default ( props ) => (
|
|
<Svg width={ props.width } height={ props.height } >
|
|
{ props.children }
|
|
</Svg>
|
|
);
|