UNPKG

prosperita-dumbo-react

Version:

**Dumbo React** é uma biblioteca de componentes React que facilita a manipulação de propriedades em seus componentes. Ela fornece uma forma simples e eficiente de gerenciar e manipular props, tornando seu código mais limpo e fácil de manter.

18 lines 660 B
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