Skip to content

Commit

Permalink
fix(react): remove color text-white unnecesary (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiandotdev authored Apr 19, 2024
1 parent b97fff6 commit 4133a89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react/src/components/sheet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ const SheetContent = React.forwardRef<React.ElementRef<typeof SheetPrimitive.Con
{...props}
>
{children}
<SheetPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-70 transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" className={cn('lucide lucide-x size-5 text-white')}>
<SheetPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-80 transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" className="lucide lucide-x">
<path d="M18 6 6 18" />
<path d="m6 6 12 12" />
</svg>
Expand Down

0 comments on commit 4133a89

Please sign in to comment.