
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
purched-antd-icons
Advanced tools
⭐ The abstract trees of the Ant Design SVG icons.
yarn add @ant-design/icons # or npm install @ant-design/icons --save
import { AlertOutline } from '@ant-design/icons';
// or import AlertOutline from '@ant-design/icons/lib/outline/AlertOutline';
console.log(AlertOutline);
// Output:
// {
// name: 'alert',
// theme: 'outline',
// icon: {
// tag: 'svg',
// attrs: { viewBox: '64 64 896 896' },
// children: [
// {
// tag: 'path',
// attrs: {
// d: 'M193 796a32 32 0 0 0 32 32h574a32....'
// }
// }
// ]
// }
// }
This library export all SVG files as IconDefinition
.
interface AbstractNode {
tag: string;
attrs: {
[key: string]: string;
};
children?: AbstractNode[];
}
interface IconDefinition {
name: string; // kebab-case-style
theme: ThemeType;
icon:
| ((primaryColor: string, secondaryColor: string) => AbstractNode)
| AbstractNode;
}
npm run generate # Generate files to ./src
npm run build # Build library
npm run test # Runing Test
FAQs
Ant Design Icons
The npm package purched-antd-icons receives a total of 456 weekly downloads. As such, purched-antd-icons popularity was classified as not popular.
We found that purched-antd-icons 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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.