Skip to content

@ultraviolet/[email protected]

Compare
Choose a tag to compare
@scaleway-bot scaleway-bot released this 10 Feb 14:39
· 40 commits to main since this release
22175c5

Patch Changes

  • #4742 2a8b327 Thanks @matthprost! - - System Icons from @ultraviolet/icons have a change in their sizing. large became medium and a new large sizing has been created (around 24px)

    • <Button /> the prop icon, iconPosition and iconSentiment has been marked as deprecated and will be removed in future major release. You should use the icon component directly in the children of the button:
    // Before
    import { Button } from "@ultraviolet/ui";
    
    <Button icon="pencil" iconPosition="right" iconVariant="outline">
      Edit
    </Button>;
    // After
    import { Button } from "@ultraviolet/ui";
    import { PencilOutlineIcon } from "@ultraviolet/icons";
    
    <Button>
      Edit <PencilOutlineIcon />
    </Button>;
    • Fix of other legacy usages of icons into the library