Skip to content

Commit

Permalink
style: remove classes from close btn
Browse files Browse the repository at this point in the history
  • Loading branch information
JaneMoroz committed Sep 23, 2023
1 parent ec2c617 commit cd72006
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/components/modals/Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,7 @@ export default function Modal({
{/* HEADER */}
<div className="flex items-center justify-between">
<h3 className="text-xl font-semibold capitalize">{title}</h3>
<button
type="button"
aria-label="close modal"
className="btn btn-circle"
onClick={onClose}
>
<button type="button" aria-label="close modal" onClick={onClose}>
<XMarkIcon className="w-6 h-6 fill-current" />
</button>
</div>
Expand Down

0 comments on commit cd72006

Please sign in to comment.