import styles from "./badge.module.css" type BadgeProps = { type: "primary" | "secondary" | "error" | "warning" children: React.ReactNode } const Badge = ({ type, children }: BadgeProps) => { return (
{children}
) } export default Badge