1.0.17 • Published 10 months ago

kinetik-react-components v1.0.17

Weekly downloads
-
License
-
Repository
github
Last release
10 months ago

Kinetik React Components

A collection of reusable React components for building user interfaces in Kinetik applications.

Installation

You can install kinetik-react-components from npm:

npm install kinetik-react-components

Usage

After installing, you can import and use the components in your React application. Below is an example of how to use the Button component.

Example: Using the Button Component

Here’s a simple example demonstrating how to use the Button component:

import { Button } from "kinetik-react-components";

const App = () => {
  // Function to handle button click
  const handleClick = () => {
    alert("Button clicked!");
  };

  return (
    <>
      <Button onClick={handleClick}>Click Me!</Button>
    </>
  );
};

export default App;

Available Components

  • Avatar: Displays a user avatar.
  • Button: A customizable button component.
  • Card: A card component to display content.
  • Collapsible: A collapsible content component.
  • FlexRow: A layout component for horizontal alignment.
  • Heading: A heading component.
  • Paragraph: A paragraph component for text.
  • Select: A dropdown select component.
  • Table: A table component for displaying data.
  • Tooltip: A tooltip component for additional information.

GitHub

GitHub Repository

1.0.17

10 months ago

1.0.16

10 months ago

1.0.15

10 months ago

1.0.14

10 months ago

1.0.13

10 months ago

1.0.12

10 months ago

1.0.11

10 months ago

1.0.10

10 months ago

1.0.9

10 months ago

1.0.8

10 months ago

1.0.7

10 months ago

1.0.6

10 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago