0.1.1 • Published 8 months ago

@fibr/builder v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

builder

The barebone builder UI made with tailwindcss

Layout

<Workspace>
  <Header className="justify-center">Header</Header>
  <Container>
    <Sidebar>
      <SidebarItem
        name="palette"
        label="Palette"
        icon={<Squares2X2Icon className="size-5 stroke-2" />}
      >
        Palette Tab Content
      </SidebarItem>
      <SidebarItem
        name="over"
        label="Over"
        icon={<ListBulletIcon className="size-5 stroke-2" />}
      >
        Over Tab Content
      </SidebarItem>
    </Sidebar>
    <Canvas>
      <div className="flex items-center justify-center">Screen</div>
    </Canvas>
    <Settings />
  </Container>
  <Footer className="justify-center">Footer</Footer>
</Workspace>