Back to Tamagui

README

code/packages/lucide-icons/README.md

1.144.41.6 KB
Original Source

React Native Lucide Icons

Simply beautiful SVG icons as React Native SVG components.

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.

Installation

npm install @tamagui/lucide-icons-2 --save

You will also need to ensure you have installed React Native SVG into your project.

Usage

javascript
import { Camera } from '@tamagui/lucide-icons-2'

class MyClass extends React.Component {
  render() {
    return <Camera />
  }
}

If you are using WebPack, you can import only one icon.

javascript
import Camera from '@tamagui/lucide-icons-2/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.

javascript
var Camera = require('@tamagui/lucide-icons-2/dist/icons/camera').default

var MyComponent = React.createClass({
  render: function () {
    return <Camera />
  },
})

You can also include the whole icon pack:

javascript
import * as Icon from '@tamagui/lucide-icons-2'

class MyClass extends React.Component {
  render() {
    return <Icon.Camera />
  }
}

Icons can be configured with inline props:

javascript
<Icon.AlertCircle color="red" size={48} />