import { type PropsWithChildren } from 'react';

import { Badge as MuiBadge } from '@mui/material';

import { type BadgeProps } from './types';

const Badge = ({ ...badgeProps }: PropsWithChildren<BadgeProps>) => {
  return <MuiBadge {...badgeProps} />;
};

export type { BadgeProps };

export default Badge;
