
Security News
CISA Kills Off RSS Feeds for KEVs and Cyber Alerts
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
@modulz/radix-system
Advanced tools
WIP
yarn add @modulz/radix-system
Built on top of @styled-system/core by Brent Jackson.
Radix System is currently under development, but if you'd like to use it anyway:
# npm
npm install @modulz/radix-system
# yarn
yarn add @modulz/radix-system
Radix System is an alternative to Styled System, built on the same Core package but with a few tweaks:
color
style function has been renamed to textColor
space
has been split into margin
and space
variant
APIImport style functions:
import styled from 'styled-components';
import { margin, backgroundColor, compose } from '@modulz/radix-system';
const styleProps = compose(
margin,
backgroundColor
);
const Box = styled('div')(styleProps);
const App = () => (
<Box my={4} bg="blue">
Hey there 👋
</Box>
);
With Typescript:
import styled from 'styled-components';
import {
margin,
MarginProps,
backgroundColor,
BackgroundColorProps,
compose,
} from '@modulz/radix-system';
const styleProps = compose(
margin,
backgroundColor
);
type BoxProps = MarginProps & BackgroundColorProps;
const Box = styled('div') < BoxProps > styleProps;
const App = () => (
<Box my={4} bg="blue">
Hey there 👋
</Box>
);
Proper docs coming soon.
MIT © Modulz
FAQs
Radix System Library
The npm package @modulz/radix-system receives a total of 0 weekly downloads. As such, @modulz/radix-system popularity was classified as not popular.
We found that @modulz/radix-system demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.