
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.
A playful, modern design system with bold borders and crisp shadows. Built with React, TypeScript, and Tailwind CSS.
# Using npm
npm install @williavs/blocky-ui
# Using yarn
yarn add @williavs/blocky-ui
# Using pnpm
pnpm add @williavs/blocky-ui
// tailwind.config.js
module.exports = {
content: [
// ... your content paths
"./node_modules/@williavs/blocky-ui/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}
@import '@williavs/blocky-ui/dist/style.css';
import { ThemeProvider } from '@williavs/blocky-ui';
function App() {
return (
<ThemeProvider>
{/* Your app content */}
</ThemeProvider>
);
}
import { Button, Card, TextArea } from '@williavs/blocky-ui';
function MyComponent() {
return (
<Card>
<h2>Contact Form</h2>
<TextArea
label="Message"
placeholder="Type your message..."
/>
<Button>Send Message</Button>
</Card>
);
}
Buttons & Actions
Form Controls
Feedback
Layout
Overlay
You can customize the appearance by modifying CSS variables:
:root {
--primary: rgb(187, 247, 208);
--border: black;
--shadow: rgba(0, 0, 0, 0.85);
--shadow-hover: rgba(0, 0, 0, 1);
}
[data-theme="dark"] {
--primary: rgb(134, 239, 172);
--border: rgb(134, 239, 172);
--shadow: rgba(240, 253, 244, 0.15);
--shadow-hover: rgba(240, 253, 244, 0.25);
}
We welcome contributions! Please see our Contributing Guide for details.
MIT © William Van Sickle
FAQs
A playful, modern design system with bold borders and crisp shadows
We found that blocky-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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.