const Badge = ({ label, fillColor }: { label: string; fillColor: string }) => {
return (
)
}
export default Badge
// const Badge = ({
// label,
// fillColor,
// shadowColor,
// borderColor,
// }: {
// label: string
// fillColor?: string
// shadowColor?: string
// borderColor: string
// }) => {
// return (
//
//
// {label}
//
//
// )
// }
// export default Badge