
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
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.
@elemental-ui-alpha/icon
Advanced tools
Icons are used to visually communicate parts of your application and available actions.
Icons are used to visually communicate core parts of the product and available actions. They can act as wayfinding tools to help users more easily understand where they are in the product, and common interaction patterns that are available.
import { ChevronRightIcon } from '@elemental-ui-alpha/icon/ChevronRightIcon'; // prefer explicit entry point
import { ChevronRightIcon, ... } from '@elemental-ui-alpha/icon'; // only when using **many** icons
Find the icon that meets your needs.
const [match, setMatch] = React.useState('');
const onlyMatches = i =>
i
.slice(0, -4) // remove "Icon"; avoid invalid matches
.toLowerCase()
.includes(match.toLowerCase());
return (
<Stack gap="medium">
<TextField
label="Search Icons"
labelVisibility="hidden"
onChange={e => setMatch(e.target.value)}
placeholder="Search..."
type="search"
value={match}
/>
<div
style={{
display: 'grid',
gap: 12,
gridTemplateColumns: 'repeat(auto-fill, minmax(144px, 1fr))',
}}
>
{Object.keys(icons)
.sort()
.filter(onlyMatches)
.map(key => {
let Icon = icons[key];
const c = 'center';
return (
<Flex align={c} direction="vertical" justify={c} paddingY="large">
<Icon fill="B400" />
<Box marginTop="small">{Icon.displayName}</Box>
</Flex>
);
})}
</div>
</Stack>
);
FAQs
Icons are used to visually communicate parts of your application and available actions.
We found that @elemental-ui-alpha/icon demonstrated a not healthy version release cadence and project activity because the last version was released 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.

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.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.