{"id":16283042,"url":"https://github.com/bang9/react-native-kakao-logo","last_synced_at":"2025-04-08T18:23:06.216Z","repository":{"id":57337946,"uuid":"240507764","full_name":"bang9/react-native-kakao-logo","owner":"bang9","description":"kakao svg-logo for react-native (Not official !  This repo is not, and never was operated by or affiliated with Kakao)","archived":false,"fork":false,"pushed_at":"2020-02-25T08:41:05.000Z","size":1021,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-01T23:43:18.458Z","etag":null,"topics":["kakao","kakao-logo","kakao-svg","logo","react-native","react-native-kakao","svg","svg-logo"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bang9.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-02-14T12:52:52.000Z","updated_at":"2020-03-20T00:20:22.000Z","dependencies_parsed_at":"2022-09-15T15:00:31.043Z","dependency_job_id":null,"html_url":"https://github.com/bang9/react-native-kakao-logo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bang9%2Freact-native-kakao-logo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bang9%2Freact-native-kakao-logo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bang9%2Freact-native-kakao-logo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bang9%2Freact-native-kakao-logo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bang9","download_url":"https://codeload.github.com/bang9/react-native-kakao-logo/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247899050,"owners_count":21014827,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["kakao","kakao-logo","kakao-svg","logo","react-native","react-native-kakao","svg","svg-logo"],"created_at":"2024-10-10T19:12:23.902Z","updated_at":"2025-04-08T18:23:06.188Z","avatar_url":"https://github.com/bang9.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cspan class=\"module\"\u003e\u003ca href=\"https://github.com/bang9/react-native-kakao-logo\" title=\"View this project\"\u003e\u003cimg src=\"https://img.shields.io/badge/React Native-react--native--kakao--logo-black?style=flat-square\u0026logo=react\" alt=\"RNKakaoLogo\" /\u003e\u003c/a\u003e\u003c/span\u003e\n\n\u003cspan class=\"npmversion\"\u003e\u003ca href=\"https://npmjs.org/package/react-native-kakao-logo\" title=\"View this project on NPM\"\u003e\u003cimg src=\"https://img.shields.io/npm/v/react-native-kakao-logo.svg\" alt=\"NPM version\" /\u003e\u003c/a\u003e\u003c/span\u003e\n\u003cspan class=\"npmdownloads\"\u003e\u003ca href=\"https://npmjs.org/package/react-native-kakao-logo\" title=\"View this project on NPM\"\u003e\u003cimg src=\"https://img.shields.io/npm/dm/react-native-kakao-logo.svg\" alt=\"NPM downloads\" /\u003e\u003c/a\u003e\u003c/span\u003e\n\n# react-native-kakao-logo\n\n(not official) Kakao svg-logo for React Native\n\n### Required\n\ninstall `react-native-svg`\n\n### Preview\n\n\u003cimg alt=\"preview\" src=\"screenshots/login.jpeg\" width=\"400\" height=\"auto\" /\u003e\n\n### Example code and screenshot\n\n```jsx\nimport React from 'react';\nimport {SafeAreaView, StyleSheet, StatusBar, Text, View} from 'react-native';\nimport KakaoLogo from 'react-native-kakao-logo';\n\nconst options = [\n  {\n    backgroundColor: '#ff4253',\n    padding: 10,\n  },\n  {\n    backgroundColor: '#81ca4e',\n    padding: 10,\n  },\n  {\n    backgroundColor: '#297ef5',\n    padding: 10,\n  },\n  {\n    backgroundColor: '#5b5b5b',\n    padding: 10,\n  },\n];\n\nconst App = () =\u003e {\n  return (\n    \u003c\u003e\n      \u003cStatusBar barStyle={'dark-content'} /\u003e\n      \u003cSafeAreaView style={styles.safeArea}\u003e\n        \u003cView style={styles.container}\u003e\n          {options.map(option =\u003e {\n            return (\n              \u003cKakaoLogo\n                key={option.backgroundColor}\n                style={option}\n                size={40}\n                color={'white'}\n              /\u003e\n            );\n          })}\n        \u003c/View\u003e\n        \u003cKakaoLogo style={styles.logo} size={100} color={'white'} /\u003e\n        \u003cText\u003ereact-native-kakao-logo\u003c/Text\u003e\n      \u003c/SafeAreaView\u003e\n    \u003c/\u003e\n  );\n};\n\nconst styles = StyleSheet.create({\n  safeArea: {alignItems: 'center', justifyContent: 'center', flex: 1},\n  container: {\n    width: 120,\n    justifyContent: 'center',\n    flexWrap: 'wrap',\n    flexDirection: 'row',\n    borderRadius: 10,\n    overflow: 'hidden',\n  },\n  logo: {\n    backgroundColor: '#3c1e1e',\n    padding: 10,\n    margin: 10,\n  },\n});\n\nexport default App;\n```\n\u003cimg alt=\"example\" src=\"screenshots/example.png\" width=\"400\" height=\"auto\" /\u003e\n\n### Props\n\n| Prop   | Type      | Default | Description        |\n| :----- | :-------- | :------ | :----------------- |\n| size?  | number    | 25      | Logo size          |\n| color? | string    | #3C1E1E | Logo color         |\n| style? | ViewStyle | none    | Logo Wrapper Style |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbang9%2Freact-native-kakao-logo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbang9%2Freact-native-kakao-logo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbang9%2Freact-native-kakao-logo/lists"}