import { Meta, Stories, ArgTypes, Primary, Subtitle } from "@storybook/blocks";
import * as BadgeStories from "./src/badge.stories";
import packageInfo from "./package.json";
Badge
Version {packageInfo.version}
Showcase
Properties
Installation
Via NPM, in the monorepo
Add the dependency to your consumer app like "@purpurds/purpur": "^x.y.z"
In MyApp.tsx
import "@purpurds/purpur/styles";
In MyComponent.tsx
import { Badge } from "@purpurds/purpur";
export const MyComponent = () => {
return (
<div>
<Badge {...someProps}>Some content</Badge>
</div>
);
};