@confi/conflux-react-ui-test-package
Version:
Modern and minimalist React UI library.
10 lines (9 loc) • 556 B
TypeScript
import React, { ReactNode } from 'react';
import { NormalSizes } from '../utils/prop-types';
import { ButtonProps } from 'components/button/button';
import { ButtonGroupConfig } from 'components/button-group/button-group-context';
export declare const getButtonChildrenWithIcon: (auto: boolean, size: NormalSizes, children: ReactNode, icons: {
icon?: React.ReactNode;
iconRight?: React.ReactNode;
}) => JSX.Element;
export declare const filterPropsWithGroup: (props: React.PropsWithChildren<ButtonProps>, config: ButtonGroupConfig) => ButtonProps;