Files
flowbite-vue/dist/components/FwbDropdown/composables/useDropdownClasses.d.ts
2024-03-12 05:28:28 +01:00

12 lines
387 B
TypeScript

import { type Ref } from 'vue';
import type { DropdownPlacement } from '../types';
export type UseDropdownClassesProps = {
placement: Ref<DropdownPlacement>;
contentRef: Ref<HTMLDivElement | undefined>;
visible: Ref<boolean>;
};
export declare function useDropdownClasses(props: UseDropdownClassesProps): {
contentClasses: Ref<string>;
contentStyles: Ref<string>;
};