1.0.52 • Published 3 days ago

@ikonintegration/ui v1.0.52

Weekly downloads
-
License
MIT
Repository
-
Last release
3 days ago

@ikonintegration/ui

Welcome to @ikonintegration/ui – a stylish and customizable UI package for React that simplifies your frontend development. This package provides ready-to-use styles and components to kickstart your React projects. Follow the steps below to get started quickly.

Installation

To use @ikonintegration/ui in your React app, you need to install the package and import the main styles.

Install the package

npm install @ikonintegration/ui
# or
yarn add @ikonintegration/ui

Import styles

In your app entrypoint (usually src/main.tsx), import the @ikonintegration/ui styles:

import '@ikonintegration/ui/styles.css';

Integrate with Tailwind CSS

If your app is using Tailwind CSS, you can integrate IKUI with your Tailwind configuration so your app will be able to use IKUI colors and other configurations:

import { ikuiTwPlugin } from '@ikonintegration/ui';
import type { Config } from 'tailwindcss';

export default {
  content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
  corePlugins: {
    // As IKUI already provides preflight styles,
    // you should turn off your app's preflight to avoid conflicts
    preflight: false,
  },
  plugins: [ikuiTwPlugin],
} satisfies Config;

Now you should be able to use IKUI classes directly in your app:

<div className="border">
  <span className="text-foreground">Hey!</span>
</div>

Usage

With @ikonintegration/ui integrated into your project, you can start using the predefined React components right away.

import { Button } from '@ikonintegration/ui';

export function MyComponent() {
  return (
    <div>
      <Button onClick={() => console.log('Button clicked')}>
        Click me
      </Button>
    </div>
  );
}

Customization

@ikonintegration/ui is designed to be flexible and customizable to fit the unique styles of your React project. Feel free to override the styles, modify the components, or use the provided utility classes to achieve your desired look and feel.

1.0.52

3 days ago

1.0.51

11 days ago

1.0.50

16 days ago

1.0.48

18 days ago

1.0.47

18 days ago

1.0.49

18 days ago

1.0.46

24 days ago

1.0.45

26 days ago

1.0.44

1 month ago

1.0.43

1 month ago

1.0.40

1 month ago

1.0.42

1 month ago

1.0.33

1 month ago

1.0.32

1 month ago

1.0.31

1 month ago

1.0.37

1 month ago

1.0.36

1 month ago

1.0.35

1 month ago

1.0.34

1 month ago

1.0.39

1 month ago

1.0.38

1 month ago

1.0.26

1 month ago

1.0.25

1 month ago

1.0.29

1 month ago

1.0.28

1 month ago

1.0.27

1 month ago

1.0.30

1 month ago

1.0.22

1 month ago

1.0.24

1 month ago

1.0.23

1 month ago

1.0.21

1 month ago

1.0.19

1 month ago

1.0.18

1 month ago

1.0.17

1 month ago

1.0.20

1 month ago

1.0.16

2 months ago

1.0.15

2 months ago

1.0.14

2 months ago

1.0.13

2 months ago

1.0.9

2 months ago

1.0.8

2 months ago

1.0.7

2 months ago

1.0.6

2 months ago

1.0.11

2 months ago

1.0.10

2 months ago

1.0.12

2 months ago

1.0.2

2 months ago

1.0.1

2 months ago

1.0.0

2 months ago

1.0.4

2 months ago

1.0.3

2 months ago

0.0.3-experimental

2 months ago

0.0.8-experimental

2 months ago

0.0.4-experimental

2 months ago

0.0.7-experimental

2 months ago

0.0.6-experimental

2 months ago

0.0.5-experimental

2 months ago

0.0.2-experimental

2 months ago

0.0.1-experimental

2 months ago

0.0.0-experimental

2 months ago