
Security News
OpenGrep Restores Fingerprinting in JSON and SARIF Outputs
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
lucide-preact
Advanced tools
Lucide Preact package, Lucide is a community-run fork of Feather Icons, open for anyone to contribute icons.
Implementation of the lucide icon library for preact applications.
What is lucide? Read it here.
yarn add lucide-preact
# or
npm install lucide-preact
It's build with ESmodules so it's completely threeshakable. Each icon can be imported as a preact component.
You can pass additional props to adjust the icon.
import { Camera } from 'lucide-preact';
// Returns PreactComponent
// Usage
const App = () => {
return <Camera color="red" size={48}/>
};
export default App;
name | type | default |
---|---|---|
size | Number | 24 |
color | String | currentColor |
strokeWidth | Number | 2 |
You can also pass custom props that will be added in the as attributes. With that you can modify the icons look by passing svg attributes.
// Usage
const App = () => {
return <Camera fill="red" stroke-linejoin="bevel"/>
};
svg attributes in preact aren't transformed, so if want to change e.g. the
stroke-linejoin
you need to pass it in kebabcase, the way svg spec is written so. See this topic in the preact documentation.
It is possible to create one generic icon component to load icons.
:warning: Example below importing all EsModules, caution using this example, not recommended when you using bundlers, your application build size will grow strongly.
import * as icons from 'lucide-preact';
const Icon = ({name, color, size}) => {
const LucideIcon = icons[name];
return <LucideIcon color={color} size={size} />
};
export default Icon;
FAQs
A Lucide icon library package for Preact applications
The npm package lucide-preact receives a total of 3,001 weekly downloads. As such, lucide-preact popularity was classified as popular.
We found that lucide-preact demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
Security News
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.