@spaced-out/ui-design-system
Version:
Sense UI components library
12 lines • 546 B
TypeScript
import * as React from 'react';
import type { AnchorType } from '../ButtonDropdown';
import type { ElevationType } from '../Tooltip';
import type { ButtonTabProps } from './ButtonTab';
export type ButtonTabDropdownProps = ButtonTabProps & {
title: string;
elevation?: ElevationType;
dropdownClass?: string;
anchorPosition?: AnchorType;
};
export declare const ButtonTabDropdown: ({ title, elevation, anchorPosition, ...buttonTabProps }: ButtonTabDropdownProps) => React.JSX.Element;
//# sourceMappingURL=ButtonTabDropdown.d.ts.map