You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
1.6 KiB

import React from'react';
import { Svg, Path } from'react-native-svg';
const ExpiredIcon = ({size}:{size:number}) => {
return (
<Svg
viewBox="0 0 1024 1024"
width={size}
height={size}
>
<Path
d="M907.298133 493.277867a43.8784 43.8784 0 1 1-84.002133-25.429334c7.287467-24.098133 7.287467-54.2208-0.546133-89.4976C782.1312 217.309867 636.586667 102.4 468.104533 102.4 266.154667 102.4 102.4 266.1376 102.4 468.1216a365.858133 365.858133 0 0 0 245.640533 345.5488 43.8784 43.8784 0 1 1-28.791466 82.909867C138.3424 833.7408 14.626133 662.715733 14.626133 468.138667 14.626133 217.668267 217.668267 14.626133 468.138667 14.626133 677.034667 14.626133 857.429333 157.0816 908.117333 358.075733c11.195733 50.2784 11.195733 95.4368-0.836266 135.202134zM485.205333 921.6h433.92L702.173867 511.7952 485.205333 921.6z m522.8544-19.592533a73.147733 73.147733 0 0 1-64.631466 107.349333H460.919467a73.147733 73.147733 0 0 1-64.648534-107.349333L637.525333 446.293333a73.147733 73.147733 0 0 1 129.28 0l241.2544 455.68z m-305.885866-302.250667a43.8784 43.8784 0 0 1 43.8784 43.895467v87.773866a43.8784 43.8784 0 0 1-87.773867 0v-87.773866a43.8784 43.8784 0 0 1 43.895467-43.8784zM438.852267 234.069333a43.8784 43.8784 0 0 1 87.773866 0v263.3216a43.8784 43.8784 0 0 1-43.8784 43.8784H292.573867a43.8784 43.8784 0 0 1 0-87.773866h146.2784V234.052267z m263.3216 658.295467a43.8784 43.8784 0 1 1 0-87.773867 43.8784 43.8784 0 0 1 0 87.773867z"
fill="#707070"
/>
</Svg>
);
};
export default ExpiredIcon;