
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@makerdao/dai-ui-icons
Advanced tools
Note: this package is for use with the Dai-UI Design System and assumes this has already been set up in your project.
yarn add @makerdao/dai-ui-icons
// app.js
import { ThemeProvider } from 'theme-ui';
import theme from './theme';
import { icons } from '@makerdao/dai-ui-icons';
const mergedTheme = { ...theme, icons };
export default (props) => (
<ThemeProvider theme={mergedTheme}>{props.children}</ThemeProvider>
);
Icon component into your project. Pass the name of the desired icon as a prop to the icon component.// index.js
import { Icon } from '@makerdao/dai-ui-icons';
<Icon name="dai_round_color" />;
color and size props pulled from your theme, as well as theme-ui sx properties.<Icon name="maker" color="primary" size={3} sx={{ bg: 'secondary' }} />
While developing a new icons package, you can link it to your frontend project using yalc and monitor for changes with sane.
yarn build
yalc publish
sane "yalc publish --push" . --wait=10
yalc add "@makerdao/dai-ui-icons"
You should now see updates to your icons package take effect immediately in your frontend project.
To remove the linked package run yalc remove "@makerdao/dai-ui-icons" and reinstall the package from npm.
Your package must export an icons object where each icon is keyed by its name, with path and viewBox keys nested inside.
The path must return a valid svg <path> element as JSX, since it will be wrapped in an <svg> element by the Icon component.
Change the fill attribute to "currentColor" so you can set the color with the color prop on the Icon component.
// example icons package
export const icons {
my_icon: {
path: (<path fill="currentColor" />),
viewBox: "0 0 24 24",
},
};
FAQs
> TODO: description
We found that @makerdao/dai-ui-icons demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 19 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.