flowbite-svelte
Version:
Flowbite components for Svelte
33 lines (32 loc) • 986 B
TypeScript
import type { FloatingLabelInputProps } from "../..";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [FloatingLabelInputProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L760)
* ## Props
* @prop children
* @prop id = idGenerator()
* @prop value = $bindable()
* @prop elementRef = $bindable()
* @prop variant = "standard"
* @prop size = "default"
* @prop color = "default"
* @prop class: className
* @prop classes
* @prop inputClass
* @prop labelClass
* @prop clearable
* @prop clearableSvgClass
* @prop clearableColor = "none"
* @prop clearableClass
* @prop clearableOnClick
* @prop data = []
* @prop maxSuggestions = 5
* @prop onSelect
* @prop comboClass
* @prop placeholder
* @prop ...restProps
*/
declare const FloatingLabelInput: import("svelte").Component<FloatingLabelInputProps, {}, "value" | "elementRef">;
type FloatingLabelInput = ReturnType<typeof FloatingLabelInput>;
export default FloatingLabelInput;