mfg-ui-components
Version:
React UI library with reusable components
19 lines (18 loc) • 657 B
TypeScript
import React from "react";
import "./Badge.scss";
export type Type = "mfg-primary" | "mfg-link" | "mfg-danger" | "mfg-success" | "mfg-normal";
export type size = "mfg-small" | "mfg-medium" | "mfg-large";
export interface Props {
size?: size;
type?: Type;
customClass?: string;
id?: any;
onBadgerClick?: any;
badgeLink?: any;
badgeData: any;
removeBadge?: any;
removeVisible?: boolean;
style?: React.CSSProperties;
}
declare const Badge: ({ size, type, customClass, id, onBadgerClick, badgeLink, badgeData, removeBadge, removeVisible, style, }: Props) => import("react/jsx-runtime").JSX.Element;
export default Badge;