@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.
- package/dist/AirConditionerIcon.js +35 -0
- package/dist/AlarmIcon.js +35 -0
- package/dist/AttachedIcon.js +110 -0
- package/dist/AtticIcon.js +40 -0
- package/dist/CeilingIcon.js +51 -0
- package/dist/CellarIcon.js +32 -0
- package/dist/ClosetIcon.js +35 -0
- package/dist/DishwasherIcon.js +39 -0
- package/dist/ElectricGateIcon.js +54 -0
- package/dist/EntranceIcon.js +30 -0
- package/dist/FireplaceIcon.js +35 -0
- package/dist/FixturesIcon.js +40 -0
- package/dist/FridgeIcon.js +28 -0
- package/dist/FrontBuildingIcon.js +43 -0
- package/dist/FurnishedIcon.js +40 -0
- package/dist/HobIcon.js +36 -0
- package/dist/HotWaterIcon.js +64 -0
- package/dist/KitchenIcon.js +34 -0
- package/dist/LaundryIcon.js +43 -0
- package/dist/MezzanineIcon.js +33 -0
- package/dist/OpticFiberIcon.js +36 -0
- package/dist/PhotoAlbumIcon.js +168 -0
- package/dist/RoofIcon.js +32 -0
- package/dist/SatelliteSystemIcon.js +36 -0
- package/dist/SecurityDoorIcon.js +53 -0
- package/dist/TavernIcon.js +34 -0
- package/dist/TypeFloorIcon.js +43 -0
- package/dist/TypeRollerShutterIcon.js +35 -0
- package/dist/TypeTvIcon.js +35 -0
- package/dist/TypeViewIcon.js +34 -0
- package/dist/WashingMachineIcon.js +33 -0
- package/dist/WhirlpoolIcon.js +52 -0
- package/dist/index.js +210 -146
- package/dist/lib/index.d.ts +32 -0
- package/dist/lib/svgIcons/AirConditionerIcon.d.ts +7 -0
- package/dist/lib/svgIcons/AlarmIcon.d.ts +7 -0
- package/dist/lib/svgIcons/AttachedIcon.d.ts +7 -0
- package/dist/lib/svgIcons/AtticIcon.d.ts +7 -0
- package/dist/lib/svgIcons/CeilingIcon.d.ts +7 -0
- package/dist/lib/svgIcons/CellarIcon.d.ts +7 -0
- package/dist/lib/svgIcons/ClosetIcon.d.ts +7 -0
- package/dist/lib/svgIcons/DishwasherIcon.d.ts +7 -0
- package/dist/lib/svgIcons/ElectricGateIcon.d.ts +7 -0
- package/dist/lib/svgIcons/EntranceIcon.d.ts +7 -0
- package/dist/lib/svgIcons/FireplaceIcon.d.ts +7 -0
- package/dist/lib/svgIcons/FixturesIcon.d.ts +7 -0
- package/dist/lib/svgIcons/FridgeIcon.d.ts +7 -0
- package/dist/lib/svgIcons/FrontBuildingIcon.d.ts +7 -0
- package/dist/lib/svgIcons/FurnishedIcon.d.ts +7 -0
- package/dist/lib/svgIcons/HobIcon.d.ts +7 -0
- package/dist/lib/svgIcons/HotWaterIcon.d.ts +7 -0
- package/dist/lib/svgIcons/KitchenIcon.d.ts +7 -0
- package/dist/lib/svgIcons/LaundryIcon.d.ts +7 -0
- package/dist/lib/svgIcons/MezzanineIcon.d.ts +7 -0
- package/dist/lib/svgIcons/OpticFiberIcon.d.ts +7 -0
- package/dist/lib/svgIcons/PhotoAlbumIcon.d.ts +7 -0
- package/dist/lib/svgIcons/RoofIcon.d.ts +7 -0
- package/dist/lib/svgIcons/SatelliteSystemIcon.d.ts +7 -0
- package/dist/lib/svgIcons/SecurityDoorIcon.d.ts +7 -0
- package/dist/lib/svgIcons/TavernIcon.d.ts +7 -0
- package/dist/lib/svgIcons/TypeFloorIcon.d.ts +7 -0
- package/dist/lib/svgIcons/TypeRollerShutterIcon.d.ts +7 -0
- package/dist/lib/svgIcons/TypeTvIcon.d.ts +7 -0
- package/dist/lib/svgIcons/TypeViewIcon.d.ts +7 -0
- package/dist/lib/svgIcons/WashingMachineIcon.d.ts +7 -0
- package/dist/lib/svgIcons/WhirlpoolIcon.d.ts +7 -0
- 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
|
+
}>>;
|