https://github.com/criar-art/react-native-techs-logos
Repository with logos of languages and tech or company
https://github.com/criar-art/react-native-techs-logos
android expo hacktoberfest package react react-native typescript
Last synced: 5 months ago
JSON representation
Repository with logos of languages and tech or company
- Host: GitHub
- URL: https://github.com/criar-art/react-native-techs-logos
- Owner: criar-art
- License: mit
- Created: 2024-02-11T00:44:33.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-10-27T21:24:12.000Z (over 1 year ago)
- Last Synced: 2025-03-28T14:37:28.905Z (over 1 year ago)
- Topics: android, expo, hacktoberfest, package, react, react-native, typescript
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/react-native-techs-logos
- Size: 2.84 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# react-native-techs-logos
A list with logos company and techs

## Install
```bash
npm install --save react-native-techs-logos
```
## Usage basic
```jsx
import ReactNativeTechsLogs from 'react-native-techs-logos';
// list all logos
// single icon
// Raw mode
// list limited logos
// list all logos with hiddenLogos
// Hidden label
```
## Props of component
Properties to use in the component
```typescript
type Props = {
name?: string;
list?: Array;
hiddenLogos?: Array;
hiddenLabel?: boolean;
flatList?: boolean;
rounded?: boolean;
background?: string;
size?: number;
gap?: number;
raw?: boolean;
};
```