UNPKG

@zenithui/time-picker

Version:

A ZenithUi Time Picker is React component enables users to select a time from a predefined list of options.

12 lines (11 loc) 802 B
import * as React from "react"; import * as PopoverPrimitive from "@radix-ui/react-popover"; declare const Popover: typeof PopoverPrimitive.Root; declare const PopoverTrigger: React.FC<React.ComponentPropsWithoutRef<typeof PopoverPrimitive.Trigger>>; declare const PopoverAnchor: React.FC<React.ComponentPropsWithoutRef<typeof PopoverPrimitive.Anchor>>; interface PopoverContentProps extends React.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content> { openAnimate?: "fade" | "zoom" | "slide" | "flip" | "rotate" | "bounce"; closeAnimate?: "fade" | "zoom" | "slide" | "flip" | "rotate" | "bounce"; } declare const PopoverContent: React.ForwardRefExoticComponent<PopoverContentProps & React.RefAttributes<HTMLDivElement>>; export { Popover, PopoverTrigger, PopoverContent, PopoverAnchor };