Skip to content

Commit 307852a

Browse files
Fix import paths
1 parent eaf3d1b commit 307852a

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

packages/proicons-react/src/createIcon.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as React from 'react'
2-
import { kebabCase, kebabToCamelCase } from '../../../src/rename'
2+
import { kebabCase, kebabToCamelCase } from '@proicons/shared'
33
import { convertNodesWithConfig } from '@proicons/shared'
44
import { ProIconAttributes } from './types'
55

site/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"sass-embedded": "^1.97.2",
1919
"shiki": "3.2.1",
2020
"vitepress": "2.0.0-alpha.15",
21-
"vue": "^3.5.26"
21+
"vue": "^3.5.26",
22+
"@proicons/shared": "workspace:*"
2223
}
2324
}

site/pnpm-lock.yaml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

site/src/.vitepress/theme/composables/useCodeExamples.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { camelToKebabCase, kebabCase, pascalCase } from '../../../../../src/rename'
1+
import { camelToKebabCase, kebabCase, pascalCase } from '@proicons/shared'
22
import { defaultCustomizations, type CustomizationData } from './useCustomizations'
33

44
type Format = 'jsx' | 'vue' | 'html'

0 commit comments

Comments
 (0)