Skip to main content
Version: Next

Button

Overview

Buttons allow users to take actions with a single tap. They can be customized with different styles, sizes, and animations.

Preview

Installation

npx @mindfiredigital/ignix-ui add button

Usage

Import the component:

import { Button } from '@mindfiredigital/ignix-ui';

Basic Usage

function BasicButton() {
return (
<Button>Click me</Button>
);
}

Variants