UNPKG

sfgov-design-system

Version:

This is the design system for [SF.gov](https://sf.gov) and the City & County of San Francisco.

6 lines (4 loc) 197 B
const { icons } = require('../../src/icons/data.json') module.exports = Object.entries(icons) .map(([symbol, icon]) => ({ ...icon, symbol })) .sort((a, b) => a.symbol.localeCompare(b.symbol))