https://github.com/hunghg255/github-corners
Github Corners
https://github.com/hunghg255/github-corners
corners github github-corners web-component
Last synced: 6 months ago
JSON representation
Github Corners
- Host: GitHub
- URL: https://github.com/hunghg255/github-corners
- Owner: hunghg255
- Created: 2023-05-05T19:46:29.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-01T23:25:20.000Z (over 1 year ago)
- Last Synced: 2025-04-06T06:34:48.566Z (6 months ago)
- Topics: corners, github, github-corners, web-component
- Language: TypeScript
- Homepage: https://github-corners.vercel.app/
- Size: 24.4 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
[](https://badge.fury.io/js/gh-corners) [](https://www.npmjs.com/package/gh-corners) [](https://www.npmjs.com/package/gh-corners)
[](#contributors-)[Live Demo](https://github-corners.vercel.app/)
## Installation
[](https://nodei.co/npm/gh-corners/)
# Package
```js
import 'gh-corners';
```# unpkg.com CDN:
```js
```
# HTML
``````
# Reactjs
[react-gh-corners](https://www.npmjs.com/package/react-gh-corners)
```
npm i react-gh-corners@latest
```# Use
```tsx
import { GithubCorners } from 'react-gh-corners';// Nextjs only CSR
const GithubCorners = dynamic(() => import('react-gh-corners').then((m) => m.GithubCorners), {
ssr: false,
});const App = () => {
return (
);
};
```