Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 25 Mar 17:21
· 14 commits to main since this release
c2b8795

Patch Changes

  • #1543 868e485 Thanks @SutuSebastian! - add new migrate CLI command

    • add new transformer from compound components to singular imports

      import { Button } from "flowbite-react";
      
      // from
      <Button.Group>
        <Button>tab 1</Button>
        <Button>tab 2</Button>
        <Button>tab 3</Button>
      </Button.Group>
      
      // to
      import { Button, ButtonGroup } from "flowbite-react";
      
      <ButtonGroup>
        <Button>tab 1</Button>
        <Button>tab 2</Button>
        <Button>tab 3</Button>
      </ButtonGroup>