12 lines
387 B
TypeScript
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>;
|
|
};
|