@wikicasa-dev/svg-icons 0.1.7 → 0.1.9

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 (67) hide show
  1. package/dist/AirConditionerIcon.js +35 -0
  2. package/dist/AlarmIcon.js +35 -0
  3. package/dist/AttachedIcon.js +110 -0
  4. package/dist/AtticIcon.js +40 -0
  5. package/dist/CeilingIcon.js +51 -0
  6. package/dist/CellarIcon.js +32 -0
  7. package/dist/ClosetIcon.js +35 -0
  8. package/dist/DishwasherIcon.js +39 -0
  9. package/dist/ElectricGateIcon.js +54 -0
  10. package/dist/EntranceIcon.js +30 -0
  11. package/dist/FireplaceIcon.js +35 -0
  12. package/dist/FixturesIcon.js +40 -0
  13. package/dist/FridgeIcon.js +28 -0
  14. package/dist/FrontBuildingIcon.js +43 -0
  15. package/dist/FurnishedIcon.js +40 -0
  16. package/dist/HobIcon.js +36 -0
  17. package/dist/HotWaterIcon.js +64 -0
  18. package/dist/KitchenIcon.js +34 -0
  19. package/dist/LaundryIcon.js +43 -0
  20. package/dist/MezzanineIcon.js +33 -0
  21. package/dist/OpticFiberIcon.js +36 -0
  22. package/dist/PhotoAlbumIcon.js +168 -0
  23. package/dist/RoofIcon.js +32 -0
  24. package/dist/SatelliteSystemIcon.js +36 -0
  25. package/dist/SecurityDoorIcon.js +53 -0
  26. package/dist/TavernIcon.js +34 -0
  27. package/dist/TypeFloorIcon.js +43 -0
  28. package/dist/TypeRollerShutterIcon.js +35 -0
  29. package/dist/TypeTvIcon.js +35 -0
  30. package/dist/TypeViewIcon.js +34 -0
  31. package/dist/WashingMachineIcon.js +33 -0
  32. package/dist/WhirlpoolIcon.js +52 -0
  33. package/dist/index.js +210 -146
  34. package/dist/lib/index.d.ts +32 -0
  35. package/dist/lib/svgIcons/AirConditionerIcon.d.ts +7 -0
  36. package/dist/lib/svgIcons/AlarmIcon.d.ts +7 -0
  37. package/dist/lib/svgIcons/AttachedIcon.d.ts +7 -0
  38. package/dist/lib/svgIcons/AtticIcon.d.ts +7 -0
  39. package/dist/lib/svgIcons/CeilingIcon.d.ts +7 -0
  40. package/dist/lib/svgIcons/CellarIcon.d.ts +7 -0
  41. package/dist/lib/svgIcons/ClosetIcon.d.ts +7 -0
  42. package/dist/lib/svgIcons/DishwasherIcon.d.ts +7 -0
  43. package/dist/lib/svgIcons/ElectricGateIcon.d.ts +7 -0
  44. package/dist/lib/svgIcons/EntranceIcon.d.ts +7 -0
  45. package/dist/lib/svgIcons/FireplaceIcon.d.ts +7 -0
  46. package/dist/lib/svgIcons/FixturesIcon.d.ts +7 -0
  47. package/dist/lib/svgIcons/FridgeIcon.d.ts +7 -0
  48. package/dist/lib/svgIcons/FrontBuildingIcon.d.ts +7 -0
  49. package/dist/lib/svgIcons/FurnishedIcon.d.ts +7 -0
  50. package/dist/lib/svgIcons/HobIcon.d.ts +7 -0
  51. package/dist/lib/svgIcons/HotWaterIcon.d.ts +7 -0
  52. package/dist/lib/svgIcons/KitchenIcon.d.ts +7 -0
  53. package/dist/lib/svgIcons/LaundryIcon.d.ts +7 -0
  54. package/dist/lib/svgIcons/MezzanineIcon.d.ts +7 -0
  55. package/dist/lib/svgIcons/OpticFiberIcon.d.ts +7 -0
  56. package/dist/lib/svgIcons/PhotoAlbumIcon.d.ts +7 -0
  57. package/dist/lib/svgIcons/RoofIcon.d.ts +7 -0
  58. package/dist/lib/svgIcons/SatelliteSystemIcon.d.ts +7 -0
  59. package/dist/lib/svgIcons/SecurityDoorIcon.d.ts +7 -0
  60. package/dist/lib/svgIcons/TavernIcon.d.ts +7 -0
  61. package/dist/lib/svgIcons/TypeFloorIcon.d.ts +7 -0
  62. package/dist/lib/svgIcons/TypeRollerShutterIcon.d.ts +7 -0
  63. package/dist/lib/svgIcons/TypeTvIcon.d.ts +7 -0
  64. package/dist/lib/svgIcons/TypeViewIcon.d.ts +7 -0
  65. package/dist/lib/svgIcons/WashingMachineIcon.d.ts +7 -0
  66. package/dist/lib/svgIcons/WhirlpoolIcon.d.ts +7 -0
  67. package/package.json +1 -1
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const AirConditionerIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const AlarmIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const AttachedIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const AtticIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const CeilingIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const CellarIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const ClosetIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const DishwasherIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const ElectricGateIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const EntranceIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const FireplaceIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const FixturesIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const FridgeIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const FrontBuildingIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const FurnishedIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const HobIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const HotWaterIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const KitchenIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const LaundryIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const MezzanineIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const OpticFiberIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const PhotoAlbumIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const RoofIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const SatelliteSystemIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const SecurityDoorIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const TavernIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const TypeFloorIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const TypeRollerShutterIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const TypeTvIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const TypeViewIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const WashingMachineIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
@@ -0,0 +1,7 @@
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ import { SvgProps } from '@wikicasa-dev/types';
3
+
4
+ export declare const WhirlpoolIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
5
+ 'stroke-color': `#${string}`;
6
+ 'stroke-width': number;
7
+ }>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wikicasa-dev/svg-icons",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/lib/index.d.ts",