File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
apps/website/src/routes/docs/styled/skeleton Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
import { component$ } from '@builder.io/qwik' ;
2
- import { Skeleton } from '@qwik-ui/styled ' ;
2
+ import { Skeleton } from '~/components/ui ' ;
3
3
4
4
export default component$ ( ( ) => {
5
5
return (
Original file line number Diff line number Diff line change 1
1
import { component$ } from '@builder.io/qwik' ;
2
- import { Skeleton } from '@qwik-ui/styled ' ;
2
+ import { Skeleton } from '~/components/ui ' ;
3
3
4
4
export default component$ ( ( ) => {
5
5
return (
Original file line number Diff line number Diff line change @@ -26,15 +26,15 @@ import { cn } from '@qwik-ui/utils';
26
26
27
27
export const Skeleton = component$ <PropsOf <' div' >>(({ ... props }) => {
28
28
return (
29
- <div { ... props } class = { cn (' bg-foreground/10 animate-pulse rounded' , props .class )} />
29
+ <div { ... props } class = { cn (' animate-pulse rounded bg-foreground/10 ' , props .class )} />
30
30
);
31
31
});
32
32
```
33
33
34
34
## Usage
35
35
36
36
``` tsx
37
- import { Skeleton } from ' @qwik-ui/styled ' ;
37
+ import { Skeleton } from ' ~/components/ui ' ;
38
38
```
39
39
40
40
``` tsx
You can’t perform that action at this time.
0 commit comments