UNPKG

flowbite-qwik

Version:

Official Qwik components built for Flowbite and Tailwind CSS

12 lines (11 loc) 599 B
import { Signal } from '@builder.io/qwik'; import { FlowbiteTheme } from '../../../components/FlowbiteThemable/composables/use-flowbite-themable'; import { InputSize } from '../../../components/Input/input-types'; export type FlowbiteToggleColor = FlowbiteTheme | 'yellow' | 'default' | 'teal' | 'orange'; export declare function useToggleClasses(size: Signal<InputSize>, color: Signal<FlowbiteToggleColor>): { labelClasses: Signal<string>; toggleSize: Signal<string>; toggleClasses: Signal<string>; toggleColor: Signal<string | undefined>; toggleBallClasses: Signal<string>; };