UNPKG

fwt-internship-uikit

Version:
18 lines (17 loc) 392 B
import { FC } from 'react'; export interface IRange { /** * Specify an optional className to be applied to the select box */ className?: string; /** * Current theme */ isDarkTheme: boolean; /** * Function called when the dropdown is closed */ onClose: () => void; } declare const Range: FC<IRange>; export default Range;