@ledgerhq/icons-ui
v0.8.1
Published
Icons used by the Ledger design system.
Downloads
1,641
Maintainers
Keywords
Readme
@ledgerhq/icons-ui
A collection of Ledger-flavoured icons
This package contains a collection of React and React Native icon components.
Reference
Installation
Note: Do not install this package directly if your project is using @ledgerhq/react-ui
or @ledgerhq/native-ui
. Both packages include icons-ui
as a depedency and the icon components are re-exported and are accessible from there.
Package
npm i @ledgerhq/icons-ui
Usage
Props
declare type Props = {
/**
* Icon size, defaults to 16.
*/
size?: number | string;
/**
* Icon color, defaults to currentColor.
*/
color?: string;
};
React
import { Airplane, LedgerLogo } from "@ledgerhq/icons-ui/react"
/* … */
<Airplane color="green" />
<LedgerLogo size="XL" color="black" />
React Native
import { Airplane, LedgerLogo } from "@ledgerhq/icons-ui/native"
/* … */
<Airplane color="green" />
<LedgerLogo size="XL" color="black" />