Skip to content

Commit

Permalink
PATCH: add Home Icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Kurtil committed Aug 30, 2023
1 parent 237a62d commit 09fbee0
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<template>
<Icon
:fill="fill"
:fillColor="fillColor"
:color="color"
:class="classes"
:style="style"
>
<Home />
</Icon>
</template>

<script>
import Home from "../BIMDataLibraryIcons/Home.vue";
import makeIcon from "./iconFactory.js";
export default makeIcon("Home", Home);
</script>

<style scoped lang="scss" src="../_BIMDataIcon.scss"></style>
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export { default as BIMDataIconFullscreen } from "./BIMDataIconFullscreen.vue";
export { default as BIMDataIconGrid } from "./BIMDataIconGrid.vue";
export { default as BIMDataIconGroup } from "./BIMDataIconGroup.vue";
export { default as BIMDataIconHide } from "./BIMDataIconHide.vue";
export { default as BIMDataIconHome } from "./BIMDataIconHome.vue";
export { default as BIMDataIconIfc } from "./BIMDataIconIfc.vue";
export { default as BIMDataIconIfcFile } from "./BIMDataIconIfcFile.vue";
export { default as BIMDataIconImport } from "./BIMDataIconImport.vue";
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<template>
<g>
<path
d="M3.13636 21V11.1042L1.25455 12.5556L0 10.8667L3.13636 8.43889L5.22727 6.82917L11.5 2L23 10.8667L21.7455 12.5292L19.8636 11.1042V21H12.5455V14.6667H10.4545V21H3.13636Z"
/>
</g>
</template>
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ import fullscreen from "./Fullscreen.vue";
import grid from "./Grid.vue";
import group from "./Group.vue";
import hide from "./Hide.vue";
import home from "./Home.vue";
import ifc from "./Ifc.vue";
import ifcFile from "./IfcFile.vue";
import Import from "./Import.vue";
Expand Down Expand Up @@ -214,6 +215,7 @@ export default {
grid,
group,
hide,
home,
ifc,
ifcFile,
import: Import,
Expand Down

0 comments on commit 09fbee0

Please sign in to comment.