File tree Expand file tree Collapse file tree 1 file changed +2
-20
lines changed
apps/website/src/components/status-banner Expand file tree Collapse file tree 1 file changed +2
-20
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { Badge } from '@qwik-ui/styled';
3
3
import { cn } from '@qwik-ui/utils' ;
4
4
import { ComponentStatus } from '~/_state/component-status.type' ;
5
5
import { getVariantByStatus } from '../component-status-badge/component-status-badge' ;
6
+ import { LuX } from '@qwikest/icons/lucide' ;
6
7
7
8
export interface StatusBannerProps {
8
9
status ?: ComponentStatus ;
@@ -98,28 +99,9 @@ export const StatusBanner = component$(({ status }: StatusBannerProps) => {
98
99
} }
99
100
class = "absolute right-2 top-2 scale-150"
100
101
>
101
- < EpCircleCloseFilled />
102
+ < LuX class = "size-3" />
102
103
</ button >
103
104
</ div >
104
105
</ >
105
106
) ;
106
107
} ) ;
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
- }
You can’t perform that action at this time.
0 commit comments