UNPKG

@dodobrat/react-ui-kit

Version:
8 lines (7 loc) 432 B
import React from "react"; import { AllCustomizationProps, CnCh, ElemType, PigmentColorProps, RippleEffect, SyntheticKeyboardControls } from "../../helpers/global.types"; declare type ExtraBadgeProps = ElemType & AllCustomizationProps & PigmentColorProps & CnCh & SyntheticKeyboardControls & RippleEffect; export interface BadgeProps extends ExtraBadgeProps { onClick?: React.MouseEventHandler<HTMLElement>; } export {};