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.
22 lines
2.1 KiB
22 lines
2.1 KiB
1 month ago
|
import React from 'react';
|
||
|
import Svg, { Path } from 'react-native-svg';
|
||
|
|
||
|
const FileEditIcon = ({size}:{size:number}) => (
|
||
|
<Svg
|
||
|
width={size}
|
||
|
height={size}
|
||
|
viewBox="0 0 24 24"
|
||
|
fill="none"
|
||
|
>
|
||
|
<Path
|
||
|
d="M5.6999 4.79982C5.6999 4.72026 5.73151 4.64395 5.78777 4.58769C5.84403 4.53143 5.92034 4.49982 5.9999 4.49982H13.4999V8.39982C13.4999 8.89662 13.9031 9.29982 14.3999 9.29982H18.2999V11.3998C18.2999 11.6385 18.3947 11.8674 18.5635 12.0362C18.7323 12.205 18.9612 12.2998 19.1999 12.2998C19.4386 12.2998 19.6675 12.205 19.8363 12.0362C20.0051 11.8674 20.0999 11.6385 20.0999 11.3998V8.89662C20.0999 8.79624 20.0927 8.69598 20.0783 8.59662C20.1187 8.41583 20.1024 8.22696 20.0316 8.05579C19.9607 7.88462 19.8387 7.73949 19.6823 7.64021C19.6218 7.55957 19.5557 7.48337 19.4843 7.41221L15.3875 3.31543C15.3164 3.24405 15.2402 3.17788 15.1595 3.11743C15.0602 2.96101 14.9151 2.83904 14.7439 2.76817C14.5728 2.69729 14.3839 2.68097 14.2031 2.72143C14.1037 2.70706 14.0035 2.69984 13.9031 2.69982H5.9999C5.44295 2.69982 4.9088 2.92107 4.51498 3.3149C4.12115 3.70872 3.8999 4.24287 3.8999 4.79982V19.1998C3.8999 20.359 4.84068 21.2998 5.9999 21.2998H10.1999C10.4386 21.2998 10.6675 21.205 10.8363 21.0362C11.0051 20.8674 11.0999 20.6385 11.0999 20.3998C11.0999 20.1611 11.0051 19.9322 10.8363 19.7634C10.6675 19.5946 10.4386 19.4998 10.1999 19.4998H5.9999C5.92034 19.4998 5.84403 19.4682 5.78777 19.412C5.73151 19.3557 5.6999 19.2794 5.6999 19.1998V4.79982ZM15.2999 5.77182L17.0279 7.49982H15.2999V5.77182Z"
|
||
|
fill="#0051FF"
|
||
|
/>
|
||
|
<Path
|
||
|
d="M17.3639 13.7642C17.5327 13.5956 17.7614 13.501 17.9999 13.501C18.2384 13.501 18.4672 13.5956 18.6359 13.7642L20.4359 15.5642C20.6044 15.7329 20.6991 15.9617 20.6991 16.2002C20.6991 16.4387 20.6044 16.6674 20.4359 16.8362L16.2359 21.0362C16.0673 21.205 15.8385 21.3 15.5999 21.3002H13.7999C13.5612 21.3002 13.3323 21.2054 13.1635 21.0366C12.9947 20.8678 12.8999 20.6389 12.8999 20.4002V18.6002C12.9001 18.3616 12.9951 18.1328 13.1639 17.9642L17.3639 13.7642ZM14.6999 18.9722V19.5002H15.2279L18.5279 16.2002L17.9999 15.6722L14.6999 18.9722Z"
|
||
|
fill="#0051FF"
|
||
|
/>
|
||
|
</Svg>
|
||
|
);
|
||
|
|
||
|
export default FileEditIcon;
|