
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
styled-property
Advanced tools
styled-components helper that generates a set of styles and sets the auto-generated className for them as property on a wrapped component
styled-components helper that generates a set of styles and sets the auto-generated className for them as property on a wrapped component.
npm install styled-property
import styledProperty from 'styled-property'
// auto-generates a class selector for the given css and sets it
// as "propName" property on the WrappedComponent.
const Component = styledProperty(WrappedComponent, 'propName')`
display: block;
`
Set default and active styles of Link component from react-router.
import { Link } from 'react-router'
import styled from 'styled-components'
import styledProperty from 'styled-property'
// create basic Link styles
const BaseLink = styled(Link)`
color: #aaa;
display: inline-block;
text-decoration: none;
`
// create an additional set of style rules and set the "activeClassName
// property of the wrapped component (BaseLink) to the auto-generated
// className for those styles.
const StyledLink = styledProperty(BaseLink, 'activeClassName')`
color: #bada55;
`
FAQs
styled-components helper that generates a set of styles and sets the auto-generated className for them as property on a wrapped component
We found that styled-property demonstrated a not healthy version release cadence and project activity because the last version was released 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.