0.4.7 • Published 11 months ago
@raycast/icons v0.4.7
Raycast Icons
This library contains Raycast Icons exported as React components.
Getting Started
First, install the library:
npm install @raycast/iconsThen, import the icons:
import { AddPersonIcon, CircleFilledIcon } from "@raycast/icons";
function MyComponent() {
return (
<div>
<AddPersonIcon />
<CircleFilledIcon />
</div>
);
}Publishing
- Increase the version in
package.json - Run
npm run build - Run
npm publish
Make sure you have the correct permissions to publish to the npm registry and is logged in with the account in both the cli and the npm website.