Skip to content

Commit

Permalink
Update readme and changes styles example
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsi15 committed Feb 7, 2024
1 parent f2c7b2d commit 0356a3e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 15 deletions.
18 changes: 5 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ When using the **ProgressiveCounter component**, you need to define the initial

**Optional Customization:**

The ProgressiveCounter component supports customization through various props. You can customize the appearance and behavior of the counter by passing additional props such as **CSS classes**, animation styles, or other configuration options.
The ProgressiveCounter component supports customization through various props. You can customize the appearance and behavior of the counter by passing additional props such as **CSS classes**, and other configuration options.

**Interacting with the Counter:**

Expand Down Expand Up @@ -150,15 +150,7 @@ This project is licensed under the MIT License. For more details, see the [LICEN

## Contact

<a href="https://www.linkedin.com/in/jandreys15" aria-label="Linkedin" target="_blank" style="text-decoration: none;">
<img src="https://github.com/johnsi15/progressive-counter/assets/2974447/5a80c7ba-8031-46e1-b0f4-1d9d33709db1" width="30" height="30" />
</a><a href="https://github.com/johnsi15" aria-label="GitHub" target="_blank" style="text-decoration: none;">
<img src="https://github.com/johnsi15/progressive-counter/assets/2974447/fa304dd0-f61d-4f40-b9a0-012896d1e4f6" width="25" height="25" />
</a>
<a href="https://www.facebook.com/johnserranodev" aria-label="Facebook" target="_blank" style="text-decoration: none;">
<img src="https://github.com/johnsi15/progressive-counter/assets/2974447/c855e722-1372-48e1-b05d-0435d4e99d82" width="25" height="25" />
</a>
<a href="https://www.youtube.com/channel/UCycvOkhF14veCixjxn1em4A" aria-label="YouTube" target="_blank" style="text-decoration: none;">
<img src="https://github.com/johnsi15/progressive-counter/assets/2974447/44474f83-bf62-47fc-96e5-c955a64f9ec2" width="25" height="25" />
</a>

[Linkedin](https://www.linkedin.com/in/jandreys15) -
[GitHub](https://github.com/johnsi15) -
[Facebook](https://www.facebook.com/johnserranodev) -
[YouTube](https://www.youtube.com/channel/UCycvOkhF14veCixjxn1em4A)
3 changes: 2 additions & 1 deletion example/style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.number {
font-size: 40px;
font-size: 70px;
font-weight: bold;
color: aqua;
text-align: center;
Expand All @@ -16,5 +16,6 @@ body {
background-color: #000000;
display: grid;
justify-content: center;
align-items: center;
min-height: 100dvh;
}
2 changes: 1 addition & 1 deletion test/index.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as React from 'react';
import { render, screen, act } from '@testing-library/react';
// import '@testing-library/jest-dom';
import '@testing-library/jest-dom';

import { ProgressiveCounter } from '../src/index';
import { progressiveCounter } from '../src/progressiveCounter';
Expand Down

0 comments on commit 0356a3e

Please sign in to comment.