Skip to content

Commit

Permalink
chore: add changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
Niznikr committed Jul 11, 2023
1 parent 997b1e5 commit 91c0a95
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .changeset/mighty-waves-doubt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
'@launchpad-ui/icons': minor
---

[Icons] Use sprites for icons instead of individual components

**Before**

```js
import { Add } from '@launchpad-ui/icons';

const MyIcon = () => <Add size="medium" />;
```

**After**

```js
import { Icon } from '@launchpad-ui/icons';

const MyIcon = () => <Icon name="add" size="medium />;
```

0 comments on commit 91c0a95

Please sign in to comment.