1.5.2 • Published 2 years ago

chaebol-ui-library v1.5.2

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

🚧🚧🚧 This library is not ready yet 🚧🚧🚧

chaebol-ui-library

Re-usable components built using Radix UI and Tailwind CSS.

Installation

To use the Chaebol UI Library in your TypeScript project, follow these steps:

  1. Install Chaebol UI Library:
npm install chaebol-ui-library
  1. Import the Button component in your TypeScript file (assuming it's a .tsx file):
import { Button } from 'chaebol-ui-library';
import "chaebol-ui-library/dist/style.css";
  1. Use the Button component in your code. Here's a basic example:
import React from 'react';
import { Button } from 'chaebol-ui-library';
import "chaebol-ui-library/dist/style.css";

const YourComponent: React.FC = () => {
  return (
    <div>
      <Button>Hello</Button>
    </div>  
  );
};

export default YourComponent;

Additional Configuration