Socket
Book a DemoInstallSign in
Socket

@skqksh/kaia-design-system

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@skqksh/kaia-design-system

**Note: This repository is currently in the experimental stage. Features and implementations are subject to change as development progresses.**

unpublished
latest
npmnpm
Version
0.1.0
Version published
Weekly downloads
0
Maintainers
0
Weekly downloads
 
Created
Source

Note: This repository is currently in the experimental stage. Features and implementations are subject to change as development progresses.

Kaia Design System

This is the Kaia Design System built with React and emotion/styled, using Yarn for package management and building the project. The kit includes a variety of reusable UI components and SVG icons.

Features

  • React Components: Modular and reusable React components.
  • @emotion/styled: Utilizes @emotion/styled for styling.
  • SVG Icons: Easy inclusion and use of SVG icons with automatic imports.
  • TypeScript: Strongly typed components using TypeScript.

Getting Started

Prerequisites

  • Node.js and Yarn should be installed on your machine.

Installation

Clone the repository and install dependencies.

git clone https://github.com/kaiachain/kaia-design-system
cd kaia-design-system
yarn install

Building the Project

To build the project, use the following command:

yarn build

This will generate the dist folder containing the built files: index.js, index.js.map, index.esm.js, and index.esm.js.map.

Usage

Importing Components

To use a component from the design system, import it into your project:

import React from 'react';
import { Button } from 'kaia-design-system';

const App = () => (
  <div>
    <Button>Click Me</Button>
  </div>
);

export default App;

Using SVG Icons

The design system includes a variety of SVG icons. You can import and use them as follows:

import React from 'react';
import Icons from 'kaia-design-system/icons';

const IconComponent: React.FC = () => (
  <div>
    <Icons.AddressBook />
    <Icons.Gift />
    {/* Other icons can be used similarly */}
  </div>
);

export default IconComponent;

Adding New SVG Icons

To add new SVG icons, place your .svg files in the src/icons directory or its subdirectories. Then, run the generateIcons.js script to automatically generate the imports and exports for the icons.

node generateIcons.js

Development

For development, use the following command to start a development server with hot reloading:

yarn start

Testing

To run tests, use the following command:

yarn test

Scripts

  • yarn build: Builds the project for production.
  • yarn start: Starts the development server.
  • yarn test: Runs the test suite.
  • node generateIcons.js: Generates icon imports and exports.

License

This project is licensed under the MIT License.

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

Acknowledgments

Special thanks to the open-source community for providing valuable tools and libraries that made this project possible.

FAQs

Package last updated on 08 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts