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.
30 lines
3.2 KiB
30 lines
3.2 KiB
1 month ago
|
import React from 'react';
|
||
|
import Svg, { Path } from 'react-native-svg';
|
||
|
|
||
|
const DocumentClockIcon = ({size = 200, color = "#707070"}) => (
|
||
|
<Svg
|
||
|
viewBox="0 0 1182 1024"
|
||
|
width={size}
|
||
|
height={size}
|
||
|
>
|
||
|
{/* Document text section */}
|
||
|
<Path
|
||
|
d="M485.608247 337.814433h-97.121649l71.785567-126.680412c6.334021-10.556701 2.11134-23.224742-8.445361-29.558763-8.445361-4.22268-21.113402 0-27.447423 8.445361l-84.453608 145.682474h-4.22268l-84.453608-145.682474c-6.334021-10.556701-19.002062-12.668041-29.558763-8.445361-10.556701 6.334021-12.668041 21.113402-8.445361 29.558763l71.785567 126.680412H190.020619c-12.668041 0-21.113402 8.445361-21.113403 21.113402s8.445361 21.113402 21.113403 21.113402h126.680412v63.340206h-84.453608c-12.668041 0-21.113402 8.445361-21.113402 21.113402s8.445361 21.113402 21.113402 21.113402h84.453608v126.680413c0 12.668041 8.445361 21.113402 21.113402 21.113402s21.113402-8.445361 21.113402-21.113402v-126.680413h84.453608c12.668041 0 21.113402-8.445361 21.113402-21.113402s-8.445361-21.113402-21.113402-21.113402h-84.453608v-63.340206h126.680412c12.668041 0 21.113402-8.445361 21.113402-21.113402s-8.445361-21.113402-21.113402-21.113402z"
|
||
|
fill="#e02211"
|
||
|
/>
|
||
|
|
||
|
{/* Document outline */}
|
||
|
<Path
|
||
|
d="M1165.459794 578.507216c0-4.22268 0-8.445361-4.222681-12.668041L905.764948 209.02268c-4.22268-6.334021-10.556701-8.445361-16.890721-8.44536h-122.457732v-126.680413c0-35.892784-27.447423-63.340206-63.340206-63.340206H223.802062c-12.668041 0-21.113402 8.445361-21.113402 21.113402s8.445361 21.113402 21.113402 21.113402h477.162886c12.668041 0 21.113402 8.445361 21.113403 21.113402v504.610309c0 6.334021 2.11134 12.668041 8.44536 14.779382 4.22268 4.22268 8.445361 8.445361 14.779382 8.445361h377.929897v253.360825c0 12.668041-8.445361 21.113402-21.113402 21.113402h-84.453609c0-82.342268-65.451546-147.793814-147.793814-147.793815s-147.793814 65.451546-147.793814 147.793815H451.826804c-12.668041 0-21.113402 8.445361-21.113402 21.113402s8.445361 21.113402 21.113402 21.113402h272.362887c2.11134 0 4.22268 0 6.33402-2.111341 16.890722 61.228866 73.896907 107.678351 141.459794 107.678351s122.457732-44.338144 141.459794-105.56701h90.787629c35.892784 0 63.340206-27.447423 63.340206-63.340206l-2.11134-276.585568c2.11134 2.11134 0 0 0 0zM871.983505 981.773196c-59.117526 0-105.56701-46.449485-105.56701-105.56701s46.449485-105.56701 105.56701-105.567011 105.56701 46.449485 105.56701 105.567011-48.560825 105.56701-105.56701 105.56701z m4.222681-738.969072l228.024742 316.701031h-337.814433v-316.701031h109.789691z"
|
||
|
fill="#707070"
|
||
|
/>
|
||
|
|
||
|
{/* Clock section */}
|
||
|
<Path
|
||
|
d="M323.035052 728.412371c-82.342268 0-147.793814 65.451546-147.793815 147.793815h-126.680412c-12.668041 0-21.113402 8.445361-21.113402 21.113402s8.445361 21.113402 21.113402 21.113402h133.014433c19.002062 61.228866 73.896907 105.56701 141.459794 105.56701 82.342268 0 147.793814-65.451546 147.793814-147.793814s-67.562887-147.793814-147.793814-147.793815z m0 253.360825c-59.117526 0-105.56701-46.449485-105.567011-105.56701s46.449485-105.56701 105.567011-105.567011 105.56701 46.449485 105.56701 105.567011-48.560825 105.56701-105.56701 105.56701z"
|
||
|
fill="#707070"
|
||
|
/>
|
||
|
</Svg>
|
||
|
);
|
||
|
|
||
|
export default DocumentClockIcon;
|