Hello everybody,
from version 1.7.0 it's now possible unleash your creativity having predefined skins for your input spinner 馃帀.
Create your skin and submit it to the community by attaching the code, a sample screenshot and the name for your skin.
The best ones will be added to the main library 馃槂.
This is a simple example of how to create a skin (clean skin already available):
Example
Skin Clean (clean)
Code
import React from "react";
export const getProps = (props) => {
const backgroundFallback = props.background ? props.background : "#FFF";
return {
shadow: props.shadow ? props.shadow : true,
color: backgroundFallback,
colorAsBackground: true,
};
};
Screenshot

Hello everybody,
from version 1.7.0 it's now possible unleash your creativity having predefined skins for your input spinner 馃帀.
Create your skin and submit it to the community by attaching the code, a sample screenshot and the name for your skin.
The best ones will be added to the main library 馃槂.
This is a simple example of how to create a skin (clean skin already available):
Example
Skin Clean (
clean)Code
Screenshot