question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Icon lock not found

See original GitHub issue

i get error when i do this

Could not find one or more icon(s) {prefix: “fas”, iconName: “lock”}

when i do this <font-awesome-icon icon="lock" />. But <font-awesome-icon icon="coffee" /> and some other icons works.

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:9 (2 by maintainers)

github_iconTop GitHub Comments

2reactions
UnderPrivilegecommented, Dec 31, 2019

@willvin313 What I did is include the online font awesome stylesheet link in my app.vue file and then used it on my components like this: App.vue

<template>
   <html>
   <head>
   	<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css">
   </head>
	  <div id="app">
	    <router-view></router-view>
	  </div>
  </html>
</template>
2reactions
dudedigitalcommented, Jan 31, 2019

Did you install the regular icons via NPM and import them?

$ npm i --save @fortawesome/free-regular-svg-icons

In your JavaScript:

import { library } from '@fortawesome/fontawesome-svg-core';
import { faHeart } from '@fortawesome/free-regular-svg-icons';
library.add(faHeart);
Read more comments on GitHub >

github_iconTop Results From Across the Web

lock icon does not show in my Notes App - Apple Community
I have ugpraded to IOS 9.3 but the lock icon does not show in my Notes App? I cannot lock any note. ......
Read more >
how do I get a lock icon on my folder to come off? - TechNet
I successfully removed the lock Icon on a test folder by opening security tab and giving the group "Users" full permision. Proposed as...
Read more >
Solved: Lock/unlock icon missing - Adobe Support Community
It works sometimes on new projects, so I know how to unlock an object, but the lock icon just isn't visible in some...
Read more >
How to Remove Padlock or Lock Icon from Files on Windows 10
The padlock icon means that the file or folder is not shared with anyone. The padlock usually appears on PC's with HomeGroups. To...
Read more >
Windows 11: Camera App Shows Lock Icon In Grey Screen
Fix Camera Not Working Lock Icon appears with grey screen on Windows 11Step 1) Restart your PCStep 2) Many computers come with a...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found