All Projects β†’ furkanmavili β†’ react-rounder

furkanmavili / react-rounder

Licence: MIT license
A collection of rounding components based on styled-components

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to react-rounder

react-awesome-loaders
πŸš€ High quality, super responsive and completely customisable Loading Animations to insert into your website with single line of code.
Stars: ✭ 146 (+111.59%)
Mutual labels:  spinners, loaders, react-spinner
vue-spinners-css
Amazing collection of Vue spinners components with pure css.
Stars: ✭ 50 (-27.54%)
Mutual labels:  spinners, loaders
react-native-animated-loader
🍭 A React Native Loader Component which uses Airbnb's Lottie for beautiful loader animations.
Stars: ✭ 165 (+139.13%)
Mutual labels:  spinners, loaders
Ng Spin Kit
SpinKit (http://tobiasahlin.com/spinkit/) spinners for Angular
Stars: ✭ 90 (+30.43%)
Mutual labels:  spinners
Indicators
Activity Indicators for Modern C++
Stars: ✭ 1,838 (+2563.77%)
Mutual labels:  spinners
Spinners React
Lightweight SVG/CSS spinners for React
Stars: ✭ 254 (+268.12%)
Mutual labels:  spinners
Yakhont
The high-level Android components library for data loading, location, lifecycle callbacks and more.
Stars: ✭ 13 (-81.16%)
Mutual labels:  loaders
Aframe Preloader Component
A preloading bar that automatically displays while scene assets load.
Stars: ✭ 27 (-60.87%)
Mutual labels:  spinners
graphql-dependency
Cross service dependencies for GraphQL API with underlying @imqueue services
Stars: ✭ 17 (-75.36%)
Mutual labels:  loaders
React Spinners Css
Amazing collection of React spinners components with pure css
Stars: ✭ 232 (+236.23%)
Mutual labels:  spinners
React Native Animated Spinkit
A collection of loading indicators for React Native
Stars: ✭ 186 (+169.57%)
Mutual labels:  spinners
React Spinners
A collection of loading spinner components for react
Stars: ✭ 2,054 (+2876.81%)
Mutual labels:  spinners
eleventy-load
Resolve dependencies and post-process files in your Eleventy project
Stars: ✭ 28 (-59.42%)
Mutual labels:  loaders
Materialspinner
Implementation of a Material Spinner for Android with TextInputLayout functionalities
Stars: ✭ 107 (+55.07%)
Mutual labels:  spinners
spinners
A collection of CSS spinners
Stars: ✭ 24 (-65.22%)
Mutual labels:  spinners
Awesome Spinners
πŸ’« A curated collection of dazzling web spinners
Stars: ✭ 1,108 (+1505.8%)
Mutual labels:  spinners
ZXLoadingView
πŸ•ZXLoadingView is an iOS progress-activity
Stars: ✭ 14 (-79.71%)
Mutual labels:  spinners
Alive Progress
A new kind of Progress Bar, with real-time throughput, ETA, and very cool animations!
Stars: ✭ 2,940 (+4160.87%)
Mutual labels:  spinners
React Awesome Spinners
Awesome spinners for React πŸ‘‹ βš› Built with styled-components πŸ’…
Stars: ✭ 237 (+243.48%)
Mutual labels:  spinners
loaders
ECMAScript Modules Loaders
Stars: ✭ 65 (-5.8%)
Mutual labels:  loaders

React Rounder

npm version license downloads size peer dependecy

A collection of rounding components based on styled-components

Demo

Preview

Installation

With npm:

npm install --save react-rounder

With Yarn:

yarn add react-rounder

Usage

Each loader has their own default properties. You can overwrite the defaults by passing props into the loaders.

Basic Example

import { Jelly } from "react-rounder/Jelly";

function App() {
 
  return (
    <Jelly size={40} color="orange" />
  );
}

export default App;

Show/Hide Example

import React, { useState } from "react";
import { Jelly } from "react-rounder/Jelly";

function App() {
  const [showRounder, setShowRounder] = useState(true);

  return (
    <>
      <button onClick={() => setShowRounder(prev => !prev)}>
        Toggle Rounder!
      </button>

      <Jelly size={40} color="orange" show={showRounder} />
    </>
  );
}

export default App;

Props

Default props for all rounders:

show: true; // boolean
color: "#818CF8"; // any css color value
size: 48; // px 

Contributing

  • Pull requests are always welcome
  • For bugs or new rounder requests please create an issue

License

MIT

Buy Me A Coffee

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].