
Security News
White House Authorizes Private Companies to Conduct Offensive Cyber Operations
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.
@nixopus_/ui
Advanced tools
Nixopus UI component library - Pure React components for building Nixopus applications
Nixopus UI component library - Pure React components for building Nixopus applications.
npm install @nixopus_/ui
# or
yarn add @nixopus_/ui
# or
pnpm add @nixopus_/ui
import { Button, Card, Input } from '@nixopus_/ui';
function App() {
return (
<Card>
<Input placeholder="Enter text" />
<Button>Click me</Button>
</Card>
);
}
import type { ButtonProps, CardProps } from '@nixopus_/ui';
const buttonProps: ButtonProps = {
variant: 'default',
children: 'Click me'
};
This package includes all pure UI components from the Nixopus design system:
This package uses Tailwind CSS v4. Make sure you have Tailwind configured in your project and include the necessary CSS variables for theming.
For Tailwind CSS v4, add the following to your main CSS file (e.g., globals.css):
@import 'tailwindcss';
/* Scan the nixopus-ui source files for classes */
@source "../../packages/nixopus-ui/src/**/*.{ts,tsx}";
/* OR if installed via npm: */
/* @source "node_modules/@nixopus_/ui/src/**/*.{ts,tsx}"; */
@plugin "tailwindcss-animate";
Important: For Tailwind v4, you need to scan the source files (src/**/*.{ts,tsx}) of this package, not the built dist files, so that Tailwind can properly detect all utility classes used in the components.
Ensure you have PostCSS configured with the Tailwind plugin:
// postcss.config.mjs
const config = {
plugins: ["@tailwindcss/postcss"],
};
export default config;
Ensure your CSS includes the necessary CSS variables for theming. The components use CSS variables for colors, spacing, and other design tokens. See billing-view/app/globals.css for a complete example of CSS variable definitions.
This package includes full TypeScript support with exported types:
You can import types from the main entry point:
import type {
ButtonProps,
CardProps,
InputProps,
// ... and more
} from '@nixopus_/ui';
For better tree-shaking and organization, you can import types from specific paths:
// Import component types only
import type {
ChartConfig,
CarouselApi,
BannerProps,
BadgeGroupProps
} from '@nixopus_/ui/types/components';
// Import all types
import type { /* all types */ } from '@nixopus_/ui/types';
This package is tree-shakeable. Import only what you need:
// Good - tree-shakeable
import { Button } from '@nixopus_/ui';
// Avoid - imports everything
import * as UI from '@nixopus_/ui';
Fair-Code Sustainable Use License
FAQs
Nixopus UI component library - Pure React components for building Nixopus applications
We found that @nixopus_/ui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.