UNPKG

cherry-styled-components

Version:

Cherry is a design system for the modern web. Designed in Figma, built in React using Typescript.

13 lines (12 loc) 447 B
import { default as React } from 'react'; interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size"> { className?: string; $wrapperClassName?: string; $label?: string; $size?: "default" | "big" | "small"; $error?: boolean; $success?: boolean; $fullWidth?: boolean; } declare const Range: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>; export { Range };