@codecademy/gamut-illustrations 0.30.0 → 0.31.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/dist/TinyBlocks.d.ts +3 -0
- package/dist/TinyBlocks.js +20 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export var TinyBlocks = function TinyBlocks(_ref) {
|
|
3
|
+
var ariaHidden = _ref['aria-hidden'],
|
|
4
|
+
className = _ref.className,
|
|
5
|
+
height = _ref.height,
|
|
6
|
+
width = _ref.width;
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
8
|
+
"aria-hidden": ariaHidden,
|
|
9
|
+
className: className,
|
|
10
|
+
height: height,
|
|
11
|
+
width: width,
|
|
12
|
+
viewBox: "0 0 26 26",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
15
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
fill: "#66C4FF",
|
|
17
|
+
stroke: "#10162F",
|
|
18
|
+
d: "M25 1h-8v8h8zM25 9h-8v8h8zM25 17h-8v8h8zM17 9H9v8h8zM17 17H9v8h8zM9 17H1v8h8z"
|
|
19
|
+
}));
|
|
20
|
+
};
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED