@open-condo/ui
Version:
A set of React UI components for developing applications inside the condo ecosystem
10 lines • 329 B
TypeScript
import './style.less';
import React from 'react';
import { ButtonProps } from '../../Button';
export type ExtendedButtonProps = Omit<ButtonProps, 'icon' | 'href'>;
/**
* For internal use only
*/
declare const ExtendedButton: React.FC<ExtendedButtonProps>;
export { ExtendedButton };
//# sourceMappingURL=extendedButton.d.ts.map