ProfileBackground.js 547 B

123456789101112131415
  1. import React from 'react';
  2. import Svg, { Path, Rect } from 'react-native-svg';
  3. const ProfileBackground = ({color=colorAccent}) => (
  4. <Svg width="385" height="234" viewBox="0 0 385 234">
  5. <Path
  6. fillRule="evenodd"
  7. clipRule="evenodd"
  8. d="M385 -10H0V197.871C-2.62204 199.849 -4 201.9 -4 204C-4 220.569 81.7385 234 187.5 234C293.263 234 389 220.569 389 204C389 201.9 387.622 199.849 385 197.871V-10Z"
  9. fill={color}/>
  10. <Rect x="0" y="0" width="385" height="200" fill={color}/>
  11. </Svg>
  12. );
  13. export default ProfileBackground;