@patreon/studio
Version:
Patreon Studio Design System
9 lines (8 loc) • 327 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").StyledComponent<"div", any, DropdownContainerProps, never>;
export {};