Skip to content

Commit 421be90

Browse files
committed
docs(status-banner): change close icon to LuX
1 parent 26f01ce commit 421be90

File tree

1 file changed

+2
-20
lines changed

1 file changed

+2
-20
lines changed

apps/website/src/components/status-banner/status-banner.tsx

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { Badge } from '@qwik-ui/styled';
33
import { cn } from '@qwik-ui/utils';
44
import { ComponentStatus } from '~/_state/component-status.type';
55
import { getVariantByStatus } from '../component-status-badge/component-status-badge';
6+
import { LuX } from '@qwikest/icons/lucide';
67

78
export interface StatusBannerProps {
89
status?: ComponentStatus;
@@ -98,28 +99,9 @@ export const StatusBanner = component$(({ status }: StatusBannerProps) => {
9899
}}
99100
class="absolute right-2 top-2 scale-150"
100101
>
101-
<EpCircleCloseFilled />
102+
<LuX class="size-3" />
102103
</button>
103104
</div>
104105
</>
105106
);
106107
});
107-
108-
export function EpCircleCloseFilled() {
109-
return (
110-
<svg
111-
xmlns="http://www.w3.org/2000/svg"
112-
viewBox="0 0 24 24"
113-
fill="none"
114-
stroke="currentColor"
115-
stroke-width="2"
116-
stroke-linecap="round"
117-
stroke-linejoin="round"
118-
class="h-4 w-4"
119-
>
120-
<circle cx="12" cy="12" r="10" />
121-
<path d="m15 9-6 6" />
122-
<path d="m9 9 6 6" />
123-
</svg>
124-
);
125-
}

0 commit comments

Comments
 (0)