
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@qtest1/quant-ui
Advanced tools
A modern React UI component library built with Tailwind CSS and Radix UI primitives.
npm install @qtest1/quant-ui
# or
yarn add @qtest1/quant-ui
# or
pnpm add @qtest1/quant-ui
Make sure you have the required peer dependencies installed:
npm install react react-dom
Import the CSS file in your application:
import '@qtest1/quant-ui/styles';
Or if you're using Tailwind CSS in your project, you can configure it to use the same design tokens by extending your tailwind.config.js:
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
// ... your content paths
"./node_modules/@qtest1/quant-ui/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
border: "hsl(var(--border))",
input: "hsl(var(--input))",
ring: "hsl(var(--ring))",
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
primary: {
DEFAULT: "hsl(var(--primary))",
foreground: "hsl(var(--primary-foreground))",
},
// ... other colors
},
},
},
plugins: [],
}
import { Button } from '@qtest1/quant-ui';
import '@qtest1/quant-ui/styles';
function App() {
return (
<div>
<Button>Primary Button</Button>
<Button color="secondary">Secondary</Button>
<Button color="tertiary">Tertiary</Button>
</div>
);
}
// Import a namespaced group of example pages
import { ApplicationDashboards01 } from '@qtest1/quant-ui';
import '@qtest1/quant-ui/styles';
// Render a full dashboard page component
export default function DashboardRoute() {
return <ApplicationDashboards01.Dashboard01 />;
}
A versatile button component with multiple variants and sizes.
Props:
variant: 'default' | 'destructive' | 'outline' | 'secondary' | 'ghost' | 'link'size: 'default' | 'sm' | 'lg' | 'icon'asChild: boolean - Render as a child element (useful for links)A flexible card component with multiple sub-components.
Sub-components:
Card - The main containerCardHeader - Header sectionCardTitle - Title headingCardDescription - Description textCardContent - Main content areaCardFooter - Footer section# Install dependencies
pnpm install
# Start development server
pnpm dev
# Start Storybook
pnpm start:docs
# Run tests
pnpm test
# Build library
pnpm build
# Build Storybook
pnpm build:docs
For comprehensive documentation, visit our Documentation Hub:
Explore components interactively in Storybook:
pnpm run start:docs
Visit http://localhost:6006 to see all components in action.
We welcome contributions! Please read our Development Guide for details on:
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)MIT License - see the LICENSE file for details.
This library depends on:
FAQs
A modern React UI component library built with Tailwind CSS and Radix UI
We found that @qtest1/quant-ui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.