Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add FolderLocation icon #361

Merged
merged 1 commit into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
>
<FolderLocation />
</Icon>
</template>

<script>
import FolderLocation from "../BIMDataLibraryIcons/FolderLocation.vue";
import makeIcon from "./iconFactory.js";

export default makeIcon("FolderLocation", FolderLocation);
</script>

<style scoped lang="scss" src="../_BIMDataIcon.scss"></style>
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export { default as BIMDataIconFailed } from "./BIMDataIconFailed.vue";
export { default as BIMDataIconFilterList } from "./BIMDataIconFilterList.vue";
export { default as BIMDataIconFitView } from "./BIMDataIconFitView.vue";
export { default as BIMDataIconFolder } from "./BIMDataIconFolder.vue";
export { default as BIMDataIconFolderLocation } from "./BIMDataIconFolderLocation.vue";
export { default as BIMDataIconFolderMove } from "./BIMDataIconFolderMove.vue";
export { default as BIMDataIconFolderOpen } from "./BIMDataIconFolderOpen.vue";
export { default as BIMDataIconFullscreen } from "./BIMDataIconFullscreen.vue";
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<template>
<g clip-path="url(#clip0_5183_924)">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M9.31993 13.0682C9.31993 14.4168 10.4107 15.5076 11.7593 15.5076C13.108 15.5076 14.1987 14.4168 14.1987 13.0682C14.1987 11.7196 13.108 10.6288 11.7593 10.6288C10.4107 10.6288 9.31993 11.7196 9.31993 13.0682ZM10.3654 13.0682C10.3654 12.298 10.9892 11.6743 11.7593 11.6743C12.5295 11.6743 13.1533 12.298 13.1533 13.0682C13.1533 13.8383 12.5295 14.4621 11.7593 14.4621C10.9892 14.4621 10.3654 13.8383 10.3654 13.0682Z"
/>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M2.55918 2.61365H9.4591L11.7593 4.83543H20.9591C22.2244 4.83543 23.2593 5.83504 23.2593 7.05683V18.1646C23.2593 19.3868 22.2244 20.3864 20.9591 20.3864H2.55918C1.29385 20.3864 0.259338 19.3868 0.259338 18.1646L0.270462 4.83543C0.270462 3.61326 1.29385 2.61365 2.55918 2.61365ZM12.1078 9.95274C13.561 10.113 14.7145 11.2665 14.8748 12.7197H15.5927V13.4167H14.8748C14.7145 14.8699 13.561 16.0233 12.1078 16.1837V16.9015H11.4108V16.1837C9.95766 16.0233 8.80418 14.8699 8.64387 13.4167H7.92599V12.7197H8.64387C8.80418 11.2665 9.95766 10.113 11.4108 9.95274V9.23486H12.1078V9.95274Z"
/>
</g>
</template>
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ import failed from "./Failed.vue";
import filterList from "./FilterList.vue";
import fitView from "./FitView.vue";
import folder from "./Folder.vue";
import folderLocation from "./FolderLocation.vue";
import folderMove from "./FolderMove.vue";
import folderOpen from "./FolderOpen.vue";
import fullscreen from "./Fullscreen.vue";
Expand Down Expand Up @@ -228,6 +229,7 @@ export default {
filterList,
fitView,
folder,
folderLocation,
folderMove,
folderOpen,
fullscreen,
Expand Down