@@ -19,18 +19,18 @@ import { Meta, Story } from '@storybook/addon-docs';
1919
2020## Install
2121
22- The UI came with diffences package namely ` @var-ui /icon ` and ` @var-ui/core `
22+ The UI came with diffences package namely ` @var-meta-tech /icon ` and ` @var-meta-tech/ui `
2323
2424``` sh
25- npm install @var-ui/core @var-ui /icon
25+ npm install @var-meta-tech/ui @var-meta-tech /icon
2626```
2727
2828``` sh
29- yarn add @var-ui/core @var-ui /icon
29+ yarn add @var-meta-tech/ui @var-meta-tech /icon
3030```
3131
3232``` sh
33- pnpm i @var-ui/core @var-ui /icon
33+ pnpm i @var-meta-tech/ui @var-meta-tech /icon
3434```
3535
3636## Tailwind CSS Setup
@@ -41,7 +41,7 @@ the following code to your `tailwind.config.js` file:
4141
4242``` ts
4343// tailwind.config.ts
44- import { createThemes } from ' @var-ui /theme' ;
44+ import { createThemes } from ' @var-meta-tech /theme' ;
4545import { withTV } from ' tailwind-variants/transformer' ;
4646import type { Config } from ' tailwindcss' ;
4747
@@ -51,7 +51,7 @@ const config: Config = {
5151 ' ./.storybook/welcome.stories.mdx' ,
5252 ' ./src/components/**/*.{js,ts,jsx,tsx,mdx}' ,
5353 ' ./src/app/**/*.{js,ts,jsx,tsx,mdx}' ,
54- ' ./node_modules/@var-ui/core /**/*.{js,ts,jsx,tsx}' ,
54+ ' ./node_modules/@var-meta-tech/ui /**/*.{js,ts,jsx,tsx}' ,
5555 ],
5656 plugins: [createThemes ()],
5757};
@@ -65,7 +65,7 @@ Now, you can use the component you installed in your application:
6565
6666``` jsx
6767import * as React from ' react' ;
68- import { Button } from ' @var-ui/core ' ;
68+ import { Button } from ' @var-meta-tech/ui ' ;
6969
7070function App () {
7171 return < Button> Press me< / Button> ;
0 commit comments