-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #495 from GeotrekCE/develop
Develop > Master / Preparation 3.4.0
- Loading branch information
Showing
44 changed files
with
961 additions
and
238 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import React from 'react'; | ||
import { GenericIconProps } from '../types'; | ||
|
||
export const Save: React.FC<GenericIconProps> = ({ | ||
color = 'currentColor', | ||
opacity, | ||
className, | ||
size, | ||
}) => { | ||
return ( | ||
<svg | ||
version="1.1" | ||
id="Capa_1" | ||
xmlns="http://www.w3.org/2000/svg" | ||
x="0px" | ||
y="0px" | ||
viewBox="0 0 290 290" | ||
width={size} | ||
className={className} | ||
opacity={opacity} | ||
fill={color} | ||
> | ||
<g> | ||
<path | ||
d="M287.602,53.599l-51.2-51.2C234.862,0.863,232.777,0,230.602,0H8.199C3.668,0,0,3.668,0,8.199v273.602 | ||
C0,286.332,3.668,290,8.199,290h273.602c4.531,0,8.199-3.668,8.199-8.199V59.397C290,57.221,289.135,55.138,287.602,53.599z | ||
M38.456,34.678c0-3.262,2.651-5.916,5.917-5.916h160.975c3.27,0,5.918,2.654,5.918,5.916v78.323c0,3.269-2.647,5.915-5.918,5.915 | ||
H44.373c-3.266,0-5.917-2.646-5.917-5.915V34.678z M251.544,247.513c0,4.03-3.27,7.298-7.296,7.298H45.752 | ||
c-4.026,0-7.296-3.268-7.296-7.298V150.94c0-4.028,3.27-7.295,7.296-7.295h198.496c4.026,0,7.296,3.267,7.296,7.295V247.513z" | ||
/> | ||
<rect x="173.564" y="39.039" width="24.588" height="69.604" /> | ||
<rect x="59.489" y="174.643" width="171.021" height="8.195" /> | ||
<rect x="59.489" y="215.62" width="171.021" height="8.195" /> | ||
</g> | ||
</svg> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import React from 'react'; | ||
import { GenericIconProps } from '../types'; | ||
|
||
export const WifiOff: React.FC<GenericIconProps> = ({ | ||
color = 'currentColor', | ||
opacity, | ||
className, | ||
size, | ||
}) => { | ||
return ( | ||
<svg | ||
fill="none" | ||
width={size} | ||
className={className} | ||
opacity={opacity} | ||
viewBox="0 0 24 24" | ||
height={size} | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<g stroke={color} strokeLinecap="round" strokeLinejoin="round" strokeWidth="2"> | ||
<path d="m2 7.92647c1.24008-.79618 2.58126-1.44861 4-1.93376m16 1.93376c-2.8849-1.85224-6.317-2.92647-10-2.92647-.3355 0-.6689.00891-1 .02652" /> | ||
<path d="m5.17159 11.7046c1.4601-.8446 3.09108-1.4267 4.82839-1.6817m8.82842 1.6817c-.8585-.4967-1.7762-.9025-2.7398-1.2045" /> | ||
<path d="m9.07355 15.2544c.91533-.3235 1.90035-.4995 2.92645-.4995s2.0111.176 2.9265.4995" /> | ||
<path d="m11.9181 19.1465-.0161-.0161" /> | ||
<path d="m2 2 20 20" /> | ||
</g> | ||
</svg> | ||
); | ||
}; |
Oops, something went wrong.