Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
22 lines
755 B
Plaintext
22 lines
755 B
Plaintext
import type { LinkProps } from 'next/link.js';
|
|
import * as React from 'react';
|
|
import './index.scss';
|
|
export { PopupListDivider as Divider } from '../PopupDivider/index.js';
|
|
export { PopupListGroupLabel as GroupLabel } from '../PopupGroupLabel/index.js';
|
|
export declare const ButtonGroup: React.FC<{
|
|
buttonSize?: 'default' | 'small';
|
|
children: React.ReactNode;
|
|
className?: string;
|
|
textAlign?: 'center' | 'left' | 'right';
|
|
}>;
|
|
type MenuButtonProps = {
|
|
active?: boolean;
|
|
children: React.ReactNode;
|
|
className?: string;
|
|
disabled?: boolean;
|
|
href?: LinkProps['href'];
|
|
id?: string;
|
|
onClick?: (e?: React.MouseEvent) => void;
|
|
};
|
|
export declare const Button: React.FC<MenuButtonProps>;
|
|
//# sourceMappingURL=index.d.ts.map |