
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@arcadeai/design-system
Advanced tools
A modern React component library that ensures consistent UI across all our applications, built with TypeScript, Tailwind CSS and shadcn/ui.
A modern React component library that ensures consistent UI across all our applications, built with TypeScript, Tailwind CSS and shadcn/ui.
Install the design system as a dependency in your project:
npm install @arcadeai/design-system
# or
pnpm add @arcadeai/design-system
# or
yarn add @arcadeai/design-system
Make sure you have the required peer dependencies installed:
npm install react react-dom tailwindcss lucide-react
Required versions:
Import the design system styles in your main CSS file or at the root of your application:
@import '@arcadeai/design-system/dist/assets/index.css';
Ensure your Tailwind CSS configuration is compatible with the design system. The design system uses Tailwind CSS v4 with specific configurations.
Import and use components in your React application:
import { Button, Card, Input } from '@arcadeai/design-system';
function MyApp() {
return (
<Card>
<Input placeholder="Enter your email" />
<Button>Submit</Button>
</Card>
);
}
git clone https://github.com/ArcadeAI/Design-System
cd @arcadeai/design-system
pnpm install
pnpm dev
This design system is built on top of:
The design system uses Tailwind CSS for consistent spacing, colors, typography, and other design tokens. When adding new components:
To add a new icon to the design system:
Add the SVG file: Place your SVG icon in /lib/assets/icons/
# Example: adding a new "example" icon
cp example.svg lib/assets/icons/
Generate the React component: Run the icon generation script
pnpm generate-icons
Use the icon: The generated React component will be automatically available
import { ExampleIcon } from '@arcadeai/design-system/components/ui/atoms/icons';
To add a new toolkit to the system:
Navigate to the toolkits metadata: Open lib/metadata/toolkits.ts
Add your toolkit entry: Add a new entry to the TOOLKITS array
{
id: 'X',
label: 'X',
isBYOC: false,
isPro: false,
publicIconUrl: `${PUBLIC_ICON_URL}/x.svg`,
icon: Icons.X,
// Other properties...
}
To add a new OAuth provider:
Navigate to OAuth providers metadata: Open lib/metadata/oauth-providers.ts
Add OAuth identifiers: Define your OAuthId and OAuthProviderId
export const OAuthId = {
Asana: 'arcade-asana',
Atlassian: 'arcade-atlassian',
// Add to the respective id
}
export const OAuthProviderId = {
Asana: 'asana',
Atlassian: 'atlassian',
// Add to the respective provider id
}
Choose the appropriate category:
PREBUILT_OAUTH_PROVIDERSOTHER_OAUTH_PROVIDERS// Example for prebuilt provider
export const PREBUILT_OAUTH_PROVIDERS: OAuthCatalogue[] = [
{
id: OAuthId.Asana,
provider_id: OAuthProviderId.Asana,
name: 'Asana',
description: 'Authorize tools and agents with Asana',
publicIconUrl: `${PUBLIC_ICON_URL}/asana.svg`,
icon: Asana,
docs: '<https://docs.arcade.dev/home/auth-providers/asana>',
},
// Add to the respective array
]
pnpm devpnpm testpnpm buildBuilt with ❤️ by the Arcade team
FAQs
A modern React component library that ensures consistent UI across all our applications, built with TypeScript, Tailwind CSS and shadcn/ui.
The npm package @arcadeai/design-system receives a total of 158 weekly downloads. As such, @arcadeai/design-system popularity was classified as not popular.
We found that @arcadeai/design-system 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.