UNPKG

@primer/react-brand

Version:

Primer Brand is a GitHub's design system for creating React-based marketing websites and digital experiences.

10 lines (9 loc) 428 B
import React from 'react'; export type RangeProps = { tooltip?: boolean; tooltipFormatter?: (value: number) => string; max?: number; a11yStep?: number; name?: string; } & React.HTMLProps<HTMLInputElement>; export declare const Range: ({ className, onChange, value: startValue, max, onKeyDown, a11yStep, tooltip, tooltipFormatter, name, id, ...props }: RangeProps) => import("react/jsx-runtime").JSX.Element;