@safronman/ui-kit-ictagram
v0.1.3
Published
Reusable React UI kit components for Ictagram projects.
Maintainers
Readme
@safronman/ui-kit-ictagram
Reusable React UI components for Ictagram projects.
Installation
pnpm add @safronman/ui-kit-ictagramPeer dependencies:
react@^19react-dom@^19
Usage
Import the styles once in your app entry file:
import '@safronman/ui-kit-ictagram/styles.css';Then use components:
import { Button, Typography } from '@safronman/ui-kit-ictagram';
export function Example() {
return (
<div>
<Typography variant="h2">UI kit demo</Typography>
<Button variant="primary">Click</Button>
</div>
);
}Local Development
pnpm dev- start Vite dev serverpnpm storybook- run Storybookpnpm lint- lint sourcepnpm typecheck- TypeScript project checkpnpm build- build distributable package intodist/
Release Process
This repo uses Changesets + GitHub Actions.
- Create a changeset:
pnpm changeset - Commit the generated file in
.changeset/. - Merge into
main. - Release workflow bumps version and publishes to npm using
NPM_TOKEN.
Package Exports
@safronman/ui-kit-ictagram- components and utilities@safronman/ui-kit-ictagram/styles.css- package styles
