/** * Log In - Login/sign in * @category security */ import type { IconDefinition } from '../../types'; export const logIn: IconDefinition = { name: 'log-in', category: 'security', description: 'Log in or sign in with arrow entering', tags: ['login', 'signin', 'enter', 'access', 'authenticate', 'session'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default logIn;