@cimpress/react-components
Version:
React components to support the MCP styleguide
12 lines • 575 B
TypeScript
import { ReactNode } from 'react';
import { PublicComponentProps } from './types';
export interface DropdownProps extends PublicComponentProps {
children?: Exclude<ReactNode, String | Number | Boolean>;
variant?: 'default' | 'simple' | 'navtab';
as?: keyof JSX.IntrinsicElements;
disabled?: boolean;
title?: string;
[passthruProps: string | number | symbol]: unknown;
}
export declare const Dropdown: ({ className, variant, as: AsComponentProp, disabled, title, ...passthruProps }: DropdownProps) => JSX.Element;
//# sourceMappingURL=Dropdown.d.ts.map