mirror of
https://github.com/feathericons/feather.git
synced 2023-08-10 21:13:24 +03:00
10 lines
192 B
JavaScript
10 lines
192 B
JavaScript
|
/**
|
||
|
* @file Exposes `feather` object.
|
||
|
*/
|
||
|
|
||
|
import icons from '../dist/icons.json';
|
||
|
import toSvg from './to-svg';
|
||
|
import replace from './replace';
|
||
|
|
||
|
module.exports = { icons, toSvg, replace };
|