@wikicasa-dev/svg-icons 0.1.8 → 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 (57) 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/ElectricGateIcon.js +54 -0
  9. package/dist/EntranceIcon.js +30 -0
  10. package/dist/FireplaceIcon.js +35 -0
  11. package/dist/FixturesIcon.js +40 -0
  12. package/dist/FrontBuildingIcon.js +43 -0
  13. package/dist/FurnishedIcon.js +40 -0
  14. package/dist/HotWaterIcon.js +64 -0
  15. package/dist/KitchenIcon.js +34 -0
  16. package/dist/LaundryIcon.js +43 -0
  17. package/dist/MezzanineIcon.js +33 -0
  18. package/dist/OpticFiberIcon.js +36 -0
  19. package/dist/RoofIcon.js +32 -0
  20. package/dist/SatelliteSystemIcon.js +36 -0
  21. package/dist/SecurityDoorIcon.js +53 -0
  22. package/dist/TavernIcon.js +34 -0
  23. package/dist/TypeFloorIcon.js +43 -0
  24. package/dist/TypeRollerShutterIcon.js +35 -0
  25. package/dist/TypeTvIcon.js +35 -0
  26. package/dist/TypeViewIcon.js +34 -0
  27. package/dist/WhirlpoolIcon.js +52 -0
  28. package/dist/index.js +220 -166
  29. package/dist/lib/index.d.ts +27 -0
  30. package/dist/lib/svgIcons/AirConditionerIcon.d.ts +7 -0
  31. package/dist/lib/svgIcons/AlarmIcon.d.ts +7 -0
  32. package/dist/lib/svgIcons/AttachedIcon.d.ts +7 -0
  33. package/dist/lib/svgIcons/AtticIcon.d.ts +7 -0
  34. package/dist/lib/svgIcons/CeilingIcon.d.ts +7 -0
  35. package/dist/lib/svgIcons/CellarIcon.d.ts +7 -0
  36. package/dist/lib/svgIcons/ClosetIcon.d.ts +7 -0
  37. package/dist/lib/svgIcons/ElectricGateIcon.d.ts +7 -0
  38. package/dist/lib/svgIcons/EntranceIcon.d.ts +7 -0
  39. package/dist/lib/svgIcons/FireplaceIcon.d.ts +7 -0
  40. package/dist/lib/svgIcons/FixturesIcon.d.ts +7 -0
  41. package/dist/lib/svgIcons/FrontBuildingIcon.d.ts +7 -0
  42. package/dist/lib/svgIcons/FurnishedIcon.d.ts +7 -0
  43. package/dist/lib/svgIcons/HotWaterIcon.d.ts +7 -0
  44. package/dist/lib/svgIcons/KitchenIcon.d.ts +7 -0
  45. package/dist/lib/svgIcons/LaundryIcon.d.ts +7 -0
  46. package/dist/lib/svgIcons/MezzanineIcon.d.ts +7 -0
  47. package/dist/lib/svgIcons/OpticFiberIcon.d.ts +7 -0
  48. package/dist/lib/svgIcons/RoofIcon.d.ts +7 -0
  49. package/dist/lib/svgIcons/SatelliteSystemIcon.d.ts +7 -0
  50. package/dist/lib/svgIcons/SecurityDoorIcon.d.ts +7 -0
  51. package/dist/lib/svgIcons/TavernIcon.d.ts +7 -0
  52. package/dist/lib/svgIcons/TypeFloorIcon.d.ts +7 -0
  53. package/dist/lib/svgIcons/TypeRollerShutterIcon.d.ts +7 -0
  54. package/dist/lib/svgIcons/TypeTvIcon.d.ts +7 -0
  55. package/dist/lib/svgIcons/TypeViewIcon.d.ts +7 -0
  56. package/dist/lib/svgIcons/WhirlpoolIcon.d.ts +7 -0
  57. 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 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 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 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.8",
3
+ "version": "0.1.9",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/lib/index.d.ts",