<h1 align="center">
  @pf-ui/pf-icon-svg
</h1>

<p align="center">
⭐ The abstract node of SVG icons.
</p>


## Install

```bash
# use yarn
$ yarn add @pf-ui/pf-icon-svg

# or use npm
$ npm install @pf-ui/pf-icon-svg --save
```

## Get started

```ts
import { AccountBookOutlined } from '@pf-ui/pf-icon-svg'
// import AccountBookOutlined from '@pf-ui/pf-icon-svg/es/asn/AccountBookOutlined';

console.log(AccountBookOutlined);
// ==>
// {
//   name: 'account-book',
//   theme: 'outlined',
//   icon: {
//     tag: 'svg',
//     attrs: {
//       viewBox: '64 64 896 896',
//       focusable: 'false'
//     },
//     children: [
//       {
//         tag: 'path',
//         attrs: {
//           d:
//             'M880 184H712v-64c0-4.4-3.6-8-8-8h- ...'
//         }
//       }
//     ]
//   }
// };
```
