simple.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. "use strict";
  2. "use client";
  3. var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
  4. Object.defineProperty(exports, "__esModule", {
  5. value: true
  6. });
  7. exports.default = void 0;
  8. var _react = _interopRequireWildcard(require("react"));
  9. var React = _react;
  10. var _fastColor = require("@ant-design/fast-color");
  11. var _internal = require("../theme/internal");
  12. var _locale = require("../locale");
  13. const Simple = () => {
  14. const [, token] = (0, _internal.useToken)();
  15. const [locale] = (0, _locale.useLocale)('Empty');
  16. const {
  17. colorFill,
  18. colorFillTertiary,
  19. colorFillQuaternary,
  20. colorBgContainer
  21. } = token;
  22. const {
  23. borderColor,
  24. shadowColor,
  25. contentColor
  26. } = (0, _react.useMemo)(() => ({
  27. borderColor: new _fastColor.FastColor(colorFill).onBackground(colorBgContainer).toHexString(),
  28. shadowColor: new _fastColor.FastColor(colorFillTertiary).onBackground(colorBgContainer).toHexString(),
  29. contentColor: new _fastColor.FastColor(colorFillQuaternary).onBackground(colorBgContainer).toHexString()
  30. }), [colorFill, colorFillTertiary, colorFillQuaternary, colorBgContainer]);
  31. return /*#__PURE__*/React.createElement("svg", {
  32. width: "64",
  33. height: "41",
  34. viewBox: "0 0 64 41",
  35. xmlns: "http://www.w3.org/2000/svg"
  36. }, /*#__PURE__*/React.createElement("title", null, (locale === null || locale === void 0 ? void 0 : locale.description) || 'Empty'), /*#__PURE__*/React.createElement("g", {
  37. transform: "translate(0 1)",
  38. fill: "none",
  39. fillRule: "evenodd"
  40. }, /*#__PURE__*/React.createElement("ellipse", {
  41. fill: shadowColor,
  42. cx: "32",
  43. cy: "33",
  44. rx: "32",
  45. ry: "7"
  46. }), /*#__PURE__*/React.createElement("g", {
  47. fillRule: "nonzero",
  48. stroke: borderColor
  49. }, /*#__PURE__*/React.createElement("path", {
  50. d: "M55 12.76L44.854 1.258C44.367.474 43.656 0 42.907 0H21.093c-.749 0-1.46.474-1.947 1.257L9 12.761V22h46v-9.24z"
  51. }), /*#__PURE__*/React.createElement("path", {
  52. d: "M41.613 15.931c0-1.605.994-2.93 2.227-2.931H55v18.137C55 33.26 53.68 35 52.05 35h-40.1C10.32 35 9 33.259 9 31.137V13h11.16c1.233 0 2.227 1.323 2.227 2.928v.022c0 1.605 1.005 2.901 2.237 2.901h14.752c1.232 0 2.237-1.308 2.237-2.913v-.007z",
  53. fill: contentColor
  54. }))));
  55. };
  56. if (process.env.NODE_ENV !== 'production') {
  57. Simple.displayName = 'SimpleImage';
  58. }
  59. var _default = exports.default = Simple;