nrjdalal / shadcn-ui-snippets

Simply import and use shadcn-ui components in your project
MIT License
90 stars 2 forks source link

cnx-resizable generates ResizableGroup instead of ResizablePanelGroup #3

Closed Joshimello closed 2 months ago

Joshimello commented 2 months ago

Issue Summary

As title.

Actual Results

<ResizableGroup direction="vertical">
  <ResizablePanel>One</ResizablePanel>
  <ResizableHandle withHandle />
  <ResizablePanel>Two</ResizablePanel>
</ResizableGroup>

Expected Results

<ResizablePanelGroup direction="vertical">
  <ResizablePanel>One</ResizablePanel>
  <ResizableHandle withHandle />
  <ResizablePanel>Two</ResizablePanel>
</ResizablePanelGroup>
nrjdalal commented 2 months ago

will check and fix shortly

nrjdalal commented 2 months ago

fixed, thanks for mentioning