@kanmu/popcorn-icons 0.3.0 → 0.4.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.
Files changed (53) hide show
  1. package/dist/Arrow.js +1 -1
  2. package/dist/Arrow.mjs +1 -1
  3. package/dist/Back.js +1 -3
  4. package/dist/Back.mjs +1 -3
  5. package/dist/Caret.js +1 -1
  6. package/dist/Caret.mjs +1 -1
  7. package/dist/CaretReverse.js +1 -1
  8. package/dist/CaretReverse.mjs +1 -1
  9. package/dist/Charge.js +1 -1
  10. package/dist/Charge.mjs +1 -1
  11. package/dist/Check.js +1 -1
  12. package/dist/Check.mjs +1 -1
  13. package/dist/Delete.js +11 -8
  14. package/dist/Delete.mjs +13 -10
  15. package/dist/Finger.js +3 -3
  16. package/dist/Finger.mjs +3 -3
  17. package/dist/Gift.js +2 -2
  18. package/dist/Gift.mjs +2 -2
  19. package/dist/History.js +2 -2
  20. package/dist/History.mjs +2 -2
  21. package/dist/Limit.js +1 -1
  22. package/dist/Limit.mjs +1 -1
  23. package/dist/Net.js +1 -1
  24. package/dist/Net.mjs +1 -1
  25. package/dist/News.js +1 -1
  26. package/dist/News.mjs +1 -1
  27. package/dist/NewsActive.js +1 -1
  28. package/dist/NewsActive.mjs +1 -1
  29. package/dist/Plus.js +1 -1
  30. package/dist/Plus.mjs +1 -1
  31. package/dist/Pochitto.js +2 -2
  32. package/dist/Pochitto.mjs +2 -2
  33. package/dist/Question.js +1 -1
  34. package/dist/Question.mjs +1 -1
  35. package/dist/Service.js +1 -1
  36. package/dist/Service.mjs +1 -1
  37. package/dist/Setting.js +1 -1
  38. package/dist/Setting.mjs +1 -1
  39. package/dist/SettingActive.js +1 -1
  40. package/dist/SettingActive.mjs +1 -1
  41. package/dist/index.d.mts +0 -2
  42. package/dist/index.d.ts +0 -2
  43. package/dist/index.js +0 -6
  44. package/dist/index.mjs +46 -50
  45. package/package.json +1 -1
  46. package/dist/HistoryActive.d.mts +0 -12
  47. package/dist/HistoryActive.d.ts +0 -12
  48. package/dist/HistoryActive.js +0 -74
  49. package/dist/HistoryActive.mjs +0 -44
  50. package/dist/SearchActive.d.mts +0 -12
  51. package/dist/SearchActive.d.ts +0 -12
  52. package/dist/SearchActive.js +0 -67
  53. package/dist/SearchActive.mjs +0 -37
@@ -1,37 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- import Svg, { Path } from "react-native-svg";
3
- const SvgSearchActive = ({ size, width = size, height = size, ...props }) => /* @__PURE__ */ jsxs(
4
- Svg,
5
- {
6
- xmlns: "http://www.w3.org/2000/svg",
7
- width: 24,
8
- height: 24,
9
- fill: "none",
10
- viewBox: "0 0 24 24",
11
- ...props,
12
- children: [
13
- /* @__PURE__ */ jsx(
14
- Path,
15
- {
16
- fill: "currentColor",
17
- fillRule: "evenodd",
18
- d: "M10.286 5.036a5.25 5.25 0 1 0 0 10.5 5.25 5.25 0 0 0 0-10.5m-7.607 5.25a7.607 7.607 0 1 1 15.214 0 7.607 7.607 0 0 1-15.214 0",
19
- clipRule: "evenodd"
20
- }
21
- ),
22
- /* @__PURE__ */ jsx(
23
- Path,
24
- {
25
- fill: "currentColor",
26
- fillRule: "evenodd",
27
- d: "m19.095 20.762-4.928-4.929 1.666-1.666 4.929 4.928a1.178 1.178 0 1 1-1.667 1.667",
28
- clipRule: "evenodd"
29
- }
30
- )
31
- ]
32
- }
33
- );
34
- var SearchActive_default = SvgSearchActive;
35
- export {
36
- SearchActive_default as default
37
- };