@benefex/icons 0.13.0 → 0.14.0

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.
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SVGRProps } from './svgr';
3
+ declare const Mobile: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default Mobile;
package/dist/Mobile.js ADDED
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ const Mobile = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 384 512", "aria-labelledby": titleId, ...props },
3
+ title ? React.createElement("title", { id: titleId }, title) : null,
4
+ React.createElement("path", { fill: "currentColor", d: "M288 0H96C60.65 0 32 28.65 32 64v384c0 35.35 28.65 64 64 64h192c35.35 0 64-28.65 64-64V64c0-35.35-28.7-64-64-64m32 448c0 17.64-14.36 32-32 32H96c-17.64 0-32-14.36-32-32V64c0-17.64 14.36-32 32-32h192c17.64 0 32 14.36 32 32zm-96-48h-64c-8.836 0-16 7.162-16 16 0 8.836 7.164 16 16 16h64c8.836 0 16-7.164 16-16 0-8.8-7.2-16-16-16" })));
5
+ export default Mobile;
package/dist/index.d.ts CHANGED
@@ -221,6 +221,7 @@ export { default as MessagesLight } from './MessagesLight';
221
221
  export { default as MicrophoneRegular } from './MicrophoneRegular';
222
222
  export { default as MinusLight } from './MinusLight';
223
223
  export { default as MobileLight } from './MobileLight';
224
+ export { default as Mobile } from './Mobile';
224
225
  export { default as MoneyBillTransferLight } from './MoneyBillTransferLight';
225
226
  export { default as MoneyBillTransferThin } from './MoneyBillTransferThin';
226
227
  export { default as MoneyFromBracketLight } from './MoneyFromBracketLight';
package/dist/index.js CHANGED
@@ -221,6 +221,7 @@ export { default as MessagesLight } from './MessagesLight';
221
221
  export { default as MicrophoneRegular } from './MicrophoneRegular';
222
222
  export { default as MinusLight } from './MinusLight';
223
223
  export { default as MobileLight } from './MobileLight';
224
+ export { default as Mobile } from './Mobile';
224
225
  export { default as MoneyBillTransferLight } from './MoneyBillTransferLight';
225
226
  export { default as MoneyBillTransferThin } from './MoneyBillTransferThin';
226
227
  export { default as MoneyFromBracketLight } from './MoneyFromBracketLight';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benefex/icons",
3
- "version": "0.13.0",
3
+ "version": "0.14.0",
4
4
  "description": "Benefex icon package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",