Skip to content

Commit bf9e9f0

Browse files
committed
fix(styled skeleton): change import statements
1 parent c20a799 commit bf9e9f0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

apps/website/src/routes/docs/styled/skeleton/examples/card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { component$ } from '@builder.io/qwik';
2-
import { Skeleton } from '@qwik-ui/styled';
2+
import { Skeleton } from '~/components/ui';
33

44
export default component$(() => {
55
return (

apps/website/src/routes/docs/styled/skeleton/examples/hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { component$ } from '@builder.io/qwik';
2-
import { Skeleton } from '@qwik-ui/styled';
2+
import { Skeleton } from '~/components/ui';
33

44
export default component$(() => {
55
return (

apps/website/src/routes/docs/styled/skeleton/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ import { cn } from '@qwik-ui/utils';
2626

2727
export const Skeleton = component$<PropsOf<'div'>>(({ ...props }) => {
2828
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)} />
3030
);
3131
});
3232
```
3333

3434
## Usage
3535

3636
```tsx
37-
import { Skeleton } from '@qwik-ui/styled';
37+
import { Skeleton } from '~/components/ui';
3838
```
3939

4040
```tsx

0 commit comments

Comments
 (0)