-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Photos picker: Media library: Update Google photos icon (#96870)
- Loading branch information
Showing
2 changed files
with
38 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
const GooglePhotosIcon = ( props ) => ( | ||
<svg | ||
style={ { | ||
padding: '2px', | ||
width: '20px', | ||
height: '18px', | ||
} } | ||
width="46" | ||
height="46" | ||
viewBox="0 0 46 46" | ||
xmlns="http://www.w3.org/2000/svg" | ||
{ ...props } | ||
> | ||
<g clip-path="url(#clip0_3_5000)"> | ||
<path | ||
opacity="0.4" | ||
d="M11.5 10.4553C17.8511 10.4553 23 15.6034 23 21.9553V23.0001H1.04475C0.467797 23.0001 0 22.5323 0 21.9553C0 15.6034 5.14888 10.4553 11.5 10.4553Z" | ||
/> | ||
<path d="M35.5447 11.5C35.5447 17.8511 30.3966 23 24.0447 23H23V1.04475C23 0.467797 23.4678 0 24.0447 0C30.3966 0 35.5447 5.14888 35.5447 11.5Z" /> | ||
<path | ||
opacity="0.8" | ||
d="M34.5 35.5447C28.1489 35.5447 23 30.3966 23 24.0447V23H44.9553C45.5322 23 46 23.4678 46 24.0447C46 30.3966 40.8511 35.5447 34.5 35.5447Z" | ||
/> | ||
<path | ||
opacity="0.6" | ||
d="M10.4553 34.5C10.4553 28.1489 15.6034 23 21.9553 23H23V44.9553C23 45.5322 22.5322 46 21.9553 46C15.6034 46 10.4553 40.8511 10.4553 34.5Z" | ||
/> | ||
</g> | ||
<defs> | ||
<clipPath id="clip0_3_5000"> | ||
<rect width="46" height="46" fill="white" /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
); | ||
export default GooglePhotosIcon; |