@dodobrat/react-ui-kit
Version:
Simple React Component Library
8 lines (7 loc) • 432 B
TypeScript
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 {};