Components
A styled, accessible primary button with variants for size and loading state; supports icon, fullWidth, and onClick handlers.
Loading preview...
import React from "react";
import { HeaderSection } from "@/components/ui/button-primary";
export default function DemoOne() {
return (
<div className="min-h-screen flex items-center justify-center">
<HeaderSection />
</div>
);
}