![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@tamagui/lucide-icons
Advanced tools
This repository is a copy of the React Feather project.
The main difference between them is that this project outputs React Native SVG components that will render on React Native platforms.
npm install @tamagui/lucide-icons --save
You will also need to ensure you have installed React Native SVG into your project.
import { Camera } from '@tamagui/lucide-icons';
class MyClass extends React.Component {
render() {
return <Camera />
}
}
If you are using WebPack, you can import only one icon.
import Camera from '@tamagui/lucide-icons/dist/icons/camera';
class MyClass extends React.Component {
render() {
return <Camera />
}
}
If you can't use ES6 imports, it's possible to include icons from the compiled folder ./dist.
var Camera = require('@tamagui/lucide-icons/dist/icons/camera').default;
var MyComponent = React.createClass({
render: function () {
return (
<Camera />
);
}
});
You can also include the whole icon pack:
import * as Icon from '@tamagui/lucide-icons';
class MyClass extends React.Component {
render() {
return <Icon.Camera />
}
}
Icons can be configured with inline props:
<Icon.AlertCircle color="red" size={48} />
FAQs
React Native components for Lucide icons - native and web
The npm package @tamagui/lucide-icons receives a total of 4,777 weekly downloads. As such, @tamagui/lucide-icons popularity was classified as popular.
We found that @tamagui/lucide-icons demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.