·
40 commits
to main
since this release
Patch Changes
-
#4742
2a8b327
Thanks @matthprost! - - System Icons from@ultraviolet/icons
have a change in their sizing.large
becamemedium
and a newlarge
sizing has been created (around 24px)<Button />
the propicon
,iconPosition
andiconSentiment
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