mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-16 19:15:05 -05:00
fix: removed unnecessary changes
This commit is contained in:
@@ -19,7 +19,7 @@ export const Badge: React.FC<BadgeProps> = ({
|
||||
startIconClassName,
|
||||
className,
|
||||
}) => {
|
||||
const bg = {
|
||||
const bgColor = {
|
||||
warning: "bg-amber-100",
|
||||
success: "bg-green-100",
|
||||
error: "bg-red-100",
|
||||
@@ -45,7 +45,7 @@ export const Badge: React.FC<BadgeProps> = ({
|
||||
<span
|
||||
className={cn(
|
||||
"inline-flex cursor-default items-center rounded-full font-medium",
|
||||
bg[type],
|
||||
bgColor[type],
|
||||
textColor[type],
|
||||
padding[size],
|
||||
textSize,
|
||||
|
||||
Reference in New Issue
Block a user