[WEB-4725] chore: storybook setup & tailwind config package improvements (#7614)
* chore: global css file added to tailwind config package * chore: tailwind config updated * chore: cn utility function added to propel package * chore: storybook init * fix: format error * chore: code refactor * chore: code refactor * fix: format error * fix: build error
This commit is contained in:
parent
34e231230f
commit
c2464939fc
10 changed files with 1164 additions and 6 deletions
3
packages/propel/src/utils/classname.tsx
Normal file
3
packages/propel/src/utils/classname.tsx
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
import { clsx, type ClassValue } from "clsx";
|
||||
|
||||
export const cn = (...inputs: ClassValue[]) => clsx(inputs);
|
||||
1
packages/propel/src/utils/index.ts
Normal file
1
packages/propel/src/utils/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export * from "./classname";
|
||||
Loading…
Add table
Add a link
Reference in a new issue