@pingux/astro 2.16.1-alpha.0 → 2.16.1-alpha.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/package.json
CHANGED
@@ -1,37 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property");
|
4
|
-
var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault");
|
5
|
-
_Object$defineProperty(exports, "__esModule", {
|
6
|
-
value: true
|
7
|
-
});
|
8
|
-
exports["default"] = exports.Default = void 0;
|
9
|
-
var _react = _interopRequireDefault(require("react"));
|
10
|
-
var _index = require("../index");
|
11
|
-
var _colors = require("../styles/colors");
|
12
|
-
var _react2 = require("@emotion/react");
|
13
|
-
var _default = {
|
14
|
-
title: 'Recipes/Stats Circle'
|
15
|
-
};
|
16
|
-
exports["default"] = _default;
|
17
|
-
var sx = {
|
18
|
-
statsCircle: {
|
19
|
-
border: '3px solid',
|
20
|
-
borderColor: _colors.active,
|
21
|
-
borderRadius: '100%',
|
22
|
-
alignItems: 'center',
|
23
|
-
justifyContent: 'center'
|
24
|
-
}
|
25
|
-
};
|
26
|
-
var Default = function Default() {
|
27
|
-
return (0, _react2.jsx)(_index.Box, {
|
28
|
-
width: "110px",
|
29
|
-
height: "110px",
|
30
|
-
sx: sx.statsCircle
|
31
|
-
}, (0, _react2.jsx)(_index.Text, {
|
32
|
-
fontSize: 30
|
33
|
-
}, "63"), (0, _react2.jsx)(_index.Text, {
|
34
|
-
color: "text.secondary"
|
35
|
-
}, "Members"));
|
36
|
-
};
|
37
|
-
exports.Default = Default;
|
@@ -1,27 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { Box, Text } from '../index';
|
3
|
-
import { active } from '../styles/colors';
|
4
|
-
import { jsx as ___EmotionJSX } from "@emotion/react";
|
5
|
-
export default {
|
6
|
-
title: 'Recipes/Stats Circle'
|
7
|
-
};
|
8
|
-
var sx = {
|
9
|
-
statsCircle: {
|
10
|
-
border: '3px solid',
|
11
|
-
borderColor: active,
|
12
|
-
borderRadius: '100%',
|
13
|
-
alignItems: 'center',
|
14
|
-
justifyContent: 'center'
|
15
|
-
}
|
16
|
-
};
|
17
|
-
export var Default = function Default() {
|
18
|
-
return ___EmotionJSX(Box, {
|
19
|
-
width: "110px",
|
20
|
-
height: "110px",
|
21
|
-
sx: sx.statsCircle
|
22
|
-
}, ___EmotionJSX(Text, {
|
23
|
-
fontSize: 30
|
24
|
-
}, "63"), ___EmotionJSX(Text, {
|
25
|
-
color: "text.secondary"
|
26
|
-
}, "Members"));
|
27
|
-
};
|