chore: Modale mit bi bi-x-circle-fill Icon schließen

This commit is contained in:
ISA
2025-09-10 11:02:47 +02:00
parent 484902b788
commit 4c45c3b9ca
10 changed files with 55 additions and 10 deletions

View File

@@ -133,7 +133,15 @@ const IsoChartView: React.FC<IsoChartViewProps> = ({
aria-label="Schließen"
type="button"
>
<i className="bi bi-x-lg" />
<i
style={{
background: "transparent",
border: "none",
fontSize: "1.5rem",
cursor: "pointer",
}}
className="bi bi-x-circle-fill"
/>
</button>
</div>
<div className="absolute top-2 right-28">

View File

@@ -134,7 +134,15 @@ const KVZChartView: React.FC<KVZChartViewProps> = ({
aria-label="Schließen"
type="button"
>
<i className="bi bi-x-lg" />
<i
style={{
background: "transparent",
border: "none",
fontSize: "1.5rem",
cursor: "pointer",
}}
className="bi bi-x-circle-fill"
/>
</button>
</div>
</header>

View File

@@ -126,7 +126,15 @@ function LoopChartView({ isOpen, onClose, slotIndex }: LoopChartViewProps) {
aria-label="Schließen"
type="button"
>
<i className="bi bi-x-lg" />
<i
style={{
background: "transparent",
border: "none",
fontSize: "1.5rem",
cursor: "pointer",
}}
className="bi bi-x-circle-fill"
/>
</button>
</div>
<div className="absolute top-2 right-28">

View File

@@ -128,7 +128,15 @@ const TDRChartView: React.FC<TDRChartViewProps> = ({
aria-label="Schließen"
type="button"
>
<i className="bi bi-x-lg" />
<i
style={{
background: "transparent",
border: "none",
fontSize: "1.5rem",
cursor: "pointer",
}}
className="bi bi-x-circle-fill"
/>
</button>
</div>
<div className="absolute top-2 right-28">

View File

@@ -83,7 +83,15 @@ export default function KueModal({ showModal, onClose, slot }: KueModalProps) {
aria-label="Modal schließen"
type="button"
>
<i className="bi bi-x-lg text-base" />
<i
style={{
background: "transparent",
border: "none",
fontSize: "1.5rem",
cursor: "pointer",
}}
className="bi bi-x-circle-fill"
/>
</button>
</div>