@theguild/components
Version:
16 lines (13 loc) • 476 B
text/typescript
import * as react_jsx_runtime from 'react/jsx-runtime';
interface VersionDropdownProps {
chevronPosition?: 'left' | 'right';
currentVersion: string;
versions: {
label?: string;
value: string;
href?: string;
onClick?: () => void;
}[];
}
declare function VersionDropdown({ currentVersion, versions, chevronPosition, }: VersionDropdownProps): react_jsx_runtime.JSX.Element;
export { VersionDropdown, type VersionDropdownProps };