@patreon/studio
Version:
Patreon Studio Design System
9 lines (8 loc) • 490 B
TypeScript
import type { MaxHeight, Width } from '../types';
interface DropdownContainerProps {
maxHeight?: MaxHeight | number;
width?: Width | number | string;
hideOverflow?: boolean;
}
export declare const DropdownContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, DropdownContainerProps>> & string;
export {};