Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there logIn/signIn and logOut/signOut icons in material icon list?

Tags:

icons

I checked the icon list available at https://material.io/tools/icons/ and the closest matches I see are

For LogIn or SignIn

  • vpn_key https://material.io/tools/icons/?search=vpn_key&icon=vpn_key&style=baseline

  • input https://material.io/tools/icons/?search=input&icon=input&style=baseline

  • exit_to_app https://material.io/tools/icons/?search=exit&icon=exit_to_app&style=baseline

For LogOut or SignOut

  • power_settings_new https://material.io/tools/icons/?search=power&icon=power_settings_new&style=baseline

are these universally acceptable icons or can you please suggest if there are any other icons

like image 576
nsk Avatar asked Apr 07 '19 14:04

nsk


People also ask

Where can I find material UI icons?

You can also use https://material-ui.com/components/material-icons/ to search for the icon you need.

What are material icons?

What are material icons? Material design system icons are simple, modern, friendly, and sometimes quirky. Each icon is created using our design guidelines to depict in simple and minimal forms the universal concepts used commonly throughout a UI.


1 Answers

what about those two?

https://fonts.google.com/icons?selected=Material%20Icons%20Outlined%3Alogout%3A https://fonts.google.com/icons?selected=Material%20Icons%20Outlined%3Alogin%3A

Their ids are simply "login" and "logout".

I can use them like this:

<mat-icon aria-hidden="false">login</mat-icon>
like image 116
Matthias Avatar answered Oct 25 '22 17:10

Matthias