UNPKG

@kibisis/connect-kit

Version:

The UI kit to allow dApps to connect to the Kibisis wallets.

11 lines 407 B
import { JSX, VNode } from 'preact'; import { IBaseComponentProps, TIconProps } from '../../../types'; interface IProps extends IBaseComponentProps { children: string; fullWidth?: boolean; leftIcon?: VNode<TIconProps>; rightIcon?: VNode<TIconProps>; } type TProps = IProps & Omit<JSX.HTMLAttributes<HTMLButtonElement>, 'children'>; export default TProps; //# sourceMappingURL=TProps.d.ts.map