UNPKG

@itgold/grandbazar-ui-kit

Version:

Grandbazar.io UI component library: React, Typescript, Tailwind, Rollup, Storybook, Jest.

10 lines (9 loc) 309 B
import { EventHandler } from 'react'; type TTimeInputProps = { onChange: EventHandler<any>; min: string; className: string; theme: 'dark' | 'light'; }; export declare function TimeInput({ onChange, min, className, theme }: TTimeInputProps): import("react/jsx-runtime").JSX.Element; export {};