@wikicasa-dev/svg-icons 0.0.11 → 0.0.13

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 (84) hide show
  1. package/dist/AboutUsIcon.js +1 -1
  2. package/dist/AnalyticsIcon.js +1 -1
  3. package/dist/ArrowIcon.js +1 -1
  4. package/dist/BankIcon.js +48 -0
  5. package/dist/BarChartIcon.js +1 -1
  6. package/dist/BellIcon.js +1 -1
  7. package/dist/BulbIcon.js +1 -1
  8. package/dist/BusIcon.js +72 -0
  9. package/dist/CartIcon.js +54 -0
  10. package/dist/Charge.js +19 -0
  11. package/dist/CheckActiveIcon.js +1 -1
  12. package/dist/CheckInactiveIcon.js +1 -1
  13. package/dist/CloseIcon.js +1 -1
  14. package/dist/DashboardIcon.js +1 -1
  15. package/dist/{DefaultValues-k7iQWtC2.js → DefaultValues-DOBkctU1.js} +1 -0
  16. package/dist/DeleteIcon.js +1 -1
  17. package/dist/DrawIcon.js +1 -1
  18. package/dist/EditIcon.js +1 -1
  19. package/dist/FacebookIcon.js +1 -1
  20. package/dist/GearIcon.js +1 -1
  21. package/dist/GermanyFlagIcon.js +1 -1
  22. package/dist/HamburgerMenuIcon.js +39 -0
  23. package/dist/HeartIcon.js +1 -1
  24. package/dist/HidePswIcon.js +1 -1
  25. package/dist/HospitalIcon.js +37 -0
  26. package/dist/HouseIcon.js +1 -1
  27. package/dist/InstagramIcon.js +1 -1
  28. package/dist/ItalyFlagIcon.js +1 -1
  29. package/dist/LayersIcon.js +1 -1
  30. package/dist/LinkedinIcon.js +1 -1
  31. package/dist/LocationIcon.js +1 -1
  32. package/dist/LogoutIcon.js +1 -1
  33. package/dist/MailIcon.js +1 -1
  34. package/dist/MapIcon.js +1 -1
  35. package/dist/NewsIcon.js +1 -1
  36. package/dist/NotesIcon.js +1 -1
  37. package/dist/PharmacyIcon.js +19 -0
  38. package/dist/PhoneIcon.js +1 -1
  39. package/dist/PhotoIcon.js +1 -1
  40. package/dist/PinIcon.js +1 -1
  41. package/dist/PlanIcon.js +1 -1
  42. package/dist/PlusIcon.js +1 -1
  43. package/dist/PostIcon.js +33 -0
  44. package/dist/PrestigeIcon.js +1 -1
  45. package/dist/PrintIcon.js +1 -1
  46. package/dist/ProfileIcon.js +1 -1
  47. package/dist/QuotesIcon.js +1 -1
  48. package/dist/RequestIcon.js +1 -1
  49. package/dist/SchoolIcon.js +62 -0
  50. package/dist/SearchIcon.js +1 -1
  51. package/dist/ShareIcon.js +1 -1
  52. package/dist/SubwayIcon.js +36 -0
  53. package/dist/SuitcaseIcon.js +1 -1
  54. package/dist/TieIcon.js +1 -1
  55. package/dist/TourIcon.js +1 -1
  56. package/dist/TrainAltIcon.js +61 -0
  57. package/dist/TrainIcon.js +75 -0
  58. package/dist/UkFlagIcon.js +1 -1
  59. package/dist/ValuationIcon.js +1 -1
  60. package/dist/VideoIcon.js +1 -1
  61. package/dist/ViewPswIcon.js +1 -1
  62. package/dist/WalletIcon.js +1 -1
  63. package/dist/WarningIcon.js +1 -1
  64. package/dist/WarningIconRounded.js +1 -1
  65. package/dist/WikicasaIcon.js +1 -1
  66. package/dist/WkAppIcon.js +1 -1
  67. package/dist/WkFavIcon.js +1 -1
  68. package/dist/YoutubeIcon.js +1 -1
  69. package/dist/index.js +80 -56
  70. package/dist/lib/index.d.ts +13 -1
  71. package/dist/lib/svgIcons/HamburgerMenuIcon.d.ts +2 -0
  72. package/dist/lib/svgIcons/poi/BankIcon.d.ts +7 -0
  73. package/dist/lib/svgIcons/poi/BusIcon.d.ts +7 -0
  74. package/dist/lib/svgIcons/poi/CartIcon.d.ts +7 -0
  75. package/dist/lib/svgIcons/poi/Charge.d.ts +7 -0
  76. package/dist/lib/svgIcons/poi/HospitalIcon.d.ts +7 -0
  77. package/dist/lib/svgIcons/poi/PharmacyIcon.d.ts +7 -0
  78. package/dist/lib/svgIcons/poi/PostIcon.d.ts +7 -0
  79. package/dist/lib/svgIcons/poi/SchoolIcon.d.ts +7 -0
  80. package/dist/lib/svgIcons/poi/SubwayIcon.d.ts +7 -0
  81. package/dist/lib/svgIcons/poi/TrainAltIcon.d.ts +7 -0
  82. package/dist/lib/svgIcons/poi/TrainIcon.d.ts +7 -0
  83. package/dist/{svgIconFactory-vMvYZl5W.js → svgIconFactory-B4HDiwZr.js} +1 -1
  84. package/package.json +1 -1
@@ -0,0 +1,7 @@
1
+ import type { FunctionalSvgIconComponent } from '../../../types/FunctionalSvgIconComponent';
2
+ import type { SvgProps } from '@wikicasa-dev/types';
3
+ export declare const PharmacyIcon: FunctionalSvgIconComponent<Partial<SvgProps> & Partial<{
4
+ bgColor: string;
5
+ color: string;
6
+ borderColor: string;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import type { FunctionalSvgIconComponent } from '../../../types/FunctionalSvgIconComponent';
2
+ import type { SvgProps } from '@wikicasa-dev/types';
3
+ export declare const PostIcon: FunctionalSvgIconComponent<Partial<SvgProps> & Partial<{
4
+ bgColor: string;
5
+ color: string;
6
+ borderColor: string;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import type { FunctionalSvgIconComponent } from '../../../types/FunctionalSvgIconComponent';
2
+ import type { SvgProps } from '@wikicasa-dev/types';
3
+ export declare const SchoolIcon: FunctionalSvgIconComponent<Partial<SvgProps> & Partial<{
4
+ bgColor: string;
5
+ color: string;
6
+ borderColor: string;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import type { FunctionalSvgIconComponent } from '../../../types/FunctionalSvgIconComponent';
2
+ import type { SvgProps } from '@wikicasa-dev/types';
3
+ export declare const SubwayIcon: FunctionalSvgIconComponent<Partial<SvgProps> & Partial<{
4
+ bgColor: string;
5
+ color: string;
6
+ borderColor: string;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import type { FunctionalSvgIconComponent } from '../../../types/FunctionalSvgIconComponent';
2
+ import type { SvgProps } from '@wikicasa-dev/types';
3
+ export declare const TrainAltIcon: FunctionalSvgIconComponent<Partial<SvgProps> & Partial<{
4
+ bgColor: string;
5
+ color: string;
6
+ borderColor: string;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import type { FunctionalSvgIconComponent } from '../../../types/FunctionalSvgIconComponent';
2
+ import type { SvgProps } from '@wikicasa-dev/types';
3
+ export declare const TrainIcon: FunctionalSvgIconComponent<Partial<SvgProps> & Partial<{
4
+ bgColor: string;
5
+ color: string;
6
+ borderColor: string;
7
+ }>>;
@@ -1,5 +1,5 @@
1
1
  import { h as e } from "vue";
2
- import { g } from "./DefaultValues-k7iQWtC2.js";
2
+ import { g } from "./DefaultValues-DOBkctU1.js";
3
3
  const p = ({ props: o, svgNodeAttrs: r, childrenNodes: s }) => {
4
4
  const t = { ...g(), ...o };
5
5
  return e(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wikicasa-dev/svg-icons",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/lib/index.d.ts",