@mailstep/design-system 0.4.11 → 0.4.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mailstep/design-system",
3
- "version": "0.4.11",
3
+ "version": "0.4.12",
4
4
  "license": "ISC",
5
5
  "type": "module",
6
6
  "main": "./ui/index.js",
@@ -0,0 +1,3 @@
1
+ import { type FC } from 'react';
2
+ import { SvgProps } from '../types';
3
+ export declare const QRCode: FC<SvgProps>;
@@ -0,0 +1,13 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ export var QRCode = function (props) { return (_jsx("svg", __assign({ width: "72", height: "72", viewBox: "0 0 72 72", fill: "none", stroke: "#7A90A1", xmlns: "http://www.w3.org/2000/svg" }, props, { children: _jsx("path", { d: "M36 12V15M54 48H60M42 48H36V60M36 27V36M36 36H36.03M36 36H48.03M48 60H60M12 36H24M60 36H60.03M15 24H21C22.6568 24 24 22.6568 24 21V15C24 13.3432 22.6568 12 21 12H15C13.3432 12 12 13.3432 12 15V21C12 22.6568 13.3432 24 15 24ZM51 24H57C58.6569 24 60 22.6568 60 21V15C60 13.3432 58.6569 12 57 12H51C49.3431 12 48 13.3432 48 15V21C48 22.6568 49.3431 24 51 24ZM15 60H21C22.6568 60 24 58.6569 24 57V51C24 49.3431 22.6568 48 21 48H15C13.3432 48 12 49.3431 12 51V57C12 58.6569 13.3432 60 15 60Z", strokeWidth: "5", strokeLinecap: "round", strokeLinejoin: "round" }) }))); };
@@ -45,3 +45,4 @@ export { TwoBoxes } from './TwoBoxes';
45
45
  export { TwoCheckedBoxes } from './TwoCheckedBoxes';
46
46
  export { ThreeDots } from './ThreeDots';
47
47
  export { Calendar } from './Calendar';
48
+ export { QRCode } from './QRCode';
@@ -45,3 +45,4 @@ export { TwoBoxes } from './TwoBoxes';
45
45
  export { TwoCheckedBoxes } from './TwoCheckedBoxes';
46
46
  export { ThreeDots } from './ThreeDots';
47
47
  export { Calendar } from './Calendar';
48
+ export { QRCode } from './QRCode';