https://github.com/10secondsofcode/react-blink-text
A simple react blink component for any html tag
https://github.com/10secondsofcode/react-blink-text
blink blink-component component component-library html-tags react react-blink react-blink-text react-components styled-components
Last synced: 4 months ago
JSON representation
A simple react blink component for any html tag
- Host: GitHub
- URL: https://github.com/10secondsofcode/react-blink-text
- Owner: 10secondsofcode
- License: mit
- Created: 2019-09-11T13:29:43.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-31T13:44:16.000Z (over 5 years ago)
- Last Synced: 2025-09-08T22:38:45.697Z (4 months ago)
- Topics: blink, blink-component, component, component-library, html-tags, react, react-blink, react-blink-text, react-components, styled-components
- Language: JavaScript
- Homepage:
- Size: 644 KB
- Stars: 8
- Watchers: 1
- Forks: 4
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# React Blink
This reusable React component will manage to blink any text and changing the text color and font size if we need.
`Blink` takes plain HTML tags and outputs plain HTML tags. It's dead simple, and React beginner friendly.
## Example
```
import React, { Component } from "react";
import Blink from 'react-blink-text';
function Application(){
return (
Testing the Blink
);
}
export default Application;
```
## Features
1. Supports all html tags : H1, H2, h3,..,etc., Span, Div, A Href tag.
2. Supports all different types of colors
3. Supports server-side rendering.
## Installation
### Yarn:
```
yarn add react-blink-text
```
### npm:
```
npm install --save react-blink-text
```