payload
Version:
Node, React and MongoDB Headless CMS and Application Framework
20 lines • 569 B
TypeScript
import type { LinkProps } from 'react-router-dom';
import * as React from 'react';
import './index.scss';
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;
id?: string;
onClick?: () => void;
to?: LinkProps['to'];
};
export declare const Button: React.FC<MenuButtonProps>;
export {};
//# sourceMappingURL=index.d.ts.map