@pf-ui/pf-icon-svg
⭐ The abstract node of SVG icons.
Install
# use yarn
$ yarn add @pf-ui/pf-icon-svg
# or use npm
$ npm install @pf-ui/pf-icon-svg --save
Get started
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- ...'
// }
// }
// ]
// }
// };