prosperita-dumbo-react
Version:
Uma biblioteca de componentes React moderna e acessível, desenvolvida para aplicações financeiras com design system consistente.
18 lines • 660 B
TypeScript
export type MenuButtonProps = {
size?: "large" | "small" | "medium";
drop?: boolean;
options?: TypeOptionsProps[];
menuAlignment?: "bottom" | "bottom start" | "bottom end";
variations?: "combo button" | "default" | "overflow";
label?: string;
kind?: "primary" | "secondary" | "tertiary" | "ghost" | "dangerPrimary" | "dangerTertiary" | "dangerGhost";
};
type TypeOptionsProps = {
label?: string;
href?: string;
onClick?: () => void;
icon?: string;
};
export declare const MenuButton: (props: MenuButtonProps) => import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=index.d.ts.map