@toptal/picasso-pictograms 0.2.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.
package/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2021-2022 Toptal, LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the “Software”), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { StandardProps } from '@toptal/picasso-shared';
3
+ declare type ScaleType = 1 | 2;
4
+ export interface Props extends StandardProps {
5
+ scale?: ScaleType;
6
+ base?: number;
7
+ }
8
+ declare const SvgWaterfallCascadeBlue64: React.ForwardRefExoticComponent<Props & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgWaterfallCascadeBlue64;
@@ -0,0 +1,18 @@
1
+ import React, { forwardRef } from 'react';
2
+ const SIZE = 64;
3
+ const SvgWaterfallCascadeBlue64 = forwardRef(function SvgWaterfallCascadeBlue64(props, ref) {
4
+ const { className, style = {}, scale, base, 'data-testid': testId } = props;
5
+ const scaledSize = base || SIZE * Math.ceil(scale || 1);
6
+ const svgStyle = Object.assign({ minWidth: `${scaledSize}px`, minHeight: `${scaledSize}px` }, style);
7
+ return (React.createElement("svg", { viewBox: '0 0 64 64', fill: 'none', className: className, style: svgStyle, ref: ref, "data-testid": testId },
8
+ React.createElement("g", { clipPath: 'url(#a)' },
9
+ React.createElement("path", { opacity: 0.15, d: 'M48.293 32H15.707v8.69h32.586V32ZM33.086 9.19H.5v8.69h32.586V9.19ZM63.5 54.81H30.914v8.69H63.5v-8.69Z', fill: '#183A9E' }),
10
+ React.createElement("path", { d: 'M48.793 41.19H15.207V22.81h33.586v18.38Zm-32.586-1h31.586V23.81H16.207v16.38ZM33.586 18.38H0V0h33.586v18.38ZM1 17.38h31.586V1H1v16.38ZM64 64H30.414V45.62H64V64Zm-32.586-1H63V46.62H31.414V63Z', fill: '#204ECF' }),
11
+ React.createElement("path", { d: 'M15.524 32.5h-7.92V18.979h1V31.5h6.92v1ZM30.549 55.311h-7.738v-14.07h1v13.07h6.738v1Z', fill: '#204ECF' })),
12
+ React.createElement("defs", null,
13
+ React.createElement("clipPath", { id: 'a' },
14
+ React.createElement("path", { fill: '#fff', d: 'M0 0h64v64H0z' })))));
15
+ });
16
+ SvgWaterfallCascadeBlue64.displayName = 'SvgWaterfallCascadeBlue64';
17
+ export default SvgWaterfallCascadeBlue64;
18
+ //# sourceMappingURL=WaterfallCascadeBlue64.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WaterfallCascadeBlue64.js","sourceRoot":"","sources":["../../src/Pictogram/WaterfallCascadeBlue64.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,UAAU,EAAO,MAAM,OAAO,CAAA;AAG9C,MAAM,IAAI,GAAG,EAAE,CAAA;AAOf,MAAM,yBAAyB,GAAG,UAAU,CAAC,SAAS,yBAAyB,CAC7E,KAAY,EACZ,GAAuB;IAEvB,MAAM,EAAE,SAAS,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,aAAa,EAAE,MAAM,EAAE,GAAG,KAAK,CAAA;IAC3E,MAAM,UAAU,GAAG,IAAI,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,CAAC,CAAA;IAEvD,MAAM,QAAQ,mBACZ,QAAQ,EAAE,GAAG,UAAU,IAAI,EAC3B,SAAS,EAAE,GAAG,UAAU,IAAI,IACzB,KAAK,CACT,CAAA;IAED,OAAO,CACL,6BACE,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,QAAQ,EACf,GAAG,EAAE,GAAG,iBACK,MAAM;QAEnB,2BAAG,QAAQ,EAAC,SAAS;YACnB,8BACE,OAAO,EAAE,IAAI,EACb,CAAC,EAAC,uGAAuG,EACzG,IAAI,EAAC,SAAS,GACd;YACF,8BACE,CAAC,EAAC,gMAAgM,EAClM,IAAI,EAAC,SAAS,GACd;YACF,8BACE,CAAC,EAAC,uFAAuF,EACzF,IAAI,EAAC,SAAS,GACd,CACA;QACJ;YACE,kCAAU,EAAE,EAAC,GAAG;gBACd,8BAAM,IAAI,EAAC,MAAM,EAAC,CAAC,EAAC,eAAe,GAAG,CAC7B,CACN,CACH,CACP,CAAA;AACH,CAAC,CAAC,CAAA;AAEF,yBAAyB,CAAC,WAAW,GAAG,2BAA2B,CAAA;AACnE,eAAe,yBAAyB,CAAA"}
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { StandardProps } from '@toptal/picasso-shared';
3
+ declare type ScaleType = 1 | 2;
4
+ export interface Props extends StandardProps {
5
+ scale?: ScaleType;
6
+ base?: number;
7
+ }
8
+ declare const SvgWaterfallCascadeWhite64: React.ForwardRefExoticComponent<Props & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgWaterfallCascadeWhite64;
@@ -0,0 +1,18 @@
1
+ import React, { forwardRef } from 'react';
2
+ const SIZE = 64;
3
+ const SvgWaterfallCascadeWhite64 = forwardRef(function SvgWaterfallCascadeWhite64(props, ref) {
4
+ const { className, style = {}, scale, base, 'data-testid': testId } = props;
5
+ const scaledSize = base || SIZE * Math.ceil(scale || 1);
6
+ const svgStyle = Object.assign({ minWidth: `${scaledSize}px`, minHeight: `${scaledSize}px` }, style);
7
+ return (React.createElement("svg", { viewBox: '0 0 64 64', fill: 'none', className: className, style: svgStyle, ref: ref, "data-testid": testId },
8
+ React.createElement("g", { clipPath: 'url(#a)' },
9
+ React.createElement("path", { opacity: 0.3, d: 'M48.293 32H15.707v8.69h32.586V32ZM33.086 9.19H.5v8.69h32.586V9.19ZM63.5 54.81H30.914v8.69H63.5v-8.69Z', fill: '#231F20' }),
10
+ React.createElement("path", { d: 'M48.793 41.19H15.207V22.81h33.586v18.38Zm-32.586-1h31.586V23.81H16.207v16.38ZM33.586 18.38H0V0h33.586v18.38ZM1 17.38h31.586V1H1v16.38ZM64 64H30.414V45.62H64V64Zm-32.586-1H63V46.62H31.414V63Z', fill: '#fff' }),
11
+ React.createElement("path", { d: 'M15.524 32.5h-7.92V18.979h1V31.5h6.92v1ZM30.549 55.311h-7.738v-14.07h1v13.07h6.738v1Z', fill: '#fff' })),
12
+ React.createElement("defs", null,
13
+ React.createElement("clipPath", { id: 'a' },
14
+ React.createElement("path", { fill: '#fff', d: 'M0 0h64v64H0z' })))));
15
+ });
16
+ SvgWaterfallCascadeWhite64.displayName = 'SvgWaterfallCascadeWhite64';
17
+ export default SvgWaterfallCascadeWhite64;
18
+ //# sourceMappingURL=WaterfallCascadeWhite64.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WaterfallCascadeWhite64.js","sourceRoot":"","sources":["../../src/Pictogram/WaterfallCascadeWhite64.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,UAAU,EAAO,MAAM,OAAO,CAAA;AAG9C,MAAM,IAAI,GAAG,EAAE,CAAA;AAOf,MAAM,0BAA0B,GAAG,UAAU,CAC3C,SAAS,0BAA0B,CAAC,KAAY,EAAE,GAAuB;IACvE,MAAM,EAAE,SAAS,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,aAAa,EAAE,MAAM,EAAE,GAAG,KAAK,CAAA;IAC3E,MAAM,UAAU,GAAG,IAAI,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,CAAC,CAAA;IAEvD,MAAM,QAAQ,mBACZ,QAAQ,EAAE,GAAG,UAAU,IAAI,EAC3B,SAAS,EAAE,GAAG,UAAU,IAAI,IACzB,KAAK,CACT,CAAA;IAED,OAAO,CACL,6BACE,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,QAAQ,EACf,GAAG,EAAE,GAAG,iBACK,MAAM;QAEnB,2BAAG,QAAQ,EAAC,SAAS;YACnB,8BACE,OAAO,EAAE,GAAG,EACZ,CAAC,EAAC,uGAAuG,EACzG,IAAI,EAAC,SAAS,GACd;YACF,8BACE,CAAC,EAAC,gMAAgM,EAClM,IAAI,EAAC,MAAM,GACX;YACF,8BACE,CAAC,EAAC,uFAAuF,EACzF,IAAI,EAAC,MAAM,GACX,CACA;QACJ;YACE,kCAAU,EAAE,EAAC,GAAG;gBACd,8BAAM,IAAI,EAAC,MAAM,EAAC,CAAC,EAAC,eAAe,GAAG,CAC7B,CACN,CACH,CACP,CAAA;AACH,CAAC,CACF,CAAA;AAED,0BAA0B,CAAC,WAAW,GAAG,4BAA4B,CAAA;AACrE,eAAe,0BAA0B,CAAA"}
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { StandardProps } from '@toptal/picasso-shared';
3
+ declare type ScaleType = 1 | 2;
4
+ export interface Props extends StandardProps {
5
+ scale?: ScaleType;
6
+ base?: number;
7
+ }
8
+ declare const SvgWifiInternetWirelessBlue64: React.ForwardRefExoticComponent<Props & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgWifiInternetWirelessBlue64;
@@ -0,0 +1,19 @@
1
+ import React, { forwardRef } from 'react';
2
+ const SIZE = 64;
3
+ const SvgWifiInternetWirelessBlue64 = forwardRef(function SvgWifiInternetWirelessBlue64(props, ref) {
4
+ const { className, style = {}, scale, base, 'data-testid': testId } = props;
5
+ const scaledSize = base || SIZE * Math.ceil(scale || 1);
6
+ const svgStyle = Object.assign({ minWidth: `${scaledSize}px`, minHeight: `${scaledSize}px` }, style);
7
+ return (React.createElement("svg", { viewBox: '0 0 64 64', fill: 'none', className: className, style: svgStyle, ref: ref, "data-testid": testId },
8
+ React.createElement("g", { clipPath: 'url(#a)' },
9
+ React.createElement("path", { opacity: 0.15, d: 'M32 .5v34.746a5.893 5.893 0 0 1 0 11.785V63.5a31.5 31.5 0 1 0 0-63Z', fill: '#183A9E' }),
10
+ React.createElement("path", { d: 'M32 47.528a6.392 6.392 0 1 1 4.52-10.91A6.39 6.39 0 0 1 32 47.528Zm0-11.78a5.39 5.39 0 1 0 .009 10.781A5.39 5.39 0 0 0 32 35.75ZM52.572 29.414l-.257-.43a23.676 23.676 0 0 0-40.63 0l-.257.43-.858-.514.257-.429a24.675 24.675 0 0 1 42.346 0l.257.429-.858.514Z', fill: '#204ECF' }),
11
+ React.createElement("path", { d: 'm17.733 34.978-.857-.514.257-.429a17.327 17.327 0 0 1 29.734 0l.257.429-.857.514-.257-.429a16.328 16.328 0 0 0-28.02 0l-.257.43Z', fill: '#204ECF' }),
12
+ React.createElement("path", { d: 'M32 64a32 32 0 1 1 32-32 32.036 32.036 0 0 1-32 32Zm0-63a31 31 0 1 0 31 31A31.035 31.035 0 0 0 32 1Z', fill: '#204ECF' })),
13
+ React.createElement("defs", null,
14
+ React.createElement("clipPath", { id: 'a' },
15
+ React.createElement("path", { fill: '#fff', d: 'M0 0h64v64H0z' })))));
16
+ });
17
+ SvgWifiInternetWirelessBlue64.displayName = 'SvgWifiInternetWirelessBlue64';
18
+ export default SvgWifiInternetWirelessBlue64;
19
+ //# sourceMappingURL=WifiInternetWirelessBlue64.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WifiInternetWirelessBlue64.js","sourceRoot":"","sources":["../../src/Pictogram/WifiInternetWirelessBlue64.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,UAAU,EAAO,MAAM,OAAO,CAAA;AAG9C,MAAM,IAAI,GAAG,EAAE,CAAA;AAOf,MAAM,6BAA6B,GAAG,UAAU,CAC9C,SAAS,6BAA6B,CACpC,KAAY,EACZ,GAAuB;IAEvB,MAAM,EAAE,SAAS,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,aAAa,EAAE,MAAM,EAAE,GAAG,KAAK,CAAA;IAC3E,MAAM,UAAU,GAAG,IAAI,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,CAAC,CAAA;IAEvD,MAAM,QAAQ,mBACZ,QAAQ,EAAE,GAAG,UAAU,IAAI,EAC3B,SAAS,EAAE,GAAG,UAAU,IAAI,IACzB,KAAK,CACT,CAAA;IAED,OAAO,CACL,6BACE,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,QAAQ,EACf,GAAG,EAAE,GAAG,iBACK,MAAM;QAEnB,2BAAG,QAAQ,EAAC,SAAS;YACnB,8BACE,OAAO,EAAE,IAAI,EACb,CAAC,EAAC,qEAAqE,EACvE,IAAI,EAAC,SAAS,GACd;YACF,8BACE,CAAC,EAAC,kQAAkQ,EACpQ,IAAI,EAAC,SAAS,GACd;YACF,8BACE,CAAC,EAAC,kIAAkI,EACpI,IAAI,EAAC,SAAS,GACd;YACF,8BACE,CAAC,EAAC,sGAAsG,EACxG,IAAI,EAAC,SAAS,GACd,CACA;QACJ;YACE,kCAAU,EAAE,EAAC,GAAG;gBACd,8BAAM,IAAI,EAAC,MAAM,EAAC,CAAC,EAAC,eAAe,GAAG,CAC7B,CACN,CACH,CACP,CAAA;AACH,CAAC,CACF,CAAA;AAED,6BAA6B,CAAC,WAAW,GAAG,+BAA+B,CAAA;AAC3E,eAAe,6BAA6B,CAAA"}
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { StandardProps } from '@toptal/picasso-shared';
3
+ declare type ScaleType = 1 | 2;
4
+ export interface Props extends StandardProps {
5
+ scale?: ScaleType;
6
+ base?: number;
7
+ }
8
+ declare const SvgWifiInternetWirelessWhite64: React.ForwardRefExoticComponent<Props & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgWifiInternetWirelessWhite64;
@@ -0,0 +1,19 @@
1
+ import React, { forwardRef } from 'react';
2
+ const SIZE = 64;
3
+ const SvgWifiInternetWirelessWhite64 = forwardRef(function SvgWifiInternetWirelessWhite64(props, ref) {
4
+ const { className, style = {}, scale, base, 'data-testid': testId } = props;
5
+ const scaledSize = base || SIZE * Math.ceil(scale || 1);
6
+ const svgStyle = Object.assign({ minWidth: `${scaledSize}px`, minHeight: `${scaledSize}px` }, style);
7
+ return (React.createElement("svg", { viewBox: '0 0 64 64', fill: 'none', className: className, style: svgStyle, ref: ref, "data-testid": testId },
8
+ React.createElement("g", { clipPath: 'url(#a)' },
9
+ React.createElement("path", { opacity: 0.3, d: 'M32 .5v34.746a5.893 5.893 0 0 1 0 11.785V63.5a31.5 31.5 0 1 0 0-63Z', fill: '#231F20' }),
10
+ React.createElement("path", { d: 'M32 47.528a6.392 6.392 0 1 1 4.52-10.91A6.39 6.39 0 0 1 32 47.528Zm0-11.78a5.39 5.39 0 1 0 .009 10.781A5.39 5.39 0 0 0 32 35.75ZM52.572 29.414l-.257-.43a23.676 23.676 0 0 0-40.63 0l-.257.43-.858-.514.257-.429a24.675 24.675 0 0 1 42.346 0l.257.429-.858.514Z', fill: '#fff' }),
11
+ React.createElement("path", { d: 'm17.733 34.978-.857-.514.257-.429a17.327 17.327 0 0 1 29.734 0l.257.429-.857.514-.257-.429a16.328 16.328 0 0 0-28.02 0l-.257.43Z', fill: '#fff' }),
12
+ React.createElement("path", { d: 'M32 64a32 32 0 1 1 32-32 32.036 32.036 0 0 1-32 32Zm0-63a31 31 0 1 0 31 31A31.035 31.035 0 0 0 32 1Z', fill: '#fff' })),
13
+ React.createElement("defs", null,
14
+ React.createElement("clipPath", { id: 'a' },
15
+ React.createElement("path", { fill: '#fff', d: 'M0 0h64v64H0z' })))));
16
+ });
17
+ SvgWifiInternetWirelessWhite64.displayName = 'SvgWifiInternetWirelessWhite64';
18
+ export default SvgWifiInternetWirelessWhite64;
19
+ //# sourceMappingURL=WifiInternetWirelessWhite64.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WifiInternetWirelessWhite64.js","sourceRoot":"","sources":["../../src/Pictogram/WifiInternetWirelessWhite64.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,UAAU,EAAO,MAAM,OAAO,CAAA;AAG9C,MAAM,IAAI,GAAG,EAAE,CAAA;AAOf,MAAM,8BAA8B,GAAG,UAAU,CAC/C,SAAS,8BAA8B,CACrC,KAAY,EACZ,GAAuB;IAEvB,MAAM,EAAE,SAAS,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,aAAa,EAAE,MAAM,EAAE,GAAG,KAAK,CAAA;IAC3E,MAAM,UAAU,GAAG,IAAI,IAAI,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,CAAC,CAAA;IAEvD,MAAM,QAAQ,mBACZ,QAAQ,EAAE,GAAG,UAAU,IAAI,EAC3B,SAAS,EAAE,GAAG,UAAU,IAAI,IACzB,KAAK,CACT,CAAA;IAED,OAAO,CACL,6BACE,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE,QAAQ,EACf,GAAG,EAAE,GAAG,iBACK,MAAM;QAEnB,2BAAG,QAAQ,EAAC,SAAS;YACnB,8BACE,OAAO,EAAE,GAAG,EACZ,CAAC,EAAC,qEAAqE,EACvE,IAAI,EAAC,SAAS,GACd;YACF,8BACE,CAAC,EAAC,kQAAkQ,EACpQ,IAAI,EAAC,MAAM,GACX;YACF,8BACE,CAAC,EAAC,kIAAkI,EACpI,IAAI,EAAC,MAAM,GACX;YACF,8BACE,CAAC,EAAC,sGAAsG,EACxG,IAAI,EAAC,MAAM,GACX,CACA;QACJ;YACE,kCAAU,EAAE,EAAC,GAAG;gBACd,8BAAM,IAAI,EAAC,MAAM,EAAC,CAAC,EAAC,eAAe,GAAG,CAC7B,CACN,CACH,CACP,CAAA;AACH,CAAC,CACF,CAAA;AAED,8BAA8B,CAAC,WAAW,GAAG,gCAAgC,CAAA;AAC7E,eAAe,8BAA8B,CAAA"}
@@ -0,0 +1,4 @@
1
+ export { default as WaterfallCascadeBlue64 } from './WaterfallCascadeBlue64';
2
+ export { default as WaterfallCascadeWhite64 } from './WaterfallCascadeWhite64';
3
+ export { default as WifiInternetWirelessBlue64 } from './WifiInternetWirelessBlue64';
4
+ export { default as WifiInternetWirelessWhite64 } from './WifiInternetWirelessWhite64';
@@ -0,0 +1,5 @@
1
+ export { default as WaterfallCascadeBlue64 } from './WaterfallCascadeBlue64';
2
+ export { default as WaterfallCascadeWhite64 } from './WaterfallCascadeWhite64';
3
+ export { default as WifiInternetWirelessBlue64 } from './WifiInternetWirelessBlue64';
4
+ export { default as WifiInternetWirelessWhite64 } from './WifiInternetWirelessWhite64';
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Pictogram/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,sBAAsB,EAAE,MAAM,0BAA0B,CAAA;AAC5E,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,2BAA2B,CAAA;AAC9E,OAAO,EAAE,OAAO,IAAI,0BAA0B,EAAE,MAAM,8BAA8B,CAAA;AACpF,OAAO,EAAE,OAAO,IAAI,2BAA2B,EAAE,MAAM,+BAA+B,CAAA"}
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # @toptal/picasso-pictograms
2
+
3
+ [![Picasso NPM package](https://img.shields.io/npm/v/@toptal/picasso-pictograms?color=green&logo=toptal)](https://www.npmjs.com/package/@toptal/picasso-pictograms)
4
+
5
+ This package contains pictograms.
6
+
7
+ ## Setup
8
+
9
+ - `yarn add @toptal/picasso-pictograms`
10
+
11
+ ## Documentation
12
+
13
+ Documentation and demos are available at [picasso.toptal.net](https://picasso.toptal.net/).
14
+
15
+ ---
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './Pictogram';
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export * from './Pictogram';
2
+ //# sourceMappingURL=index.js.map
package/index.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA"}
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "@toptal/picasso-pictograms",
3
+ "version": "0.2.0",
4
+ "description": "Pictogram components of Picasso",
5
+ "author": "Toptal",
6
+ "license": "MIT",
7
+ "main": "index.js",
8
+ "module": "index.js",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/toptal/picasso.git"
12
+ },
13
+ "publishConfig": {
14
+ "access": "public",
15
+ "directory": "dist-package"
16
+ },
17
+ "scripts": {
18
+ "build:package": "cross-env NODE_ENV=production node ../../bin/build.js --tsConfig=./tsconfig.build.json",
19
+ "prepublishOnly": "if [ -d dist-package ]; then cp ./package.json ./dist-package/package.json; fi"
20
+ },
21
+ "bugs": {
22
+ "url": "https://github.com/toptal/picasso/issues"
23
+ },
24
+ "homepage": "https://github.com/toptal/picasso/tree/master/packages/picasso-pictograms#readme",
25
+ "peerDependencies": {
26
+ "typescript": "~4.7.0",
27
+ "@toptal/picasso-shared": "^11.0.0",
28
+ "react": ">=16.12.0 < 19.0.0"
29
+ },
30
+ "devDependencies": {
31
+ "@toptal/picasso": "31.6.0",
32
+ "storybook-readme": "^5.0.9",
33
+ "@babel/types": "^7.20.7"
34
+ }
35
+ }