/* -------------------------------------------------------------------------- */ /* Imports */ /* -------------------------------------------------------------------------- */ import classNames from "classnames"; import { StyleType } from "core/_variants"; import React from "react"; /* -------------------------------------------------------------------------- */ /* Component props */ /* -------------------------------------------------------------------------- */ type Props = { emphasis?: StyleType; children: React.ReactNode; className?: string; iconed?: boolean; onClick?: () => void; } & Omit, "">; /* -------------------------------------------------------------------------- */ /* Component implementation */ /* -------------------------------------------------------------------------- */ function Badge({ className, children, onClick, emphasis = "low", ...props }: Props): JSX.Element { return ( {children} ); } export default Badge;