@mailstep/design-system 0.4.4 → 0.4.5

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.4",
3
+ "version": "0.4.5",
4
4
  "license": "ISC",
5
5
  "type": "module",
6
6
  "main": "./ui/index.js",
@@ -0,0 +1,3 @@
1
+ import { SvgProps } from '../types';
2
+ import { FC } from 'react';
3
+ export declare const Calendar: 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, jsxs as _jsxs } from "react/jsx-runtime";
13
+ export var Calendar = function (props) { return (_jsxs("svg", __assign({ width: "22", height: "21", viewBox: "0 0 22 21", stroke: "#E32C1E", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("path", { d: "M17.125 3.5H4.875C3.9085 3.5 3.125 4.2835 3.125 5.25V17.5C3.125 18.4665 3.9085 19.25 4.875 19.25H17.125C18.0915 19.25 18.875 18.4665 18.875 17.5V5.25C18.875 4.2835 18.0915 3.5 17.125 3.5Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M14.5 1.75V5.25", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M7.5 1.75V5.25", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M3.125 8.75H18.875", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
@@ -0,0 +1,3 @@
1
+ import { SvgProps } from '../types';
2
+ import { FC } from 'react';
3
+ export declare const ThreeDots: 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, jsxs as _jsxs } from "react/jsx-runtime";
13
+ export var ThreeDots = function (props) { return (_jsxs("svg", __assign({ width: "18", height: "18", viewBox: "0 0 18 18", stroke: "#22394E", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [_jsx("circle", { cx: "3.375", cy: "9", r: "1.875", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("circle", { cx: "9", cy: "9", r: "1.875", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("circle", { cx: "14.625", cy: "9", r: "1.875", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
@@ -43,3 +43,5 @@ export { MakePhoto } from './MakePhoto';
43
43
  export { Print } from './Print';
44
44
  export { TwoBoxes } from './TwoBoxes';
45
45
  export { TwoCheckedBoxes } from './TwoCheckedBoxes';
46
+ export { ThreeDots } from './ThreeDots';
47
+ export { Calendar } from './Calendar';
@@ -43,3 +43,5 @@ export { MakePhoto } from './MakePhoto';
43
43
  export { Print } from './Print';
44
44
  export { TwoBoxes } from './TwoBoxes';
45
45
  export { TwoCheckedBoxes } from './TwoCheckedBoxes';
46
+ export { ThreeDots } from './ThreeDots';
47
+ export { Calendar } from './Calendar';