krypton-ui
Version:
<h1 align="center"> <p align="center"><a href="https://krypton-ui.com"><img src="https://user-images.githubusercontent.com/7073241/224507377-395bffc0-9ff7-4d74-865b-f734394a7e7e.png" alt="Krypton" width="200"></a></p> </h1>
16 lines (15 loc) • 417 B
TypeScript
import { ComponentPropsWithoutRef } from "react";
import { Color } from "../../types";
type RangeBaseType = {
color?: Color;
};
type RangeType = RangeBaseType & {
onChange: (value: number) => void;
initial: number;
max: number;
details?: boolean;
value?: number;
};
export type ColorStyledProps = RangeBaseType;
export type RangeProps = ComponentPropsWithoutRef<"div"> & RangeType;
export {};