@towsila/icons 1.4.0 → 1.4.1
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/package.json +1 -1
- package/src/icons/building.tsx +2 -2
- package/src/index.ts +3 -1
package/package.json
CHANGED
package/src/icons/building.tsx
CHANGED
|
@@ -4,9 +4,9 @@ interface Props extends SvgProps {
|
|
|
4
4
|
color?: string;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
-
export default function
|
|
7
|
+
export default function Building({ width = 19, height = 29, color = "#000000", ...props }: Props){
|
|
8
8
|
return (
|
|
9
|
-
<Svg width={width} height={height} viewBox="0 0
|
|
9
|
+
<Svg width={width} height={height} viewBox="0 0 19 29" fill="none" {...props}>
|
|
10
10
|
<Mask id="path-1-inside-1_2167_12404" fill="white">
|
|
11
11
|
<Path d="M5.18198 5.18175C5.76777 4.59597 5.76777 3.64622 5.18198 3.06043C4.59619 2.47465 3.64645 2.47465 3.06066 3.06043C2.47487 3.64622 2.47487 4.59597 3.06066 5.18175C3.64645 5.76754 4.59619 5.76754 5.18198 5.18175Z"/>
|
|
12
12
|
</Mask>
|
package/src/index.ts
CHANGED
|
@@ -26,4 +26,6 @@ export {IconType} from "./types/iconType";
|
|
|
26
26
|
export {default as Picker} from "./icons/picker";
|
|
27
27
|
export {default as Location} from "./icons/location";
|
|
28
28
|
export {default as Pin} from "./icons/pin";
|
|
29
|
-
export {default as Build} from "./icons/build";
|
|
29
|
+
export {default as Build} from "./icons/build";
|
|
30
|
+
export {default as Building} from "./icons/building";
|
|
31
|
+
export {default as Cache} from "./icons/cache";
|