react-native-techs-logos
v0.1.11
Published
list of logos company and techs
Downloads
15
Maintainers
Readme
react-native-techs-logos
A list with logos company and techs
Install
npm install --save react-native-techs-logos
Usage basic
import ReactNativeTechsLogs from 'react-native-techs-logos';
// list all logos
<ReactNativeTechsLogs />
// single icon
<ReactNativeTechsLogs name="javascript" />
// Raw mode
<ReactNativeTechsLogs name="javascript" raw />
// list limited logos
<ReactNativeTechsLogs list={['vue','javascript', 'react', 'angular']} />
// list all logos with hiddenLogos
<ReactNativeTechsLogs hiddenLogos={['vue','javascript', 'react', 'angular', 'android']} />
// Hidden label
<ReactNativeTechsLogs name="javascript" hiddenLabel />
<ReactNativeTechsLogs hiddenLabel />
Props of component
Properties to use in the component
type Props = {
name?: string;
list?: Array<String>;
hiddenLogos?: Array<String>;
hiddenLabel?: boolean;
flatList?: boolean;
rounded?: boolean;
background?: string;
size?: number;
gap?: number;
raw?: boolean;
};