@benefex/icons 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/WalletFaThin.d.ts +4 -0
- package/dist/WalletFaThin.js +5 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const WalletFaThin = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", "aria-labelledby": titleId, ...props },
|
|
3
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
4
|
+
React.createElement("path", { fill: "currentColor", d: "M472 32c4.4 0 8 3.58 8 8s-3.6 8-8 8H72c-30.93 0-56 25.07-56 56v304c0 30.9 25.07 56 56 56h368c30.9 0 56-25.1 56-56V184c0-30.9-25.1-56-56-56H72c-4.42 0-8-3.6-8-8s3.58-8 8-8h368c39.8 0 72 32.2 72 72v224c0 39.8-32.2 72-72 72H72c-39.76 0-72-32.2-72-72V104c0-39.76 32.24-72 72-72zm-32 264c0 22.1-17.9 40-40 40s-40-17.9-40-40 17.9-40 40-40 40 17.9 40 40m-40-24c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24" })));
|
|
5
|
+
export default WalletFaThin;
|
package/dist/index.d.ts
CHANGED
|
@@ -323,6 +323,7 @@ export { default as UserThin } from './UserThin';
|
|
|
323
323
|
export { default as UsersLight } from './UsersLight';
|
|
324
324
|
export { default as UsersMedicalLight } from './UsersMedicalLight';
|
|
325
325
|
export { default as VimeoVBrands } from './VimeoVBrands';
|
|
326
|
+
export { default as WalletFaThin } from './WalletFaThin';
|
|
326
327
|
export { default as WalletThin } from './WalletThin';
|
|
327
328
|
export { default as XTwitterBrands } from './XTwitterBrands';
|
|
328
329
|
export { default as XmarkLight } from './XmarkLight';
|
package/dist/index.js
CHANGED
|
@@ -323,6 +323,7 @@ export { default as UserThin } from './UserThin';
|
|
|
323
323
|
export { default as UsersLight } from './UsersLight';
|
|
324
324
|
export { default as UsersMedicalLight } from './UsersMedicalLight';
|
|
325
325
|
export { default as VimeoVBrands } from './VimeoVBrands';
|
|
326
|
+
export { default as WalletFaThin } from './WalletFaThin';
|
|
326
327
|
export { default as WalletThin } from './WalletThin';
|
|
327
328
|
export { default as XTwitterBrands } from './XTwitterBrands';
|
|
328
329
|
export { default as XmarkLight } from './XmarkLight';
|