cherry-styled-components
Version:
Cherry is a design system for the modern web. Designed in Figma, built in React using Typescript.
14 lines (13 loc) • 457 B
TypeScript
import { default as React } from 'react';
import { Theme } from './utils';
interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size"> {
className?: string;
$label?: string;
$size?: "default" | "big";
$error?: boolean;
$success?: boolean;
$fullWidth?: boolean;
theme?: Theme;
}
declare const Range: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
export { Range };