mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 20:19:13 +00:00
10 lines
359 B
JavaScript
10 lines
359 B
JavaScript
import { inlined } from '../../dist/components/icon/library.wa.js';
|
|
|
|
let { classic } = inlined;
|
|
let { solid, regular } = classic;
|
|
|
|
export default [
|
|
...Object.entries(solid).map(([name, svg]) => ({ name, family: 'solid', variant: 'solid', svg })),
|
|
...Object.entries(regular).map(([name, svg]) => ({ name, family: 'regular', variant: 'regular', svg })),
|
|
];
|