oolib 2.10.0 → 2.10.1
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/icons/IndexIcon.js +3 -3
- package/dist/themes/typo.js +1 -1
- package/package.json +1 -1
package/dist/icons/IndexIcon.js
CHANGED
|
@@ -6,8 +6,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
var react_1 = __importDefault(require("react"));
|
|
7
7
|
function index() {
|
|
8
8
|
return (react_1.default.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
|
|
9
|
-
react_1.default.createElement("path", { d: "M6 7H18", stroke: "black",
|
|
10
|
-
react_1.default.createElement("path", { d: "M6 12H18", stroke: "black",
|
|
11
|
-
react_1.default.createElement("path", { d: "M6 17L12 17", stroke: "black", "stroke-width": "2",
|
|
9
|
+
react_1.default.createElement("path", { d: "M6 7H18", stroke: "black", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
10
|
+
react_1.default.createElement("path", { d: "M6 12H18", stroke: "black", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
11
|
+
react_1.default.createElement("path", { d: "M6 17L12 17", stroke: "black", "stroke-width": "2", strokeLinecap: "round", strokeLinejoin: "round" })));
|
|
12
12
|
}
|
|
13
13
|
exports.default = index;
|
package/dist/themes/typo.js
CHANGED
|
@@ -251,7 +251,7 @@ var LABEL = (0, styled_components_1.css)(templateObject_18 || (templateObject_18
|
|
|
251
251
|
var color = _a.color, invert = _a.invert;
|
|
252
252
|
return (invert ? white : color);
|
|
253
253
|
}, sansSerif);
|
|
254
|
-
var BLOCKQUOTE = (0, styled_components_1.css)(templateObject_19 || (templateObject_19 = __makeTemplateObject(["\n padding: 2rem;\n border-left: 4px solid\n ", ";\n ", ";\n font-style: italic;\n color: ", ";\n"], ["\n padding: 2rem;\n border-left: 4px solid\n ", ";\n ", ";\n font-style: italic;\n color: ", ";\n"])), function (_a) {
|
|
254
|
+
var BLOCKQUOTE = (0, styled_components_1.css)(templateObject_19 || (templateObject_19 = __makeTemplateObject(["\n padding: 2rem;\n border-left: 4px solid\n ", ";\n ", ";\n font-style: italic;\n color: ", ";\n margin-inline-start: 25px;\n margin-inline-end: 25px;\n"], ["\n padding: 2rem;\n border-left: 4px solid\n ", ";\n ", ";\n font-style: italic;\n color: ", ";\n margin-inline-start: 25px;\n margin-inline-end: 25px;\n"])), function (_a) {
|
|
255
255
|
var invert = _a.invert, colors = _a.theme.colors;
|
|
256
256
|
return invert ? greyColor40 : colors === null || colors === void 0 ? void 0 : colors.primaryColor100;
|
|
257
257
|
}, SERIF_4_5, greyColor80);
|