Buttons
One UIX buttons with full examples.
Default Buttons
<Button label="Submit" />
<Button label="Cancel" />
<Button label="Click Me" />
<Button label="Learn More" />
<Button label="Explore" />
<Button label="Login" />
<Button label="Register" />
<Button label="Buy Now" />
<Button label="Continue" />
<Button label="Get Started" />Colored Buttons
<Button color="black" label="Black" />
<Button color="red" label="Red" />
...
<Button color="gray" label="Gray" />Button Sizes
<Button color="red" size="xs" label="Extra Small" />
<Button color="red" size="sm" label="Small" />
<Button color="red" size="md" label="Medium" />
<Button color="red" size="lg" label="Large" />
<Button color="red" size="xl" label="Extra Large" />Button Variants
Soft
<Button color="black" variant="soft" label="Black" />
<Button color="red" variant="soft" label="Red" />
...Ghost
<Button color="black" variant="ghost" label="Black" />
<Button color="red" variant="ghost" label="Red" />
...Outline
<Button color="black" variant="outline" label="Black" />
<Button color="red" variant="outline" label="Red" />
...Buttons with Icons
<Button label="Favorite" icon={<Heart />} />
<Button label="Buy Now" icon={<ShoppingCart />} />
<Button label="Continue" iconRight={<ArrowRight />} />
<Button label="Rate Us" icon={<Star />} />
<Button label="Send" iconRight={<Send />} />Loading Buttons
<Button label="Loading..." loading />
<Button label="Submitting" color="green" loading />
<Button label="Processing" color="blue" size="lg" loading />Full Width Buttons
<Button label="Full Width Primary" wide />
<Button label="Full Width Ghost" variant="ghost" wide />Icon Only Buttons
<Button iconOnly={<Heart />} />
<Button iconOnly={<Search />} />
<Button iconOnly={<Plus />} />Icon Only Pill Buttons
<Button color="blue" iconOnly={<Heart />} pill />
<Button color="emerald" iconOnly={<Search />} pill />
<Button color="purple" iconOnly={<Plus />} pill />