flowbite-svelte
Version:
Flowbite components for Svelte
35 lines (34 loc) • 1.06 kB
TypeScript
import { type TimepickerProps } from "../..";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [TimepickerProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L916)
* ## Props
* @prop id = "time"
* @prop endId = "end-time"
* @prop value = $bindable("00:00")
* @prop endValue = $bindable("00:00")
* @prop min = ""
* @prop max = ""
* @prop required = true
* @prop disabled = false
* @prop inputColor
* @prop buttonColor = "primary"
* @prop Icon
* @prop iconClass = "h-5 w-5 text-gray-500 dark:text-gray-400"
* @prop type = "default"
* @prop optionLabel = "Options"
* @prop options = []
* @prop size = "md"
* @prop divClass
* @prop inputClass
* @prop selectClass
* @prop timerangeLabel = "Choose time range"
* @prop timerangeButtonLabel = "Save time"
* @prop timeIntervals = []
* @prop columns = 2
* @prop onselect
*/
declare const Timepicker: import("svelte").Component<TimepickerProps, {}, "value" | "endValue">;
type Timepicker = ReturnType<typeof Timepicker>;
export default Timepicker;